Fix: RateLimit requests were not released when a streaming generation exception occurred (#11540)
This commit is contained in:
@@ -110,7 +110,7 @@ class RateLimitGenerator:
|
||||
raise StopIteration
|
||||
try:
|
||||
return next(self.generator)
|
||||
except StopIteration:
|
||||
except Exception:
|
||||
self.close()
|
||||
raise
|
||||
|
||||
|
||||
Reference in New Issue
Block a user