Sfoglia il codice sorgente

Fixed options being passed in celeryd

Ben Firshman 16 anni fa
parent
commit
1369ce2cae
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  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))