Send short codes that do not need URL encoding for better splunk tracing

This commit is contained in:
Simon Engledew
2020-11-24 12:43:08 +00:00
parent 6df1fc5e38
commit 2ac22e8935
10 changed files with 215 additions and 72 deletions
+4 -4
View File
@@ -96,10 +96,10 @@ async function run() {
try {
actionsUtil.prepareLocalRunEnvironment();
const workflowError = await actionsUtil.getWorkflowError();
const workflowErrors = await actionsUtil.getWorkflowErrors();
if (workflowError !== undefined) {
core.warning(workflowError);
if (workflowErrors !== undefined) {
core.warning(actionsUtil.formatWorkflowErrors(workflowErrors));
}
if (
@@ -108,7 +108,7 @@ async function run() {
"init",
"starting",
startedAt,
workflowError
actionsUtil.formatWorkflowCause(workflowErrors)
)
))
) {