File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -185,7 +185,8 @@ bool IncomingSlotMigration::Join(long attempt) {
185
185
while (true ) {
186
186
const absl::Time now = absl::Now ();
187
187
const absl::Duration passed = now - start;
188
- VLOG (1 ) << " Checking whether to continue with join " << passed << " vs " << timeout;
188
+ VLOG_EVERY_N (1 , 10000 ) << " Checking whether to continue with join " << passed << " vs "
189
+ << timeout;
189
190
if (passed >= timeout) {
190
191
LOG (WARNING) << " Can't join migration in time for " << source_id_;
191
192
ReportError (GenericError (" Can't join migration in time" ));
Original file line number Diff line number Diff line change @@ -1433,6 +1433,7 @@ async def test_migration_with_key_ttl(df_factory):
1433
1433
assert await nodes [1 ].client .execute_command ("stick k_sticky" ) == 0
1434
1434
1435
1435
1436
+ @pytest .mark .skip ("Flaky test" )
1436
1437
@dfly_args ({"proactor_threads" : 4 , "cluster_mode" : "yes" })
1437
1438
async def test_network_disconnect_during_migration (df_factory ):
1438
1439
instances = [
You can’t perform that action at this time.
0 commit comments