You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Remove uses of at-async in favor of at-spawn (#1039)
* Remove uses of at-async in favor of at-spawn. at-async tends to "poison" cooperating
tasks to be sticky to the thread that is running them or the parent's task's thread.
* cleanup
* add docs for logtag
Copy file name to clipboardexpand all lines: docs/src/client.md
+4
Original file line number
Diff line number
Diff line change
@@ -107,6 +107,10 @@ When a non-2XX HTTP status code is received in a response, this is meant to conv
107
107
108
108
If `true`, `HTTP.StatusError`, `HTTP.TimeoutError`, `HTTP.IOError`, and `HTTP.ConnectError` will be logged via `@error` as they happen, regardless of whether the request is then retried or not. Useful for debugging or monitoring requests where there's worry of certain errors happening but ignored because of retries.
109
109
110
+
### `logtag`
111
+
112
+
If provided, will be used as the tag for error logging. Useful for debugging or monitoring requests.
113
+
110
114
### `observelayers`
111
115
112
116
If `true`, enables the `HTTP.observelayer` to wrap each client-side "layer" to track the amount of time spent in each layer as a request is processed. This can be useful for debugging performance issues. Note that when retries or redirects happen, the time spent in each layer is cumulative, as noted by the `[layer]_count`. The metrics are stored in the `Request.context` dictionary, and can be accessed like `HTTP.get(...).request.context`.
@warn"connection_limit no longer supported as a keyword argument; use `HTTP.set_default_connection_limit!($cl)` or pass a connection pool like `pool=HTTP.Pool($cl)` instead."
427
+
@warn"connection_limit no longer supported as a keyword argument; use `HTTP.set_default_connection_limit!($cl)` before any requests are made or construct a shared pool via `POOL = HTTP.Pool($cl)` and pass to each request like `pool=POOL` instead."
428
428
429
429
"""
430
430
newconnection(type, host, port) -> Connection
@@ -509,7 +509,7 @@ function getconnection(::Type{TCPSocket},
509
509
tcp = Sockets.TCPSocket()
510
510
Sockets.connect!(tcp, addr, p)
511
511
try
512
-
Exceptions.try_with_timeout(connect_timeout) do
512
+
try_with_timeout(connect_timeout) do _
513
513
Sockets.wait_connected(tcp)
514
514
keepalive &&keepalive!(tcp)
515
515
end
@@ -523,7 +523,7 @@ function getconnection(::Type{TCPSocket},
523
523
end
524
524
return tcp
525
525
catch e
526
-
lasterr = e isaTimeoutError?ConnectTimeout(host, port) : e
526
+
lasterr = e isaConcurrentUtilities.TimeoutException?ConnectTimeout(host, port) : e
527
527
end
528
528
end
529
529
# If no connetion could be set up, to any address, throw last error
@@ -624,7 +624,7 @@ function sslupgrade(::Type{IOType}, c::Connection{T},
624
624
# if the upgrade fails, an error will be thrown and the original c will be closed
0 commit comments