Skip to content

Commit

Permalink
Do not fail on decoding of responses being unexpected unicode
Browse files Browse the repository at this point in the history
  • Loading branch information
iainsproat committed Dec 30, 2024
1 parent fe446d5 commit ca46336
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
7 changes: 7 additions & 0 deletions .github/workflows/rest-api-fuzzer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,7 @@ jobs:
cp ${{ github.workspace }}/speckle-server/setup/fuzzer/.env.fuzz-test-example .env
- name: Run speckle-server
working-directory: ${{ github.workspace }}/speckle-server/packages/server
timeout-minutes: 1
run: |
yarn start &
until curl --output /dev/null --silent --head --fail http://127.0.0.1:3000/readiness; do
Expand Down Expand Up @@ -191,6 +192,12 @@ jobs:
echo "############################################"
echo ""
cat "$(find ${{ github.workspace }}/Test -type f -name "speccov.json")" || true
echo ""
echo "############################################"
echo "# Network testing logs #"
echo "############################################"
echo ""
cat "$(find ${{ github.workspace }}/Test -type f -name "network.testing.*.txt")" || true
- name: Print Docker Compose logs
if: always()
Expand Down
3 changes: 2 additions & 1 deletion setup/fuzzer/settings.restler.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@
"per_resource_settings": {},
"max_combinations": 20,
"target_ip": "127.0.0.1",
"target_port": 3000
"target_port": 3000,
"ignore_decoding_failures": true
}

0 comments on commit ca46336

Please sign in to comment.