Skip to content

Commit

Permalink
make sure this works right
Browse files Browse the repository at this point in the history
  • Loading branch information
juliannguyen4 committed Oct 24, 2024
1 parent a41d711 commit 3234a03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/new_tests/test_free_threading.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ def test_unsafe(as_connection):
config = {"hosts": [("127.0.0.1", 3000)]}

def read_bin():
nonlocal barrier
barrier.wait()
client = aerospike.client(config)
_, _, bins = client.get(key)
Expand All @@ -31,5 +32,4 @@ def read_bin():
for worker in workers:
worker.join()

# Do something about the results
assert bin_value_sum == THREAD_COUNT * BIN_VALUE

0 comments on commit 3234a03

Please sign in to comment.