From c13565ea5b5f24bfcca4592c7c08afed7b937094 Mon Sep 17 00:00:00 2001 From: Lenka Segura Date: Apr 17 2023 12:34:19 +0000 Subject: Add requests-ratelimiter dependency --- diff --git a/Dockerfile b/Dockerfile index f097355..0011f8a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ RUN ansible-galaxy collection install -r ${HOME}/requirements.yml \ && chmod -R ug+rwx ${HOME}/.ansible RUN pip3.8 install --no-cache-dir --upgrade pip wheel -RUN pip3.8 install requests-kerberos +RUN pip3.8 install requests-kerberos requests-ratelimiter COPY watches.yaml ${HOME}/watches.yaml COPY roles/ ${HOME}/roles/ diff --git a/Makefile b/Makefile index 7694769..e8ff428 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ # To re-generate a bundle for another specific version without changing the standard setup, you can: # - use the VERSION as arg of the bundle target (e.g make bundle VERSION=0.0.2) # - use environment variables to overwrite this value (e.g export VERSION=0.0.2) -VERSION ?= 0.0.57 +VERSION ?= 0.0.58 # CHANNELS define the bundle channels used in the bundle. # Add a new line here if you would like to change its default config. (E.g CHANNELS = "candidate,fast,stable")