diff --git a/.github/workflows/trace-contract.yaml b/.github/workflows/trace-contract.yaml index b24451ef..a86202f4 100644 --- a/.github/workflows/trace-contract.yaml +++ b/.github/workflows/trace-contract.yaml @@ -14,6 +14,7 @@ env: OUTPUT_FOLDER: "/tmp" ES_USERNAME: ${{ secrets.ES_USERNAME }} ES_PASSWORD: ${{ secrets.ES_PASSWORD }} + ES_HOST: ${{ secrets.ES_HOST }} jobs: run_tests: diff --git a/Framework/WebUtils/Endpoint.cs b/Framework/WebUtils/Endpoint.cs index bf1a95a1..5f727c8d 100644 --- a/Framework/WebUtils/Endpoint.cs +++ b/Framework/WebUtils/Endpoint.cs @@ -85,7 +85,7 @@ namespace WebUtils var result = Deserialize(response); if (result == null) throw new Exception("Failed to deserialize response"); return result; - }, $"HTTO-POST-JSON: {route}"); + }, $"HTTP-POST-JSON: {route}"); } public string HttpPostStream(string route, Stream stream)