We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d84000d commit 013a739Copy full SHA for 013a739
src/app.ts
@@ -132,18 +132,13 @@ export async function setupApplication(config: Config): Promise<{ stats: Stats;
132
133
stopRandomActivateAudio()
134
135
- if (server) {
136
- server.stop()
137
- }
138
-
139
await stats.stop()
140
141
if (config.throttleConfig) {
142
await stopThrottle()
143
}
144
145
stopTimers()
146
- log.debug('Stopped')
147
148
// vmaf score.
149
if (config.vmafPath) {
@@ -173,6 +168,12 @@ export async function setupApplication(config: Config): Promise<{ stats: Stats;
173
168
log.debug(`docker logs not found: ${(err as Error).message}`)
174
169
175
170
171
+
172
+ if (server) {
+ server.stop()
+ }
176
+ log.debug('Stopped')
177
},
178
179
0 commit comments