mirror of
https://github.com/marcogll/builderbot-openai-assistants.git
synced 2026-01-13 13:25:18 +00:00
Update app.ts - added `` to a string
An error message was missing the `` to indicate its text and that was giving errors when ran via docker, did not cause any errors when running locally.
This commit is contained in:
@@ -44,7 +44,7 @@ const handleQueue = async (userId) => {
|
|||||||
try {
|
try {
|
||||||
await processUserMessage(ctx, { flowDynamic, state, provider });
|
await processUserMessage(ctx, { flowDynamic, state, provider });
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.error(Error processing message for user ${userId}:, error);
|
console.error(`Error processing message for user ${userId}`:, error);
|
||||||
} finally {
|
} finally {
|
||||||
userLocks.set(userId, false); // Release the lock
|
userLocks.set(userId, false); // Release the lock
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user