From e811745e5c37dd38a8fb9f4bc2892525401eabbd Mon Sep 17 00:00:00 2001 From: Dan Engelbrecht Date: Fri, 27 Mar 2026 09:51:29 +0100 Subject: hub instance state refactor (#892) - Improvement: Provisioning a hibernated instance now automatically wakes it instead of requiring an explicit wake call first - Improvement: Deprovisioning now accepts instances in Crashed or Hibernated states, not just Provisioned - Improvement: Added `--consul-health-interval-seconds` and `--consul-deregister-after-seconds` options to control Consul health check behavior (defaults: 10s and 30s) - Improvement: Consul registration now occurs when provisioning starts; health check intervals are applied once provisioning completes --- src/zenhttp/httpclient.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'src/zenhttp/httpclient.cpp') diff --git a/src/zenhttp/httpclient.cpp b/src/zenhttp/httpclient.cpp index 13c86e9ae..4000ea8a8 100644 --- a/src/zenhttp/httpclient.cpp +++ b/src/zenhttp/httpclient.cpp @@ -415,9 +415,12 @@ HttpClient::SetSessionId(const Oid& SessionId) } HttpClient::Response -HttpClient::Put(std::string_view Url, const IoBuffer& Payload, const HttpClient::KeyValueMap& AdditionalHeader) +HttpClient::Put(std::string_view Url, + const IoBuffer& Payload, + const HttpClient::KeyValueMap& AdditionalHeader, + const HttpClient::KeyValueMap& Parameters) { - return m_Inner->Put(Url, Payload, AdditionalHeader); + return m_Inner->Put(Url, Payload, AdditionalHeader, Parameters); } HttpClient::Response -- cgit v1.2.3