We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5080f02 commit c566167Copy full SHA for c566167
nym-node-status-api/nym-node-status-api/src/db/queries/nym_nodes.rs
@@ -96,7 +96,6 @@ pub(crate) async fn update_nym_nodes(
96
.map(|records| records.into_iter().map(|record| record.node_id as NodeId))?
97
.collect::<HashSet<NodeId>>();
98
99
- // active nodes will get updated on insert
100
let inserted = node_records.len();
101
for record in node_records {
102
// https://www.sqlite.org/lang_upsert.html
@@ -148,7 +147,7 @@ pub(crate) async fn update_nym_nodes(
148
147
}
149
150
if !nodes_to_delete.is_empty() {
151
- tracing::debug!("DELETE {} obsolete nodes", nodes_to_delete.len());
+ tracing::debug!("DELETING {} obsolete nodes", nodes_to_delete.len());
152
153
154
// clean up leftover nodes, which weren't inserted/updated
0 commit comments