We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e9b1514 + 7f8866a commit 837cac1Copy full SHA for 837cac1
e2e_batch/constants.py
@@ -7,7 +7,12 @@
7
logger.info(f"Environment : {env_value}")
8
SOURCE_BUCKET = f"immunisation-batch-{env_value}-data-sources"
9
INPUT_PREFIX = ""
10
-ACK_BUCKET = "immunisation-batch-internal-dev-data-destinations"
+ACK_BUCKET = (
11
+ "immunisation-batch-ref-data-destinations"
12
+ if env_value == "ref"
13
+ else "immunisation-batch-internal-dev-data-destinations"
14
+)
15
+
16
FORWARDEDFILE_PREFIX = "forwardedFile/"
17
PRE_VALIDATION_ERROR = "Validation errors: doseQuantity.value must be a number"
18
POST_VALIDATION_ERROR = "Validation errors: contained[?(@.resourceType=='Patient')].name[0].given is a mandatory field"
0 commit comments