Use exception for Timeout, not return value
This commit is contained in:
parent
6de677c1df
commit
cb5ad8ced1
|
@ -86,7 +86,7 @@ class Channel:
|
||||||
while body is None:
|
while body is None:
|
||||||
remaining = self._started + self._timeout - time.time()
|
remaining = self._started + self._timeout - time.time()
|
||||||
if remaining < 0:
|
if remaining < 0:
|
||||||
return Timeout
|
raise Timeout
|
||||||
queryargs = urlencode([("appid", self._appid),
|
queryargs = urlencode([("appid", self._appid),
|
||||||
("channelid", self._channelid)])
|
("channelid", self._channelid)])
|
||||||
f = EventSourceFollower(self._relay_url+"get?%s" % queryargs,
|
f = EventSourceFollower(self._relay_url+"get?%s" % queryargs,
|
||||||
|
|
Loading…
Reference in New Issue
Block a user