Skip to content

Commit 77e858d

Browse files
committed
chore: disable telemetry
1 parent 86bfbe9 commit 77e858d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/integration/container/test_aurora_failover.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,8 @@ def props(self):
7878
features = TestEnvironment.get_current().get_features()
7979
if TestEnvironmentFeatures.TELEMETRY_TRACES_ENABLED in features \
8080
or TestEnvironmentFeatures.TELEMETRY_METRICS_ENABLED in features:
81-
WrapperProperties.ENABLE_TELEMETRY.set(p, True)
82-
WrapperProperties.TELEMETRY_SUBMIT_TOPLEVEL.set(p, True)
81+
WrapperProperties.ENABLE_TELEMETRY.set(p, False)
82+
WrapperProperties.TELEMETRY_SUBMIT_TOPLEVEL.set(p, False)
8383
if TestEnvironmentFeatures.TELEMETRY_TRACES_ENABLED in features:
8484
WrapperProperties.TELEMETRY_TRACES_BACKEND.set(p, "XRAY")
8585
if TestEnvironmentFeatures.TELEMETRY_METRICS_ENABLED in features:
@@ -261,7 +261,7 @@ def test_writer_fail_within_transaction_set_autocommit_false(
261261

262262
# cursor_2 can not be used anymore since it's invalid
263263

264-
logger.info("assert that we are connected to the new writer after failover happens")
264+
logger.info("assert that we are connected to the new writer after failover happens2")
265265
with conn.cursor() as cursor_3:
266266
cursor_3.execute("SELECT count(*) from test3_2")
267267
result = cursor_3.fetchone()

0 commit comments

Comments
 (0)