We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5659ad9 commit bded09fCopy full SHA for bded09f
workflow/controller/config.go
@@ -19,11 +19,11 @@ import (
19
)
20
21
func (wfc *WorkflowController) updateConfig(ctx context.Context) error {
22
- bytes, err := yaml.Marshal(wfc.Config)
+ _, err := yaml.Marshal(wfc.Config)
23
if err != nil {
24
return err
25
}
26
- log.Info("Configuration:\n" + string(bytes))
+ log.Info("Configuration updated")
27
wfc.artifactRepositories = artifactrepositories.New(wfc.kubeclientset, wfc.namespace, &wfc.Config.ArtifactRepository)
28
wfc.offloadNodeStatusRepo = persist.ExplosiveOffloadNodeStatusRepo
29
wfc.wfArchive = persist.NullWorkflowArchive
0 commit comments