From bbde8fa4670d109ddade40f84a68f6caa20f7ecd Mon Sep 17 00:00:00 2001 From: Fantix King Date: Tue, 22 Oct 2024 17:55:30 -0400 Subject: [PATCH] Test with the new conn_pool --- edb/server/connpool/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/edb/server/connpool/__init__.py b/edb/server/connpool/__init__.py index 6ce2fa62bd7a..598866db1c04 100644 --- a/edb/server/connpool/__init__.py +++ b/edb/server/connpool/__init__.py @@ -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: