Fix oidc tests after removing logoutRedirectUri

This commit is contained in:
Johannes Zellner
2023-07-28 16:47:10 +02:00
parent 1f4c71dcd6
commit 56e1f53890
2 changed files with 5 additions and 39 deletions
+2
View File
@@ -174,6 +174,8 @@ function startTask(id, options, callback) {
gTasks[id] = shell.sudo('startTask', [ START_TASK_CMD, id, logFile, options.nice || 0, options.memoryLimit || 400 ], sudoOptions, async function (sudoError) {
if (!gTasks[id]) return; // ignore task exit since we are shutting down. see stopAllTasks
console.log(sudoError)
const code = sudoError ? sudoError.code : 0;
debug(`startTask: ${id} completed with code ${code}`);