Ben Kuster
Ben Kuster
thanks for the reply @olt. I'm not sure to what extent this is an edge case. If you use an AWS S3 VPCE in your setup to access S3, you...
thanks for taking the time @walkermatt ! fyi we have been using this branch in production for quite some time now and have had no issues so far. any chance...
I did some digging into the use of `ol.source.Cluster`. I did find the reason for the source not updating, when the camera position changes. The cluster source uses the *resolution*...
We are having the same issue. Furthermore, once I get a single test to compile (and run), re-running the test will choke and cause a segmentation fault or (erratically) some...
workaround: in your config set `threads: false`
So, I've been having the same issue and decided to try changing modules to _imports_, e.g. something like this: ```javascript if (/^module:/.test(name)) { const [mod, imp] = name.replace(/^module:/, '').split('~'); return...
+1 for this behavior for now, I have this work-around, just sends a 'forbidden' for an attempted register: ``` Meteor.startup(() => { JsonRoutes.add("post", "/users/register", function(req, res, next){ JsonRoutes.sendResult(res, {code: 403});...