Skip to content

Commit 2813d29

Browse files
authored
Merge pull request #33379 from aljoscha/push-mxvnnpwllowx
adapter: downgrade logging on CONNECTION sorting
2 parents 40d9cc8 + 1538a15 commit 2813d29

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/adapter/src/catalog/apply.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1950,7 +1950,7 @@ fn sort_updates_inner(updates: Vec<StateUpdate>) -> Vec<StateUpdate> {
19501950
let existing_connections: BTreeSet<_> = connections.iter().map(|item| item.0.id).collect();
19511951

19521952
// Initialize our set of topological sort.
1953-
tracing::info!(?connections, "sorting connections");
1953+
tracing::debug!(?connections, "sorting connections");
19541954
for (connection, ts, diff) in connections.drain(..) {
19551955
let statement = mz_sql::parse::parse(&connection.create_sql)
19561956
.expect("valid CONNECTION create_sql")
@@ -1967,7 +1967,7 @@ fn sort_updates_inner(updates: Vec<StateUpdate>) -> Vec<StateUpdate> {
19671967
// Be defensive and ensure we're not clobbering any items.
19681968
assert_none!(topo.insert((connection, ts, diff), dependencies));
19691969
}
1970-
tracing::info!(?topo, ?existing_connections, "built topological sort");
1970+
tracing::debug!(?topo, ?existing_connections, "built topological sort");
19711971

19721972
// Do a topological sort, pushing back into the provided Vec.
19731973
while !topo.is_empty() {

0 commit comments

Comments
 (0)