Skip to content

Commit

Permalink
correct data type ingestion for interrupt runner
Browse files Browse the repository at this point in the history
  • Loading branch information
Twiggeh committed Sep 4, 2020
1 parent 5e7ceee commit 6a58378
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions utils/ticket.js
Original file line number Diff line number Diff line change
Expand Up @@ -159,8 +159,8 @@ export const timeOutHandler = async (ticket, system) => {
await clTicket.qTicket.student.send(timeoutThankYou(cltOpts.studentName));
cleanUpAfterCoaching(clTicket, cltOpts);
},
sleep(5000),
delAllMsgs({ UserIDs: cltOpts.studentID }),
() => sleep(5000),
() => delAllMsgs({ UserIDs: cltOpts.studentID }),
],
});
return;
Expand Down

0 comments on commit 6a58378

Please sign in to comment.