Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
remove owner reference in billing
  • Loading branch information
icecrasher321 committed Feb 10, 2026
commit 908f7eac6b7e5fb7ac24ea9e7450816d90065a91
4 changes: 2 additions & 2 deletions apps/sim/lib/execution/preprocessing.ts
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ export async function preprocessExecution(
}

if (!actorUserId) {
const fallbackUserId = userId || workflowRecord.userId || 'unknown'
const fallbackUserId = userId || 'unknown'
logger.warn(`[${requestId}] ${BILLING_ERROR_MESSAGES.BILLING_REQUIRED}`, {
workflowId,
workspaceId,
Expand Down Expand Up @@ -214,7 +214,7 @@ export async function preprocessExecution(
}
} catch (error) {
logger.error(`[${requestId}] Error resolving billing actor`, { error, workflowId })
const fallbackUserId = userId || workflowRecord.userId || 'unknown'
const fallbackUserId = userId || 'unknown'
await logPreprocessingError({
workflowId,
executionId,
Expand Down