Skip to content
This repository has been archived by the owner on Aug 11, 2022. It is now read-only.

Commit

Permalink
changed requirements to point to new lbp_print that fixes bug in dipl…
Browse files Browse the repository at this point in the history
…omatic conversion
  • Loading branch information
jeffreycwitt committed Feb 8, 2020
1 parent b0c850b commit a62e287
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion processor.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

logger = logging.getLogger()
lbp_config.cache_dir = "cache"
redis_connection = Redis(host="redis")
redis_connection = Redis(host="localhost")
q = Queue(connection=redis_connection)


Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ gunicorn==19.9.0
isodate==0.5.4
itsdangerous==1.1.0
Jinja2==2.10.1
-e git+https://github.com/stenskjaer/lbp_print.git@master#egg=lbp_print
-e git+https://github.com/lombardpress/lbp_print.git@upstream#egg=lbp_print
-e git+https://github.com/lombardpress/lbppy.git@f272e44429fcbd3f19384471c9cfb3903100fb30#egg=lbppy
lxml==4.4.1
MarkupSafe==1.1.1
Expand Down
2 changes: 1 addition & 1 deletion worker.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

def start_worker(queues: list = ["default"]):
with Connection():
w = Worker(queues, connection=Redis(host="redis"))
w = Worker(queues, connection=Redis(host="localhost"))
w.work()


Expand Down

0 comments on commit a62e287

Please sign in to comment.