Skip to content

Commit

Permalink
fixed issues from rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
miampf committed Jan 29, 2024
1 parent 94787c2 commit 96c1108
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cli/internal/cmd/apply.go
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,7 @@ func (a *applyCmd) validateInputs(cmd *cobra.Command, configFetcher attestationc
// We don't run "hard" verification of skip-phases flags and state file here,
// a user may still end up skipping phases that could result in errors later on.
// However, we perform basic steps, like ensuring init phase is not skipped if
a.log.Debugf("Validating state file")
a.log.Debug("Validating state file")
preCreateValidateErr := stateFile.Validate(state.PreCreate, conf.GetAttestationConfig().GetVariant())
preInitValidateErr := stateFile.Validate(state.PreInit, conf.GetAttestationConfig().GetVariant())
postInitValidateErr := stateFile.Validate(state.PostInit, conf.GetAttestationConfig().GetVariant())
Expand Down
2 changes: 1 addition & 1 deletion cli/internal/cmd/recover.go
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ func (r *recoverCmd) recover(
return err
}

r.log.Debugf("Got provider %s", conf.GetProvider())
r.log.Debug(fmt.Sprintf("Got provider %s", conf.GetProvider()))
if conf.GetProvider() == cloudprovider.Azure {
interval = 20 * time.Second // Azure LB takes a while to remove unhealthy instances
}
Expand Down

0 comments on commit 96c1108

Please sign in to comment.