cli: simplify log message on init call (#3105)

This commit is contained in:
Malte Poll 2024-05-15 16:17:12 +02:00 committed by GitHub
parent 36a827056f
commit 7eedd0e3de
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ func (a *Applier) Init(
}
// Perform the RPC
a.log.Debug("Initialization call", "endpoint", doer.endpoint, "kmsURI", doer.req.KmsUri, "storageURI", doer.req.StorageUri)
a.log.Debug("Initialization call", "endpoint", doer.endpoint)
a.spinner.Start("Connecting ", false)
retrier := retry.NewIntervalRetrier(doer, 30*time.Second, serviceIsUnavailable)
if err := retrier.Do(ctx); err != nil {