Here are the code I‘m using to test: ``` java final Observable<GroupedObservable<String, AppInfo>> groupBy = Observable.from(appInfoList) .groupBy(appInfo -> { SimpleDateFormat sdf = new SimpleDateFormat("MM/yyyy"); String groupedStr = sdf.format(new Date(appInfo.getLastUpdateTime())); return groupedStr; }); Observable.concat(groupBy) .subscribe(mSubscriber); ``` and the library is : ``` compile 'io.reactivex:rxjava:1.1.1' compile 'io.reactivex:rxandroid:1.1.0'` ``` I got this result which apparently is not correct, I only got three results!:  but it should be like this as shown on the Rxjava-essential-code.  This problem never occurs on Version 1.1.0.