You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We have a heroku web api server and worker dyno where the worker dyno does queries such as
const query = new Parse.Query(dmClasses.User)
.greaterThan('foo', 5)
.limit(100);
we are seeing these queries show up on our web api server dyno which is confusing. We would expect it to execute and log on the worker dyno. The only logs showing in our worker dyno are our custom console logs.
Does anyone have any idea why something like this might happen?
The text was updated successfully, but these errors were encountered:
We have a heroku web api server and worker dyno where the worker dyno does queries such as
we are seeing these queries show up on our web api server dyno which is confusing. We would expect it to execute and log on the worker dyno. The only logs showing in our worker dyno are our custom console logs.
Does anyone have any idea why something like this might happen?
The text was updated successfully, but these errors were encountered: