We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 791965c commit f2758e5Copy full SHA for f2758e5
pipeline/git.go
@@ -123,7 +123,10 @@ func updateAllCurrentPipelines() {
123
sem <- 1
124
r, err := git.PlainOpen(pipe.Repo.LocalDest)
125
if err != nil {
126
- gaia.Cfg.Logger.Debug("error while opening repo: ", pipe.Repo.LocalDest, err.Error())
+ // We don't stop gaia working because of an automated update failed.
127
+ // So we just move on.
128
+ gaia.Cfg.Logger.Error("error while opening repo: ", pipe.Repo.LocalDest, err.Error())
129
+ <-sem
130
return
131
}
132
gaia.Cfg.Logger.Debug("checking pipeline: ", pipe.Name)
0 commit comments