Loading kinetic/greenclient.py +1 −1 Original line number Diff line number Diff line Loading @@ -121,7 +121,7 @@ class GreenClient(BaseAsync): if len(pending) >= depth: # we have to wait on something, may as well be the oldest? pending.popleft().wait() pending.append(self.put(entry.key, entry.value)) pending.append(self.put(entry.key, entry.value, synchronization=Synchronization.WRITEBACK)) for resp in pending: resp.wait() Loading Loading
kinetic/greenclient.py +1 −1 Original line number Diff line number Diff line Loading @@ -121,7 +121,7 @@ class GreenClient(BaseAsync): if len(pending) >= depth: # we have to wait on something, may as well be the oldest? pending.popleft().wait() pending.append(self.put(entry.key, entry.value)) pending.append(self.put(entry.key, entry.value, synchronization=Synchronization.WRITEBACK)) for resp in pending: resp.wait() Loading