diff --git a/app/api/services/web_contents.py b/app/api/services/web_contents.py index 77b5a95..001e6c0 100644 --- a/app/api/services/web_contents.py +++ b/app/api/services/web_contents.py @@ -137,14 +137,14 @@ class WebContentsService(BaseService): return jsonify({"message": "Internal Server Error"}), 500 @staticmethod - def get_site_imges_data(provision_uid, primary_serve, primary_server): + def get_site_imges_data(provision_uid, primary_server, provision_port): # membersSubResult = MembersProducts.get_member_product_by_subscription_uid(provision_uid) # # if not membersSubResult: # return None - destination_server = "http://" + str(primary_server) + ":" + str(primary_server) + destination_server = "http://" + str(primary_server) + ":" + str(provision_port) api_url = destination_server + "/api" try: logger.info(f"api_url: {str(api_url)}")