Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
leszko committed Jan 9, 2025
1 parent 2e70f87 commit 4cc29e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion discovery/discovery.go
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ func (o *orchestratorPool) GetOrchestrators(ctx context.Context, numOrchestrator
getOrchInfo := func(ctx context.Context, od common.OrchestratorDescriptor, infoCh chan common.OrchestratorDescriptor, errCh chan error) {
start := time.Now()
info, err := serverGetOrchInfo(ctx, o.bcast, od.LocalInfo.URL, caps.ToNetCapabilities())
clog.V(common.DEBUG).Infof(ctx, "Received GetOrchInfo RPC Reponse from uri=%v, latency=%v", od.LocalInfo.URL, time.Since(start))
clog.V(common.DEBUG).Infof(ctx, "Received GetOrchInfo RPC Response from uri=%v, latency=%v", od.LocalInfo.URL, time.Since(start))
if err == nil && !isBlacklisted(info) && isCompatible(info) {
od.RemoteInfo = info
infoCh <- od
Expand Down

0 comments on commit 4cc29e3

Please sign in to comment.