worker: add missing continue

This commit is contained in:
Lars Karlitski 2020-10-30 18:06:58 +01:00
parent 0cd7174598
commit f6f4f1fd9b

View file

@ -245,6 +245,7 @@ func RunJob(job worker.Job, store string, kojiServers map[string]koji.GSSAPICred
creds, exists := kojiServers[kojiServer.Hostname()]
if !exists {
r = append(r, fmt.Errorf("Koji server has not been configured: %s", kojiServer.Hostname()))
continue
}
k, err := koji.NewFromGSSAPI(options.Server, &creds, transport)