antithesis: Drop experimental_indexes parameter from commect()

The `experimental_indexes` parameter got dropped from Python bindings so
stop using it to make Antithesis stress-composer drivers to run.
This commit is contained in:
Pekka Enberg
2025-09-05 13:17:39 +03:00
parent f0fa0aa161
commit 3341f4657e
12 changed files with 12 additions and 12 deletions

View File

@@ -15,7 +15,7 @@ cur_init = con_init.cursor()
# Connect to the main database
try:
con = turso.connect("stress_composer.db", experimental_indexes=True)
con = turso.connect("stress_composer.db")
except Exception as e:
print(f"Failed to open stress_composer.db. Exiting... {e}")
exit(0)