Fixed
Status Update
Comments
ra...@google.com <ra...@google.com> #2
Thanks for your report. We have a bug open to address this issue.
ra...@google.com <ra...@google.com> #3
Thanks. Any ETA for a fix at this point / What would be a reasonable estimate?
ap...@google.com <ap...@google.com> #5
the url to productforums.google.com is ok ? I get "There is no group named “apps-script”."
Description
Version used: 2.2.0+
Devices/Android versions reproduced on: All manufacturers/Android 6 and higher
Basically adding an empty List<OneTimeWorkRequest> to a chain will break the chain. Example:
workContinuation.beginWith(someJob).then(workList1).then(emptyWorkList).then(workList2)....enqeue
The chain completely stops executing work when it reaches the "emptyWorkList" part of the chain. There is NO error message. The chain sort of hangs in limbo after that. Expected behaviour should be that it ignores that part of the chain and proceeds to the next continuation, I think.