From b5533a843fb20636cceebee0bae694b3a00cc038 Mon Sep 17 00:00:00 2001 From: Ryan Tucker Date: Thu, 29 Sep 2011 09:09:01 -0400 Subject: [PATCH] Fix args for unlink_worker subprocess unlink_worker was not starting and the main process was dying, due to args being the queue itself, not a tuple containing the queue. --- BackupPC_archiveHost_s3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BackupPC_archiveHost_s3 b/BackupPC_archiveHost_s3 index be2febd..3b79901 100755 --- a/BackupPC_archiveHost_s3 +++ b/BackupPC_archiveHost_s3 @@ -332,7 +332,7 @@ if __name__ == '__main__': send_p.start() procs.append(send_p) - unlink_p = Process(name="unlink_worker", target=unlink_worker, args=(unlink_queue)) + unlink_p = Process(name="unlink_worker", target=unlink_worker, args=(unlink_queue,)) unlink_p.start() procs.append(unlink_p)