diff options
| author | Dan Engelbrecht <[email protected]> | 2026-03-20 16:34:03 +0100 |
|---|---|---|
| committer | Dan Engelbrecht <[email protected]> | 2026-03-20 16:34:03 +0100 |
| commit | 0587d312a55d803ab8caf5000fd9b3be938f6a2c (patch) | |
| tree | d904b4331ec6f12028c133fe239041ba46ccea53 | |
| parent | fix compilation issues after backporting fixes (diff) | |
| download | zen-0587d312a55d803ab8caf5000fd9b3be938f6a2c.tar.xz zen-0587d312a55d803ab8caf5000fd9b3be938f6a2c.zip | |
cleanup
| -rw-r--r-- | CHANGELOG.md | 2 | ||||
| -rw-r--r-- | src/zenhttp/include/zenhttp/httpclientauth.h | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 5b1477891..3cb78213d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ - Improvement: Updated libcurl to 8.19.0 to solve macOS trust issues (https://github.com/curl/curl/issues/20435) - Bugfix: Authentication callbacks are not thread safe, ensured call sites does single threaded calls - Bugfix: Retry OIDC token refresh once on failure before propagating the error +- Bugfix: Don't do unattended OIDC token refresh unless explicitly requested +- Bugfix: Don't hide the oidctoken process when fetching tokens in httpprojectstore - Bugfix: Handle HTTP 501 (Not Implemented) from Jupiter as a signal to fall back from multi-range to single-range requests ## 5.7.23 diff --git a/src/zenhttp/include/zenhttp/httpclientauth.h b/src/zenhttp/include/zenhttp/httpclientauth.h index f1bccdca6..c466b893a 100644 --- a/src/zenhttp/include/zenhttp/httpclientauth.h +++ b/src/zenhttp/include/zenhttp/httpclientauth.h @@ -11,8 +11,8 @@ class AuthMgr; namespace httpclientauth { - // The std::function<HttpClientAccessToken()> instances returned from these functions are not guarateed to - // be thread safe so caller must make sure they are not called from multiple threads in parallell + // The std::function<HttpClientAccessToken()> instances returned from these functions are not guaranteed to + // be thread safe so caller must make sure they are not called from multiple threads in parallel std::function<HttpClientAccessToken()> CreateFromStaticToken(HttpClientAccessToken Token); |