Merge "Fix 'satisfy' spelling errors"

This commit is contained in:
Zuul 2018-06-11 13:42:28 +00:00 committed by Gerrit Code Review
commit e17e4c36b3
2 changed files with 2 additions and 2 deletions

View File

@ -490,7 +490,7 @@ class NodeRequestHandler(object, metaclass=abc.ABCMeta):
# us with more than max-servers.
# TODO: handle this with the quota code
if current_count >= self.pool.max_servers:
declined_reasons.append("provider cannot satisify min-ready")
declined_reasons.append("provider cannot satisfy min-ready")
if declined_reasons:
self.log.debug("Declining node request %s because %s",

View File

@ -299,7 +299,7 @@ class PoolWorker(threading.Thread):
self._assignHandlers()
else:
# If we are paused, one request handler could not
# satisify its assigned request, so give it
# satisfy its assigned request, so give it
# another shot. Unpause ourselves if it completed.
self.paused_handler.run()
if not self.paused_handler.paused: