Compare commits

..

1 Commits

Author SHA1 Message Date
Nadav Har'El
f23ba66351 Fix for Unused local variable
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
2025-12-15 16:27:38 +02:00
2 changed files with 4 additions and 1 deletions

View File

@@ -182,7 +182,6 @@ def cleanup_all():
sys.stdout.flush()
shutil.copyfileobj(f, sys.stdout.buffer)
f.close()
scylla_set = set()
print(summary)
# We run the cleanup_all() function on exit for any reason - successful finish

View File

@@ -144,6 +144,10 @@ def test_mv_quoted_column_names_build(cql, test_keyspace):
# which we don't). This means, unfortunately, that a failure
# of this test is slow - it needs to wait for a timeout.
wait_for_view_built(cql, mv)
# start_time = time.time()
# while time.time() < start_time + 30:
# if list(cql.execute(f'SELECT * from {mv}')) == [(2, 1)]:
# break
assert list(cql.execute(f'SELECT * from {mv}')) == [(2, 1)]
# The previous test (test_mv_empty_string_partition_key) verifies that a