Remove inaccurate comment

This commit removes an inaccurate comment that got copy and pasted
over when the script was originally created. The StdOut processor from
the logstash gearman client only works in foreground mode (for obvious
reasons) and since it was the simplest example that was used as a basis
for the subunit processor. However, the subunit processor doesn't share
this limitation and can (and has been) run as a daemon in the
background.

Change-Id: I332523567d16b0994b06e278b68ffe8bcb7d9bfa
This commit is contained in:
Matthew Treinish 2016-03-01 20:51:23 -05:00
parent ad3cc21c67
commit 5d769819f5
No known key found for this signature in database
GPG Key ID: FD12A0F214C9E177
1 changed files with 0 additions and 2 deletions

View File

@ -233,8 +233,6 @@ class Server(object):
self.subunitqueue)
def setup_processor(self):
# Note this processor will not work if the process is run as a
# daemon. You must use the --foreground option.
subunit2sql_config = self.config['config']
self.processor = Subunit2SQLProcessor(self.subunitqueue,
subunit2sql_config)