Skip to content

Commit

Permalink
Fix set invalid instance uid error throw
Browse files Browse the repository at this point in the history
  • Loading branch information
Sairam-Arpavur-Natarajan committed Dec 20, 2023
1 parent ca0e1e6 commit 3a7838d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/internal/receivedprocessor.go
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ func (r *receivedProcessor) rcvAgentIdentification(agentId *protobufs.AgentIdent

err := r.sender.SetInstanceUid(agentId.NewInstanceUid)
if err != nil {
r.logger.Errorf("Error while setting instance uid: %v, err")
r.logger.Errorf("error while setting instance uid: %v", err)

Check warning on line 220 in client/internal/receivedprocessor.go

View check run for this annotation

Codecov / codecov/patch

client/internal/receivedprocessor.go#L220

Added line #L220 was not covered by tests
return err
}

Expand Down

0 comments on commit 3a7838d

Please sign in to comment.