Skip to content

Commit 7b74c62

Browse files
chore(deps): update all dependencies (#666)
* chore(deps): update all dependencies * revert * increase timeouts * increase timeouts Co-authored-by: Anthonios Partheniou <[email protected]>
1 parent 7f1706c commit 7b74c62

File tree

16 files changed

+36
-36
lines changed

16 files changed

+36
-36
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pytest==7.1.2
1+
pytest==7.1.3
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pytest==7.1.2
1+
pytest==7.1.3
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pytest==7.1.2
1+
pytest==7.1.3

packages/google-cloud-bigtable/samples/instanceadmin/instanceadmin.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def run_instance_operations(project_id, instance_id, cluster_id):
7474
# Create instance with given options
7575
operation = instance.create(clusters=[cluster])
7676
# Ensure the operation completes.
77-
operation.result(timeout=240)
77+
operation.result(timeout=480)
7878
print("\nCreated instance: {}".format(instance_id))
7979
# [END bigtable_create_prod_instance]
8080

@@ -159,7 +159,7 @@ def add_cluster(project_id, instance_id, cluster_id):
159159
else:
160160
operation = cluster.create()
161161
# Ensure the operation completes.
162-
operation.result(timeout=240)
162+
operation.result(timeout=480)
163163
print("\nCluster created: {}".format(cluster_id))
164164
# [END bigtable_create_cluster]
165165

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pytest==7.1.2
1+
pytest==7.1.3

packages/google-cloud-bigtable/samples/metricscaler/metricscaler.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ def scale_bigtable(bigtable_instance, bigtable_cluster, scale_up):
123123
new_node_count = min(current_node_count + size_change_step, max_node_count)
124124
cluster.serve_nodes = new_node_count
125125
operation = cluster.update()
126-
response = operation.result(240)
126+
response = operation.result(480)
127127
logger.info(
128128
"Scaled up from {} to {} nodes for {}.".format(
129129
current_node_count, new_node_count, response.name
@@ -134,7 +134,7 @@ def scale_bigtable(bigtable_instance, bigtable_cluster, scale_up):
134134
new_node_count = max(current_node_count - size_change_step, min_node_count)
135135
cluster.serve_nodes = new_node_count
136136
operation = cluster.update()
137-
response = operation.result(240)
137+
response = operation.result(480)
138138
logger.info(
139139
"Scaled down from {} to {} nodes for {}.".format(
140140
current_node_count, new_node_count, response.name

packages/google-cloud-bigtable/samples/metricscaler/metricscaler_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ def dev_instance():
108108
cluster_id, location_id=BIGTABLE_ZONE, default_storage_type=storage_type
109109
)
110110
operation = instance.create(clusters=[cluster])
111-
response = operation.result(240)
111+
response = operation.result(480)
112112
print(f"Successfully created {response.name}")
113113

114114
# Eventual consistency check
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
pytest==7.1.2
1+
pytest==7.1.3
22
mock==4.0.3
33
google-cloud-testutils
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pytest==7.1.2
1+
pytest==7.1.3
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pytest==7.1.2
1+
pytest==7.1.3

0 commit comments

Comments
 (0)