Skip to content

Commit

Permalink
[chapter05] Fix delay 3000
Browse files Browse the repository at this point in the history
  • Loading branch information
yudong80 committed Mar 10, 2019
1 parent 17e717c commit d211633
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public void run() {
.observeOn(Schedulers.newThread())
.subscribe(Log::it);

CommonUtils.sleep(1000);
CommonUtils.sleep(3000);
}

private String parseTemperature(String json) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public void run() {
source.map(this::parseCityName).subscribe(Log::it);
source.map(this::parseCountry).subscribe(Log::it);

CommonUtils.sleep(1000);
CommonUtils.sleep(3000);
}

private String parseTemperature(String json) {
Expand Down

0 comments on commit d211633

Please sign in to comment.