From 37ca9e569a828669db11cc0eaad7063d2c748a7c Mon Sep 17 00:00:00 2001 From: Clay Gerrard Date: Wed, 19 Jan 2011 23:43:23 -0600 Subject: more tests, still slow going --- bin/swift-init | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'bin/swift-init') diff --git a/bin/swift-init b/bin/swift-init index cd56e412b..ce72242c0 100755 --- a/bin/swift-init +++ b/bin/swift-init @@ -227,18 +227,18 @@ class SwiftInit(): return status @command - def wait(self, daemon=True, **kwargs): + def wait(self, **kwargs): """spawn server and wait for it to start """ kwargs['wait'] = True - self.start(**kwargs) + return self.start(**kwargs) @command def no_daemon(self, **kwargs): """start a server interactivly """ kwargs['daemon'] = False - self.start(**kwargs) + return self.start(**kwargs) @command def once(self, **kwargs): -- cgit v1.2.1