Skip to content

Commit 62c4122

Browse files
ref: maybe there's something in these hills?
1 parent 985b914 commit 62c4122

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/sentry/testutils/hybrid_cloud.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,11 +82,11 @@ def connection_transaction_depth_above_watermark(
8282
connection = transaction.get_connection(using or "default")
8383
return max(self.get_transaction_depth(connection) - self.state.get(connection.alias, 0), 0)
8484

85-
def connections_above_watermark(self) -> set[str]:
86-
result = set()
85+
def connections_above_watermark(self) -> dict[str, object]:
86+
result = {}
8787
for connection in connections.all():
8888
if self.connection_transaction_depth_above_watermark(connection=connection):
89-
result.add(connection.alias)
89+
result[connection.alias] = connection.queries_log
9090
return result
9191

9292

0 commit comments

Comments
 (0)