diff --git a/perxis/extensions/extension_setup.py b/perxis/extensions/extension_setup.py
index a93e6fc64147bb8dd2c97309e8dec736c3ca6d3f..82d6837011042aeed5f34ac268ad8f7a35b2835d 100644
--- a/perxis/extensions/extension_setup.py
+++ b/perxis/extensions/extension_setup.py
@@ -375,7 +375,10 @@ class ExtensionSetup:
             try:
                 self.environments_service.Migrate(environments_pb2.MigrateRequest(
                     space_id=space_id,
-                    env_id=env_id
+                    env_id=env_id,
+                    options=environments_pb2.MigrateOptions(
+                        wait=True
+                    )
                 ))
 
                 is_ok = True
diff --git a/setup.py b/setup.py
index 0b35fb6bc6739aaa4dddd2641ed0bc68f7db69f3..52880160178b01a8f450c9eb3b84b852eabc36c3 100644
--- a/setup.py
+++ b/setup.py
@@ -14,7 +14,7 @@ def load_requirements():
 
 setup(
     name='perxis',
-    version='0.0.18',
+    version='0.0.19',
     description='Perxis python client',
     long_description=long_description,
     long_description_content_type='text/markdown',