File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -99,10 +99,10 @@ const (
99
99
UID IdentifierType = "uid"
100
100
)
101
101
102
- // GenAgentIdenfiers generates an AgentIdentifiers based on the input string, the
102
+ // GenAgentIdentifiers generates an AgentIdentifiers based on the input string, the
103
103
// input string should be a comma-seprated list with each item in the format
104
104
// of <IdentifierType>=<address>
105
- func GenAgentIdenfiers (addrs string ) AgentIdentifiers {
105
+ func GenAgentIdentifiers (addrs string ) AgentIdentifiers {
106
106
var agentIDs AgentIdentifiers
107
107
entries := strings .Split (addrs , "," )
108
108
for _ , entry := range entries {
Original file line number Diff line number Diff line change @@ -485,7 +485,7 @@ func getAgentIdentifiers(stream agent.AgentService_ConnectServer) (pkgagent.Agen
485
485
return agentIdentifiers , nil
486
486
}
487
487
488
- agentIdentifiers = pkgagent .GenAgentIdenfiers (agentIDs [0 ])
488
+ agentIdentifiers = pkgagent .GenAgentIdentifiers (agentIDs [0 ])
489
489
return agentIdentifiers , nil
490
490
}
491
491
You can’t perform that action at this time.
0 commit comments