|
@@ -160,7 +160,7 @@ def check_app_url(customer_app_name):
|
|
|
ip = "localhost"
|
|
|
try:
|
|
|
ip_result = shell_execute.execute_command_output_all("cat /data/apps/stackhub/docker/w9appmanage/public_ip")
|
|
|
- ip = ip_result["result"]
|
|
|
+ ip = ip_result["result"].rstrip('\n')
|
|
|
except Exception:
|
|
|
ip = "127.0.0.1"
|
|
|
http_port = list(read_env(path, "APP_HTTP_PORT").values())[0]
|