fix formatting

This commit is contained in:
Karl Seguin
2025-05-13 10:42:51 +08:00
parent ce2eed28c1
commit 64f80312de

View File

@@ -460,7 +460,12 @@ pub const Request = struct {
if (self._secure) { if (self._secure) {
connection.tls = .{ connection.tls = .{
.nonblocking = try tls.nb.Client().init(self._client.allocator, .{ .host = connection.host, .root_ca = self._client.root_ca, .insecure_skip_verify = self._tls_verify_host == false, .key_log_callback = tls.config.key_log.callback }), .nonblocking = try tls.nb.Client().init(self._client.allocator, .{
.host = connection.host,
.root_ca = self._client.root_ca,
.insecure_skip_verify = self._tls_verify_host == false,
.key_log_callback = tls.config.key_log.callback,
}),
}; };
async_handler.conn.protocol = .{ async_handler.conn.protocol = .{