Skip to content

Commit

Permalink
Fix set invalid instance UID error throw (#218)
Browse files Browse the repository at this point in the history
Fixing error throw logger when setting invalid instance UID provided by the server.
  • Loading branch information
Sairam Arpavur Natarajan authored Dec 20, 2023
1 parent ca0e1e6 commit cded8e3
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)
return err
}

Expand Down

0 comments on commit cded8e3

Please sign in to comment.