mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-23 10:21:00 +00:00
fix issue #2138
This commit is contained in:
parent
441a015ca8
commit
162d9b3a67
1 changed files with 7 additions and 3 deletions
|
@ -159,9 +159,13 @@ func PostHook(c *gin.Context) {
|
||||||
}
|
}
|
||||||
err = Config.Storage.Config.ConfigCreate(conf)
|
err = Config.Storage.Config.ConfigCreate(conf)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
logrus.Errorf("failure to persist config for %s. %s", repo.FullName, err)
|
// retry in case we receive two hooks at the same time
|
||||||
c.AbortWithError(500, err)
|
conf, err = Config.Storage.Config.ConfigFind(repo, sha)
|
||||||
return
|
if err != nil {
|
||||||
|
logrus.Errorf("failure to find or persist build config for %s. %s", repo.FullName, err)
|
||||||
|
c.AbortWithError(500, err)
|
||||||
|
return
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
build.ConfigID = conf.ID
|
build.ConfigID = conf.ID
|
||||||
|
|
Loading…
Reference in a new issue