Skip to content

Commit

Permalink
fix(driver-adapters): rename one missed span attribute
Browse files Browse the repository at this point in the history
Fixup #5049 and rename one
missed span attribute. The tests on the client were updated to expect
the new name but the attribute was only updated in one of two places.
  • Loading branch information
aqrln committed Dec 16, 2024
1 parent 5b4fe75 commit 7e140a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion query-engine/driver-adapters/src/queryable.rs
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ impl JsBaseQueryable {
let serialization_span = info_span!(
"prisma:engine:js:query:args",
"otel.kind" = "client",
"db.query.params.count" = params.len(),
"prisma.db_query.params.count" = params.len(),
user_facing = true,
);
let query = self.build_query(sql, params).instrument(serialization_span).await?;
Expand Down

0 comments on commit 7e140a4

Please sign in to comment.