Skip to content
This repository was archived by the owner on Jan 15, 2025. It is now read-only.
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
3 changes: 1 addition & 2 deletions packages/orchestratorlib/src/orchestratorhelper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,6 @@ export class OrchestratorHelper {
utteranceEntityLabelDuplicateMap);
}
}
Utility.processUnknownSpuriousLabelsInUtteranceLabelsMap({utteranceLabelsMap, utteranceLabelDuplicateMap});
return {
utteranceLabelsMap,
utteranceLabelDuplicateMap,
Expand Down Expand Up @@ -353,7 +352,7 @@ export class OrchestratorHelper {
default: throw new Error(`Unknown file type ${ext}`);
}
} catch (error: any) {
throw new Error(`${error.message}${os.EOL}Failed to parse ${filePath}`);
throw new Error(`${error.message}${os.EOL}Failed to parse ${filePath}, error=${os.EOL}${UtilityDispatcher.jsonStringify(error)}`);
}
}

Expand Down