@@ -79,7 +79,7 @@ def _modify_app_profile_helper(
7979 )
8080
8181 operation = app_profile .update (ignore_warnings = ignore_warnings )
82- operation .result (timeout = 30 )
82+ operation .result (timeout = 60 )
8383
8484 alt_profile = instance .app_profile (app_profile_id )
8585 alt_profile .reload ()
@@ -155,7 +155,7 @@ def test_instance_create_prod(
155155
156156 operation = instance .create (clusters = [cluster ])
157157 instances_to_delete .append (instance )
158- operation .result (timeout = 30 ) # Ensure the operation completes.
158+ operation .result (timeout = 60 ) # Ensure the operation completes.
159159 assert instance .type_ is None
160160
161161 # Create a new instance instance and make sure it is the same.
@@ -186,7 +186,7 @@ def test_instance_create_development(
186186
187187 operation = instance .create (clusters = [cluster ])
188188 instances_to_delete .append (instance )
189- operation .result (timeout = 30 ) # Ensure the operation completes.
189+ operation .result (timeout = 60 ) # Ensure the operation completes.
190190
191191 # Create a new instance instance and make sure it is the same.
192192 instance_alt = admin_client .instance (alt_instance_id )
@@ -496,7 +496,7 @@ def test_instance_update_display_name_and_labels(
496496 admin_instance_populated .labels = new_labels
497497
498498 operation = admin_instance_populated .update ()
499- operation .result (timeout = 30 ) # ensure the operation completes.
499+ operation .result (timeout = 60 ) # ensure the operation completes.
500500
501501 # Create a new instance instance and reload it.
502502 instance_alt = admin_client .instance (admin_instance_id , labels = {})
@@ -513,7 +513,7 @@ def test_instance_update_display_name_and_labels(
513513 admin_instance_populated .display_name = old_display_name
514514 admin_instance_populated .labels = instance_labels
515515 operation = admin_instance_populated .update ()
516- operation .result (timeout = 30 ) # ensure the operation completes.
516+ operation .result (timeout = 60 ) # ensure the operation completes.
517517
518518
519519def test_instance_update_w_type (
@@ -536,12 +536,12 @@ def test_instance_update_w_type(
536536
537537 operation = instance .create (clusters = [cluster ])
538538 instances_to_delete .append (instance )
539- operation .result (timeout = 30 ) # Ensure the operation completes.
539+ operation .result (timeout = 60 ) # Ensure the operation completes.
540540
541541 instance .display_name = None
542542 instance .type_ = enums .Instance .Type .PRODUCTION
543543 operation = instance .update ()
544- operation .result (timeout = 30 ) # ensure the operation completes.
544+ operation .result (timeout = 60 ) # ensure the operation completes.
545545
546546 # Create a new instance instance and reload it.
547547 instance_alt = admin_client .instance (alt_instance_id )
@@ -573,7 +573,7 @@ def test_cluster_create(
573573 default_storage_type = (enums .StorageType .SSD ),
574574 )
575575 operation = cluster_2 .create ()
576- operation .result (timeout = 30 ) # Ensure the operation completes.
576+ operation .result (timeout = 60 ) # Ensure the operation completes.
577577
578578 # Create a new object instance, reload and make sure it is the same.
579579 alt_cluster = admin_instance_populated .cluster (alt_cluster_id )
@@ -603,7 +603,7 @@ def test_cluster_update(
603603 admin_cluster .serve_nodes = new_serve_nodes
604604
605605 operation = admin_cluster .update ()
606- operation .result (timeout = 30 ) # Ensure the operation completes.
606+ operation .result (timeout = 60 ) # Ensure the operation completes.
607607
608608 # Create a new cluster instance and reload it.
609609 alt_cluster = admin_instance_populated .cluster (admin_cluster_id )
@@ -613,4 +613,4 @@ def test_cluster_update(
613613 # Put the cluster back the way it was for the other test cases.
614614 admin_cluster .serve_nodes = serve_nodes
615615 operation = admin_cluster .update ()
616- operation .result (timeout = 30 ) # Ensure the operation completes.
616+ operation .result (timeout = 60 ) # Ensure the operation completes.
0 commit comments