khuezy
khuezy
Hi @gabrielmfern I have the same error using `@react-email/render`. Is the fix similar?
`websocketClient.end()` ?
You'll have to hook onto the `reconnecting` service handler and return true to disable the reconnect. ` websocketClient.serviceHandlers.reconnecting = () => true `
Put it after ` websocketClient = client; `
Calling `end()` should close the connection... https://github.com/mwwhited/signalr-client-nodejs/blob/master/WhitedUS.SignalR/WhitedUS.signalR/signalR.js#L393
I've noticed a similar issue. Another problem is if you're purging `/path/to` and there's data at: `/path/to/a/b`, it errors saying that the directory is not empty. @magiclen Thanks for this...
Thanks for the fix @magiclen! On a related note, can I add a feature request to allow for the negation "!" path? My use case is that I want to...
I'm having issues w/ the wildcard purge on latest (0.3.1) Command: `/usr/local/bin/nginx-cache-purge purge /data/nginx-cache 1:2 *` ``` error: unexpected argument 'bin' found ``` I've tried wrapping it in quotes and...
Yes, when I load the page, all the resources at HITs When I purge a specific path eg: `/_next/*`, then all the static contents under that path are purged and...
Awesome thanks so much! I'll test that out this weekend. As for the error I had yesterday, it was user error... my script was: `nginx-cache-purge p /data/nginx-cache 1:2 "*"` The...