-
Notifications
You must be signed in to change notification settings - Fork 7.6k
NullPointerException on OperatorZip #3687
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Labels
Comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I get crashreports caused by a NullPointerException in OperatorZip's tick() method. You find the stacktrace and my code, causing the problem below.
The responsible line in tick() method is
where observers[i] seems to be null.
The app crashes only rarely on one device, which I don't have acces to (Samsung S3, Android 4.3). The reason seems to be, that the property
missedProducer
inProducerArbiter
must be set, which is never the case on my devices.We're not in production yet, so I can not tell how many other devices will show this error.
Stacktrace:
This is the code causing the problem: Get
Observable<List<ContainerEntity>>
, map each container entity to my actual container model. flatmap is used to split my list into single items.The text was updated successfully, but these errors were encountered: