From 4cc29e3126c0b789a9ce1a3a3bd5424f92a58cf6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C5=82=20Leszko?= Date: Thu, 9 Jan 2025 09:04:41 +0100 Subject: [PATCH] Fix typo --- discovery/discovery.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discovery/discovery.go b/discovery/discovery.go index ce617f368..9fe2631a6 100644 --- a/discovery/discovery.go +++ b/discovery/discovery.go @@ -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