Browse Source

Fuck yeah! Huey consumer starts

 mixing click and optparse is a breeze
Oz N Tiram 9 years ago
parent
commit
7cc5ac4f90
2 changed files with 15 additions and 4 deletions
  1. 5 0
      frank/conf.py
  2. 10 4
      frank/frank.py

+ 5 - 0
frank/conf.py

@@ -1,9 +1,14 @@
 
 GITHUB_USER, GITUB_PASSWORD = "user", "secret"
 POST_KEY = '6361675'
+FRANK_DATABASE = 'frank.sqlite3'
 
 # notes about config
 # the config should be able to set destroy build or not.
 # each build is done in a directory names after the git hash
 # if the build is successful it will be removed, and if not it will
 # be conditionally removed.
+
+from huey import SqliteHuey
+
+taskq = SqliteHuey('frank', location=FRANK_DATABASE)

+ 10 - 4
frank/frank.py

@@ -111,6 +111,7 @@ import hmac
 import os
 import subprocess
 import subprocess as sp
+import logging
 import hashlib
 import yaml
 import click
@@ -329,11 +330,16 @@ def web(port, debug):
              allow_extra_args=True))
 @click.argument('worker_args', nargs=-1, type=click.UNPROCESSED)
 def worker(worker_args):
-    from huey.bin.huey_consumer import get_option_parser
+    from huey.bin.huey_consumer import (get_option_parser, Consumer,
+        setup_logger, RotatingFileHandler)
+    from conf import taskq
     parser = get_option_parser()
-    options, args = parser.parse_args(list(worker_args))
-    print options, args
-    click.echo('will start the consumer...')
+    opts, args = parser.parse_args(list(worker_args))
+    setup_logger(logging.INFO, options.logfile)
+    consumer = Consumer(taskq, 2, opts.periodic, optns.initial_delay, 
+                        opts.backoff, opts.max_delay, opts.utc, 
+                        opts.scheduler_interval, opts.periodic_task_interval)
+    consumer.run()
 
 
 @cli.command()