Skip to content

Commit 61202a4

Browse files
committed
adds ES_HOST env var
1 parent e70b152 commit 61202a4

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/trace-contract.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ env:
1414
OUTPUT_FOLDER: "/tmp"
1515
ES_USERNAME: ${{ secrets.ES_USERNAME }}
1616
ES_PASSWORD: ${{ secrets.ES_PASSWORD }}
17+
ES_HOST: ${{ secrets.ES_HOST }}
1718

1819
jobs:
1920
run_tests:

Framework/WebUtils/Endpoint.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ public TResponse HttpPostString<TResponse>(string route, string body)
8585
var result = Deserialize<TResponse>(response);
8686
if (result == null) throw new Exception("Failed to deserialize response");
8787
return result;
88-
}, $"HTTO-POST-JSON: {route}");
88+
}, $"HTTP-POST-JSON: {route}");
8989
}
9090

9191
public string HttpPostStream(string route, Stream stream)

0 commit comments

Comments
 (0)