From 76ce08f8b2a4fe14ec4a8b94874daf8d42a3ec8c Mon Sep 17 00:00:00 2001 From: Michael Barton Date: Fri, 15 Oct 2010 19:15:43 +0000 Subject: [PATCH] move a paren --- swift/obj/server.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/swift/obj/server.py b/swift/obj/server.py index 4e7b52d2b9..6a15aef35d 100644 --- a/swift/obj/server.py +++ b/swift/obj/server.py @@ -259,7 +259,7 @@ class ObjectController(object): self.log_requests = conf.get('log_requests', 't')[:1].lower() == 't' self.max_upload_time = int(conf.get('max_upload_time', 86400)) self.slow = int(conf.get('slow', 0)) - self.bytes_per_sync = int(conf.get('mb_per_sync', 512) * 1024 * 1024) + self.bytes_per_sync = int(conf.get('mb_per_sync', 512)) * 1024 * 1024 def container_update(self, op, account, container, obj, headers_in, headers_out, objdevice):