Derek Colley
Derek Colley
`polkadot -h` reveals  so better to use ``` --rpc-max-request-size \ --rpc-max-response-size \ ```
> We've also seen crashes due to too frequent querying of the 1kv backend endpoints Ok, we limit calls to 10 mins and keep the result in cache. Do I...
Instead of loading data for all candidates, we might be able to reduce traffic / load by promoting the use of direct calls for individual candidates. I found this service...
> Instead of loading data for all candidates, we might be able to reduce traffic / load by promoting the use of direct calls for individual candidates. I found this...
@ccris02 I implemented at check for 404 or even 500 today. If upstream server is not available it will serve the cache we have. There is a timestamp in the...
I get the same, it there any update? Could it be some env setup I need?
Oh dear... "beer & docs"! That's actually something I would sign up for ;) I also have to comment out loads of sections to avoid errors like this: ```js Error:...
It was not clear whether you're in ts or js? Anyway, using the responses from this post I am able to get this working on node v16.15.0 **test.js** ```js import...
> Unless the qnap docker instance is doing something strange Most possibly... it's an older version of docker. ``` # docker --version Docker version 17.09.1-ce, build 0bbe3ac ``` I appreciate...
On QNAP I managed to get the container started with `--privileged`. ```bash docker run -it -d \ -p 1880:1880 \ -v /share/Containers/node-red/3.0.2/data:/data \ --privileged \ --name node-red-3.0.2-18 nodered/node-red:3.0.2-18 ``` The...