summaryrefslogtreecommitdiff
path: root/Userland/Services/RequestServer/ConnectionCache.h
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Services/RequestServer/ConnectionCache.h')
-rw-r--r--Userland/Services/RequestServer/ConnectionCache.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Services/RequestServer/ConnectionCache.h b/Userland/Services/RequestServer/ConnectionCache.h
index df88591d31..8cdb0b3f18 100644
--- a/Userland/Services/RequestServer/ConnectionCache.h
+++ b/Userland/Services/RequestServer/ConnectionCache.h
@@ -203,7 +203,7 @@ decltype(auto) get_or_create_connection(auto& cache, URL const& url, auto& job,
sockets_for_url.append(make<ConnectionType>(
socket_result.release_value(),
typename ConnectionType::QueueType {},
- Core::Timer::create_single_shot(ConnectionKeepAliveTimeMilliseconds, nullptr)));
+ Core::Timer::create_single_shot(ConnectionKeepAliveTimeMilliseconds, nullptr).release_value_but_fixme_should_propagate_errors()));
sockets_for_url.last().proxy = move(proxy);
did_add_new_connection = true;
}