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
When wws calls a worker, it sends the HTTP request as a serialized object. It includes all the required values to build a Request object inside the worker. Currently, the url does not include the query string. This is relevant information so we should ensure we send it as part of the URL.
When
wws
calls a worker, it sends the HTTP request as a serialized object. It includes all the required values to build aRequest
object inside the worker. Currently, theurl
does not include thequery
string. This is relevant information so we should ensure we send it as part of the URL.wasm-workers-server/src/workers/wasm_io.rs
Lines 34 to 53 in a23438f
The
.uri().path()
method doesn't include thequery
string. There's an alternativepath_and_query()
path we can use for this purpose.The text was updated successfully, but these errors were encountered: