I am using RxJava 1.1.1 on Android and getting the following error: ``` java Caused by java.util.ConcurrentModificationException at java.util.Hashtable$HashIterator.nextEntry(Hashtable.java:727) at java.util.Hashtable$EntryIterator.next(Hashtable.java:778) at java.util.Hashtable$EntryIterator.next(Hashtable.java:776) at rx.plugins.RxJavaPlugins.getPluginImplementationViaProperty(RxJavaPlugins.java:177) at rx.plugins.RxJavaPlugins.getSchedulersHook(RxJavaPlugins.java:232) at rx.schedulers.Schedulers.(Schedulers.java) at rx.schedulers.Schedulers.(Schedulers.java) ``` My code is ``` java unreadConversationsServer = unreadConversations; final Scheduler.Worker worker = Schedulers.io().createWorker(); worker.schedule(() -> { try { computeUnreadUnSyncedConversationCount(); } catch (Exception e) { Timber.e(e, "Error while computing Unread Unsynced Conversation Count"); } worker.unsubscribe(); }); ``` Full detail here: http://crashes.to/s/4ecb8083b7f