benito

Results 22 comments of benito

sounds good! thanks, we can close this one then and create an issue to document the requirements when possible > This avoids invoking the hook if the upload does not...

- Update @types/selenium-webdriver and selenium-webdriver to latest PR to update selenium-webdriver https://github.com/angular/protractor/pull/4265 > making sure the selenium-webdriver types are accurate with selenium-webdriver 3.4.0, how can we test this requirement?

I had a different issue while running the same command `go build ./cmd/cayley` ``` build github.com/cayleygraph/cayley/cmd/cayley: cannot load root/cayley/packrd: malformed module path "root/cayley/packrd": missing dot in first path element ```

if you change the shard count dont you have to change the hash function params too? https://en.wikipedia.org/wiki/Fowler%E2%80%93Noll%E2%80%93Vo_hash_function#FNV_hash_parameters

hello I'm trying to handle a reject for websocket upgrade: ```rust let subscription = warp::path::full() .and(warp::ws()) .and(subscription_pools) .and(subscription_db) .map(|full_path: warp::path::FullPath, ws: warp::ws::Ws, pools: Pools, db: Storage| { let key =...

> @benitogf Adding a `.into_response()` to all responses might solve your issue: > > ```diff > if key_valid(&key) { > - ws.on_upgrade(move |websocket| ws_reader(websocket, key, pools, db)) > + ws.on_upgrade(move...

thanks @rkusa using `into_response` works 👍

> Your PR runs within the container. This is more for on the host I agree that this issue is more about setting up the host, such as creating folders...

hey I tried running `go test -v -failfast -race -count=20 -timeout=0` and no failure, maybe it was a timeout? also I can't see the logs in the link above `Error:...

go version go1.19.1 linux/amd64