adds ES_HOST env var

This commit is contained in:
ThatBen 2025-05-21 07:51:11 +02:00
parent e70b15209f
commit 61202a46b2
No known key found for this signature in database
GPG Key ID: 62C543548433D43E
2 changed files with 2 additions and 1 deletions

View File

@ -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:

View File

@ -85,7 +85,7 @@ namespace WebUtils
var result = Deserialize<TResponse>(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)