Skip to content

Commit e1aa341

Browse files
Tables failures (Azure#19189)
1 parent 3113eaf commit e1aa341

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

sdk/tables/azure-data-tables/tests/test_table_service_properties.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def test_table_service_properties(self, tables_storage_account_name, tables_prim
4141
# Assert
4242
assert resp is None
4343
if self.is_live:
44-
time.sleep(30)
44+
time.sleep(45)
4545
self._assert_properties_default(tsc.get_service_properties())
4646

4747
# --Test cases per feature ---------------------------------------
@@ -57,7 +57,7 @@ def test_set_logging(self, tables_storage_account_name, tables_primary_storage_a
5757

5858
# Assert
5959
if self.is_live:
60-
time.sleep(30)
60+
time.sleep(45)
6161
received_props = tsc.get_service_properties()
6262
self._assert_logging_equal(received_props['analytics_logging'], logging)
6363

@@ -73,7 +73,7 @@ def test_set_hour_metrics(self, tables_storage_account_name, tables_primary_stor
7373

7474
# Assert
7575
if self.is_live:
76-
time.sleep(30)
76+
time.sleep(45)
7777
received_props = tsc.get_service_properties()
7878
self._assert_metrics_equal(received_props['hour_metrics'], hour_metrics)
7979

@@ -90,7 +90,7 @@ def test_set_minute_metrics(self, tables_storage_account_name, tables_primary_st
9090

9191
# Assert
9292
if self.is_live:
93-
time.sleep(30)
93+
time.sleep(45)
9494
received_props = tsc.get_service_properties()
9595
self._assert_metrics_equal(received_props['minute_metrics'], minute_metrics)
9696

@@ -118,7 +118,7 @@ def test_set_cors(self, tables_storage_account_name, tables_primary_storage_acco
118118

119119
# Assert
120120
if self.is_live:
121-
time.sleep(30)
121+
time.sleep(45)
122122
received_props = tsc.get_service_properties()
123123
self._assert_cors_equal(received_props['cors'], cors)
124124

sdk/tables/azure-data-tables/tests/test_table_service_properties_async.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ async def test_table_service_properties_async(self, tables_storage_account_name,
3737
# Assert
3838
assert resp is None
3939
if self.is_live:
40-
time.sleep(30)
40+
time.sleep(45)
4141
self._assert_properties_default(await tsc.get_service_properties())
4242

4343
# --Test cases per feature ---------------------------------------
@@ -53,7 +53,7 @@ async def test_set_logging_async(self, tables_storage_account_name, tables_prima
5353

5454
# Assert
5555
if self.is_live:
56-
time.sleep(30)
56+
time.sleep(45)
5757
received_props = await tsc.get_service_properties()
5858
self._assert_logging_equal(received_props['analytics_logging'], logging)
5959

@@ -69,7 +69,7 @@ async def test_set_hour_metrics_async(self, tables_storage_account_name, tables_
6969

7070
# Assert
7171
if self.is_live:
72-
time.sleep(30)
72+
time.sleep(45)
7373
received_props = await tsc.get_service_properties()
7474
self._assert_metrics_equal(received_props['hour_metrics'], hour_metrics)
7575

@@ -86,7 +86,7 @@ async def test_set_minute_metrics_async(self, tables_storage_account_name, table
8686

8787
# Assert
8888
if self.is_live:
89-
time.sleep(30)
89+
time.sleep(45)
9090
received_props = await tsc.get_service_properties()
9191
self._assert_metrics_equal(received_props['minute_metrics'], minute_metrics)
9292

@@ -114,7 +114,7 @@ async def test_set_cors_async(self, tables_storage_account_name, tables_primary_
114114

115115
# Assert
116116
if self.is_live:
117-
time.sleep(30)
117+
time.sleep(45)
118118
received_props = await tsc.get_service_properties()
119119
self._assert_cors_equal(received_props['cors'], cors)
120120

0 commit comments

Comments
 (0)