Fix 'satisfy' spelling errors

Change-Id: Id55a79c22029473070a67cbc4451973ce0a96655
This commit is contained in:
David Shrewsbury 2018-06-08 15:53:33 -04:00
parent b689129264
commit 7602b80c66
2 changed files with 2 additions and 2 deletions

View File

@ -487,7 +487,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: