Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 2 additions & 2 deletions .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- name: Install dependencies, run tests, and collect coverage
run: docker compose -f docker/buildkite/docker-compose.yaml run unit-test-test-service
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
uses: codecov/codecov-action@v5
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
CODECOV_TOKEN: eVBGf4EmXr
slug: cadence-workflow/cadence-java-client
Original file line number Diff line number Diff line change
Expand Up @@ -773,6 +773,7 @@ private static String prettyPrintJson(String jsonValue, String stackIndentation)
Gson gson = new GsonBuilder().setPrettyPrinting().create();
return gson.toJson(json);
} catch (Exception e) {
System.err.println("Error parsing JSON: " + jsonValue);
return jsonValue;
}
}
Expand Down