6033N/AWe want to put the Swift server executables in /usr/lib/swift, which means
2810N/A"executable" keyword argument to subprocess.Popen() (and allow for it to be
6033N/A--- swift-2.3.0/swift/common/manager.py.~1~ 2015-04-30 06:57:49.000000000 -0700
6033N/A+++ swift-2.3.0/swift/common/manager.py 2016-02-08 00:46:36.615826872 -0800
2810N/A re_out = subprocess.PIPE
2810N/A re_out = open(os.devnull, 'w+b')
2810N/A- proc = subprocess.Popen(args, stdout=re_out, stderr=re_err)
2810N/A+ proc = subprocess.Popen(args, stdout=re_out, stderr=re_err,
2810N/A pid_file = self.get_pid_file_name(conf_file)
2810N/A self.procs.append(proc)
6033N/A--- swift-2.3.0/test/unit/common/test_manager.py.~1~ 2015-04-30 06:57:49.000000000 -0700
6033N/A+++ swift-2.3.0/test/unit/common/test_manager.py 2016-02-08 00:45:32.431081803 -0800
4070N/A@@ -955,7 +955,7 @@ class TestServer(unittest.TestCase):
2810N/A def __init__(self, pid, args, stdout=MockProcess.NOTHING,
2810N/A- stderr=MockProcess.NOTHING):
2810N/A+ stderr=MockProcess.NOTHING, executable=None):
2810N/A self.stdout = stdout