Skip to content

Commit 1705aa3

Browse files
committed
Fixed copy pasted data
1 parent ef1054a commit 1705aa3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/JaegerMongoDbCommandConvertor.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ private function serializeWriteConcern($writeConcern): string
9494

9595
$result = '{w: ' . $this->simpleScalarToJson($writeConcern->w);
9696
if (isset($writeConcern->j)) {
97-
$result .= ', j: ' . $this->simpleScalarToJson($writeConcern->wtimeout);
97+
$result .= ', j: ' . $this->simpleScalarToJson($writeConcern->j);
9898
}
9999

100100
if (isset($writeConcern->wtimeout)) {

0 commit comments

Comments
 (0)