Skip to content

Commit

Permalink
[BUG] ITelemetryTrace parentId cannot be set to undefined #1660 (#1661)
Browse files Browse the repository at this point in the history
  • Loading branch information
MSNev authored Sep 8, 2021
1 parent 51572e5 commit 58971c0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/no-empty-interface": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-extra-semi": "off" // Re-enable for auto fixing
"@typescript-eslint/no-extra-semi": "off", // Re-enable for auto fixing
"@typescript-eslint/no-non-null-assertion": "error"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ export interface ITelemetryTrace {
/**
* Trace id
*/
traceID: string;
traceID?: string;

/**
* Parent id
*/
parentID: string;
parentID?: string;

/**
* Trace state
Expand Down

0 comments on commit 58971c0

Please sign in to comment.