From 0ee7c8272e0de2d8c44fd98306d54fc290d74f38 Mon Sep 17 00:00:00 2001 From: Tim Burke Date: Thu, 21 Feb 2019 09:26:10 -0800 Subject: Make proper functions instead of assigning lambdas Change-Id: I89255f6923c649c7b9d3d36e96c09f8bc4f51a3c --- swiftclient/client.py | 4 +++- swiftclient/service.py | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) (limited to 'swiftclient') diff --git a/swiftclient/client.py b/swiftclient/client.py index 6a2b43b..4406689 100644 --- a/swiftclient/client.py +++ b/swiftclient/client.py @@ -1885,7 +1885,9 @@ class Connection(object): reset = getattr(contents, 'reset', None) if tell and seek: orig_pos = tell() - reset_func = lambda *a, **k: seek(orig_pos) + + def reset_func(*a, **kw): + seek(orig_pos) elif reset: reset_func = reset return self._retry(reset_func, put_object, container, obj, contents, diff --git a/swiftclient/service.py b/swiftclient/service.py index 71c36ec..8f3648e 100644 --- a/swiftclient/service.py +++ b/swiftclient/service.py @@ -451,7 +451,9 @@ class SwiftService(object): **_default_local_options ) process_options(self._options) - create_connection = lambda: get_conn(self._options) + + def create_connection(): + return get_conn(self._options) self.thread_manager = MultiThreadingManager( create_connection, segment_threads=self._options['segment_threads'], -- cgit v1.2.1