Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions apps/hub/src/queues/deployment/deploy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -258,14 +258,14 @@ export let deploySlateVersionStartQueueProcessor = deploySlateVersionStartQueue.
let messages = [];

for (let m of input.messages) {
console.log('[Slates:] Processing input message', m.method + (m.id ? \`(\${m.id})\` : ''));
console.log('[Metorial Runtime]: Processing input message', m.method + (m.id ? \`(\${m.id})\` : ''));
let result = await SlatesProviderProtoHandlerManager.handleInput(manager, m);
if (result) {
if (m.id) result.id = m.id;
messages.push(result);

if (typeof result.error == 'object' && result.error) {
console.error('[Slates:] Error in processing:', result.error);
console.error('[Metorial Runtime]: Error in processing:', result.error);
break;
}
}
Expand Down
Loading