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
When persistState() is called afterwards, the contents of the stream are read into a (persisted) list. To not mutate the internal state with persistState(), we return the stream contents back to the original stream - if the stream had been closed, this causes an exception (push after EOF).
The text was updated successfully, but these errors were encountered:
barjin
added
bug
Something isn't working.
t-tooling
Issues with this label are in the ownership of the tooling team.
labels
Sep 20, 2024
If
SitemapRequestList
finishes parsing the remote sitemaps andpersistState()
is called, it throws an exception.This is because after parsing the sitemaps fully, the
SitemapRequestList
closes the internal stream with.push(null)
.When
persistState()
is called afterwards, the contents of the stream are read into a (persisted) list. To not mutate the internal state withpersistState()
, we return the stream contents back to the original stream - if the stream had been closed, this causes an exception (push after EOF).The text was updated successfully, but these errors were encountered: