Commit 40aaf4ba authored by Adriana Fernández-Fernández's avatar Adriana Fernández-Fernández
Browse files

Fix expected status code in i2edge response for app deployment

parent e62ef805
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1054,7 +1054,7 @@ class EdgeApplicationManager(EdgeCloudManagementInterface):
            )
            payload = i2edge_schemas.AppDeploy(app_deploy_data=app_deploy_data)
            url = "{}/application_instance".format(self.base_url)
            response = i2edge_post(url, payload)
            response = i2edge_post(url, payload, 202)
            if response.status_code == 202:
                response_json = response.json()
                content = {