Martí Zamora
Martí Zamora
Thank you for answering. I think it would not work because I'm running untrusted code from other users and they can do wrong/buggy code. Could it be possible to add...
That works well if I'm not executing async code: I've tried: ``` javascript function task(){ try{ eval(userCode) }catch(e){ application.remote.logError(e) } } ``` where userCode is a string with the code:...
In my case I let the user access a list of external services (DB, webservices, ...) and process the data returned. I don't know apriori what will they do. Also...
When an undefined function is tried to execute I get this in the stderr: ``` ReferenceError: foo is not defined at DYNAMIC PLUGIN:8:5 at DYNAMIC PLUGIN:115:9 at JailedSite._processMessage (/xxx/node_modules/jailed/_JailedSite.js:126:21) at...
Is it possible to do the same with ReactiveList?
@bietkul I wasn't able to make updateQuery work with the same query I think this line is preventing it: https://github.com/appbaseio/reactivecore/blob/9490a737adba49be70a9df5dd7ca55f384ac23c1/src/actions/query.js#L363
If anyone wonders I solved it by making the query different but ensuring that it returns the same results ```javascript defaultQuery={() => ({ timeout: '1s', query: { bool: { must:...
@cosmicBboy in our case we are having issues with typeguard. Pandera uses typeguard>=3.0.2 and jaxtyping uses typeguard==2.13.3 which makes them incompatible. So having typeguard as an optional dependency would possibly...
It seems that they pull data from Aquarea Service Cloud. Is there a way to register to it without being an installer?
Thank you for answering. I've asked the Pandera maintainers if this is would be possible. Along these lines would it be possible to have PyTree types and hence Typeguard as...