Explorar el Código

Fixed options being passed in celeryd

Ben Firshman hace 16 años
padre
commit
1369ce2cae
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      bin/celeryd

+ 1 - 1
bin/celeryd

@@ -4,4 +4,4 @@ from celery.bin.celeryd import run_worker, parse_options
 
 if __name__ == "__main__":
     options = parse_options(sys.argv[1:])
-    run_worker(**options)
+    run_worker(**vars(options))