For await fix
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Nicolai Ort 2021-04-11 21:13:44 +02:00
parent 467808abef
commit a24d2923c6
3 changed files with 3 additions and 3 deletions

View File

@ -279,7 +279,7 @@
}
})
.catch((err) => {});
for await (const t of o.teams) {
for (const t of o.teams) {
count++;
let runners = await RunnerTeamService.runnerTeamControllerGetRunners(
t.id

View File

@ -212,7 +212,7 @@
}
})
.catch((err) => {});
for await (const t of o.teams) {
for (const t of o.teams) {
count++;
let runners = await RunnerTeamService.runnerTeamControllerGetRunners(
t.id

View File

@ -140,7 +140,7 @@
}
})
.catch((err) => {});
for await (const t of o.teams) {
for (const t of o.teams) {
count++;
let runners = await RunnerTeamService.runnerTeamControllerGetRunners(
t.id