mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
refactor: Upgrade to TypeScript 5.5 (no-changelog) (#9828)
This commit is contained in:
@@ -148,13 +148,15 @@ export class Telemetry {
|
||||
properties.success ? 'success' : 'error'
|
||||
}`;
|
||||
|
||||
if (!this.executionCountsBuffer[workflowId][key]) {
|
||||
const executionTrackDataKey = this.executionCountsBuffer[workflowId][key];
|
||||
|
||||
if (!executionTrackDataKey) {
|
||||
this.executionCountsBuffer[workflowId][key] = {
|
||||
count: 1,
|
||||
first: execTime,
|
||||
};
|
||||
} else {
|
||||
this.executionCountsBuffer[workflowId][key]!.count++;
|
||||
executionTrackDataKey.count++;
|
||||
}
|
||||
|
||||
if (
|
||||
|
||||
Reference in New Issue
Block a user