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
From the latest stable version of spec, it seems clear that the intention is to omit the next_page_token key when there are no more pages to read (as indicated by the fact that it is an optional key and there is no guidance in the specification that a value of "" should be interpreted as termination of the pagination). Thus, tes, for example, uses the presence or absence of this field to determine when to stop iterating (https://github.com/stjude-rust-labs/tes/blob/main/src/v1/client.rs#L219-L231). This causes issues when using tes with funnel, as it loops infinitely while trying to list all tasks.
The text was updated successfully, but these errors were encountered:
From the latest stable version of spec, it seems clear that the intention is to omit the
next_page_token
key when there are no more pages to read (as indicated by the fact that it is an optional key and there is no guidance in the specification that a value of""
should be interpreted as termination of the pagination). Thus,tes
, for example, uses the presence or absence of this field to determine when to stop iterating (https://github.com/stjude-rust-labs/tes/blob/main/src/v1/client.rs#L219-L231). This causes issues when usingtes
withfunnel
, as it loops infinitely while trying to list all tasks.The text was updated successfully, but these errors were encountered: