mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
fix: Stop telemetry events to Posthog (#16788)
This commit is contained in:
@@ -59,13 +59,9 @@ export async function executionFinished(
|
||||
const easyAiWorkflowJson = getEasyAiWorkflowJson();
|
||||
const isEasyAIWorkflow = workflow.meta.templateId === easyAiWorkflowJson.meta.templateId;
|
||||
if (isEasyAIWorkflow) {
|
||||
telemetry.track(
|
||||
'User executed test AI workflow',
|
||||
{
|
||||
status: data.status,
|
||||
},
|
||||
{ withPostHog: true },
|
||||
);
|
||||
telemetry.track('User executed test AI workflow', {
|
||||
status: data.status,
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
@@ -313,9 +309,7 @@ export function handleExecutionFinishedWithErrorOrCanceled(
|
||||
}
|
||||
}
|
||||
|
||||
telemetry.track('Instance FE emitted paired item error', eventData, {
|
||||
withPostHog: true,
|
||||
});
|
||||
telemetry.track('Instance FE emitted paired item error', eventData);
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user