Skip to content

Commit

Permalink
Add temporary workaround for a bug introduced in a previous change
Browse files Browse the repository at this point in the history
  • Loading branch information
LucaLanziani committed Jun 3, 2024
1 parent 1b6b990 commit 32a3295
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/scripts/generate-weekly-report.js
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,9 @@ function parseJsonFromText(text) {
// Parse the found string to JSON
return JSON.parse(match[1]);
} else {
throw new Error("JSON data not found");
// Temporary fix to bypass issue introduced by https://github.com/open-telemetry/opentelemetry-collector-contrib/commit/c7ae39b72de203bbae0cea031728ed630f1dc293
debug({msg: "No JSON found in previous issue"})
return null
}
}

Expand Down

0 comments on commit 32a3295

Please sign in to comment.