Skip to content

Commit

Permalink
Merge pull request #41 from panalcloud/fix_log_failure
Browse files Browse the repository at this point in the history
Fixed `P3Client>>logResult:` failure when the properties dictionary does not contain the key `#query_started`.
  • Loading branch information
svenvc authored Jun 5, 2023
2 parents 658ad63 + 1e4f167 commit 3b350af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion P3/P3Client.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -528,7 +528,7 @@ P3Client >> logResult: result [
result: result;
duration: duration;
emit.
properties removeKey: #query_started
properties removeKey: #query_started ifAbsent: [ ]
]

{ #category : #'private - logging' }
Expand Down

0 comments on commit 3b350af

Please sign in to comment.