We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 252813c commit 819cea0Copy full SHA for 819cea0
src/azure-cli-core/azure/cli/core/commands/__init__.py
@@ -778,7 +778,7 @@ def _what_if(self, args):
778
except (CLIError, ValueError, KeyError) as ex:
779
# If what-if service fails, still show an informative message
780
logger.error("What-if preview failed: %s", str(ex))
781
- telemetry.set_exception(ex, fault_type='what-if-error', summary=str(ex)[:100])
+ telemetry.set_exception(ex, fault_type='what-if-error')
782
telemetry.set_failure(summary='what-if-failed')
783
return CommandResultItem(None, exit_code=1,
784
error=CLIError(f'What-if preview failed: {str(ex)}'))
0 commit comments