Skip to content

Commit

Permalink
Add queue name and binding key
Browse files Browse the repository at this point in the history
  • Loading branch information
Sara Veldhoen committed Apr 15, 2024
1 parent 995066a commit af6a83a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions worker.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ def __init__(self, config, unit_testing=False):
logger.error("Invalid config, quitting")
sys.exit()

self.__queue_name = "QUEUE_NAME"
self.__binding_key = "#.BINDING_KEY"
self.__queue_name = "DUMMY"
self.__binding_key = "#.DUMMY"
self.__depends_on = (
list(config.DANE_DEPENDENCIES) if "DANE_DEPENDENCIES" in config else []
)
Expand Down

0 comments on commit af6a83a

Please sign in to comment.