Commit 6f9c4fc6 authored by Dimitrios Gogos's avatar Dimitrios Gogos
Browse files

fix: add params for app instantiation

parent bb126b01
Loading
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -138,7 +138,10 @@ def deploy_service_function():
    try:
        body = connexion.request.get_json()

        response = edgecloud_adapter.deploy_app(body)
        response = edgecloud_adapter.deploy_app(
            body.get("appId"),
            body.get("appZones")
        )

        return _safe_http_json_response(response)