Commit 3102be1a authored by jan.koester's avatar jan.koester
Browse files

test

parent 19c308e0
Loading
Loading
Loading
Loading
Loading
+6 −2
Original line number Diff line number Diff line
@@ -179,7 +179,9 @@ void ClientConnection::reConnect() {

void ClientConnection::setUrl(const libhttppp::HttpUrl& url) {
    _Url = url;
    _RequestPath = normalize_path(_Url.getPath());
    std::string path = normalize_path(_Url.getPath());
    if (path == "/") path = "/admin/api";
    _RequestPath = path;
    if (_Client) {
        _Client = std::make_unique<libhttppp::HttpClient>(_Url);
        _Client->setTimeout(_Timeout);
@@ -192,7 +194,9 @@ void ClientConnection::setUrl(const std::string& url) {
    if (path.empty() || path == "/") {
        path = extract_path_from_url(url);
    }
    _RequestPath = normalize_path(path);
    path = normalize_path(path);
    if (path == "/") path = "/admin/api";
    _RequestPath = path;
    if (_Client) {
        _Client = std::make_unique<libhttppp::HttpClient>(_Url);
        _Client->setTimeout(_Timeout);
+0 −1
Original line number Diff line number Diff line
462295beb911ab67334c6fff172fd8e4e1821838 a82e8c2d9e72ff497333937d0883348192fcd9cb 
 No newline at end of file
+0 −13
Original line number Diff line number Diff line
Package: authdb-plugins-dbgsym
Source: authdb
Version: 20260424+8
Auto-Built-Package: debug-symbols
Architecture: amd64
Maintainer: Jan Koester <jan.koester@tuxist.de>
Installed-Size: 5221
Depends: authdb-plugins (= 20260424+8)
Section: debug
Priority: optional
Multi-Arch: same
Description: debug symbols for authdb-plugins
Build-Ids: 462295beb911ab67334c6fff172fd8e4e1821838 a82e8c2d9e72ff497333937d0883348192fcd9cb
+0 −3
Original line number Diff line number Diff line
69fc8d1af72f2b8dd5ff0528e91a2628  usr/lib/debug/.build-id/46/2295beb911ab67334c6fff172fd8e4e1821838.debug
850cb7b82771ff5e46d381a733ad2733  usr/lib/debug/.build-id/a8/2e8c2d9e72ff497333937d0883348192fcd9cb.debug
6ded29680470c5dfea9eecffc2e20730  usr/lib/debug/.dwz/x86_64-linux-gnu/authdb-plugins.debug
Loading