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 are not passing the ?limit=0 querystring explicitly but perhaps that's implicit in self.resource.table as a side effect of setting that argument in scrunch.expressions.get_dataset_variables() function:
It doesn't happen all the time and actually executing same code again after a failure (ie re-running a script) succeeds.
Logs in backend shows this: (thanks @malecki for sharing)
The post to /datasets/ is part of the replace_values method here:
scrunch/scrunch/datasets.py
Line 2380 in c857398
We are not passing the
?limit=0
querystring explicitly but perhaps that's implicit inself.resource.table
as a side effect of setting that argument inscrunch.expressions.get_dataset_variables()
function:scrunch/scrunch/expressions.py
Lines 430 to 432 in f4830cb
which is called from
process_expr
:scrunch/scrunch/expressions.py
Line 465 in f4830cb
and
process_expr
is called fromreplace_values
just before the post to table endpoint.scrunch/scrunch/datasets.py
Lines 2377 to 2380 in c857398
But this is too much guessing, we need to find a way to make it reproducible.
The text was updated successfully, but these errors were encountered: