Hello,
We have a service using drone-go, that is in charge of triggering nightly builds on drone.
To do so, we get the last build and start it, such as:
lastBuild, err := cs.client.BuildLast(owner, name, branch)
if err != nil {
return
}
build, err := cs.client.BuildStart(owner, name, lastBuild.Number, params)
if err != nil {
return
}
(params
only contains fork: true
)
Sometimes (app. once every 5 tries or so) the build fails with the following error
Error response from daemon: network 0_6734157801296766462_default is ambiguous (2 matches found on name)
There’s no build running at the same time as this one.
Any idea what could be the cause of that? Is the code alright?