Skip to content

Commit

Permalink
Test with the new conn_pool
Browse files Browse the repository at this point in the history
  • Loading branch information
fantix committed Oct 22, 2024
1 parent f4f522d commit bbde8fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion edb/server/connpool/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
# During the transition period we allow for the pool to be swapped out. The
# current default is to use the old pool, however this will be switched to use
# the new pool once we've fully implemented all required features.
if os.environ.get("EDGEDB_USE_NEW_CONNPOOL", "") == "0":
if os.environ.get("EDGEDB_USE_NEW_CONNPOOL", "") != "0":
Pool = Pool2Impl
Pool2 = Pool1Impl
else:
Expand Down

0 comments on commit bbde8fa

Please sign in to comment.