From 5104763a05685b11d8eeafdb11dad140922aed73 Mon Sep 17 00:00:00 2001 From: Samuel Williams Date: Mon, 22 Jan 2024 18:05:39 +1300 Subject: [PATCH] Require shared endpoint by default. (#148) --- lib/async/http/endpoint.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/async/http/endpoint.rb b/lib/async/http/endpoint.rb index 2140b07a..45971711 100644 --- a/lib/async/http/endpoint.rb +++ b/lib/async/http/endpoint.rb @@ -7,6 +7,7 @@ require 'async/io/host_endpoint' require 'async/io/ssl_endpoint' require 'async/io/ssl_socket' +require 'async/io/shared_endpoint' require_relative 'protocol/http1' require_relative 'protocol/https'