Skip to content

Commit 3fea118

Browse files
weidongxu-microsoftjianghaolu
authored andcommitted
fix another place
1 parent b6163a1 commit 3fea118

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

azure-client-runtime/src/main/java/com/microsoft/azure/AzureClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,7 @@ public Observable<PollingState<T>> call(PollingState<T> pollingState) {
387387
return Observable.just(pollingState);
388388
} else {
389389
// initial delay
390-
return Observable.just(pollingState).delaySubscription(pollingState.delayInMilliseconds(), TimeUnit.MILLISECONDS);
390+
return Observable.just(pollingState).delaySubscription(pollingState.delayInMilliseconds(), TimeUnit.MILLISECONDS, Schedulers.immediate());
391391
}
392392
}
393393
})

0 commit comments

Comments
 (0)