Skip to content

Commit

Permalink
fixing linter remarks.
Browse files Browse the repository at this point in the history
Signed-off-by: Software Developer <[email protected]>
  • Loading branch information
dsuhinin committed Oct 2, 2024
1 parent 8bf550a commit 367c705
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/tracking/store/sql/params.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ func verifyBatchParamsInserts(
"with value=%q for run ID=%q. "+
"Attempted logging new value %q",
existingParam.Key,
existingParam.Value,
existingParam.Value.String,
runID,
currentValue,
),
Expand Down Expand Up @@ -80,7 +80,7 @@ func (s TrackingSQLStore) logParamsWithTransaction(
"with value=%q for run ID=%q. "+
"Attempted logging new value %q",
param.Key,
oldValue,
*oldValue,
runID,
param.Value,
),
Expand Down

0 comments on commit 367c705

Please sign in to comment.