Fix typo in QueueSource's error message. (#26509)

This commit is contained in:
kerr 2019-03-14 18:20:31 +08:00 committed by Arnout Engelen
parent 48a43e1e74
commit 0646d2d36a

View file

@ -95,7 +95,7 @@ import scala.concurrent.{ Future, Promise }
case Some(_) =>
offer.promise.failure(
new IllegalStateException(
"You have to wait for previous offer to be resolved to send another request"))
"You have to wait for the previous offer to be resolved to send another request"))
case None =>
pendingOffer = Some(offer)
}