Skip to content

Commit

Permalink
force validation against 1.4.1 rather than self-reported version
Browse files Browse the repository at this point in the history
  • Loading branch information
edeutsch committed Jul 6, 2023
1 parent dfafe3e commit 063d19b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions code/ARAX/ResponseCache/response_cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -413,8 +413,8 @@ def get_response(self, response_id):
#### Perform a validation on it
enable_validation = True
schema_version = trapi_version
if 'schema_version' in envelope:
schema_version = envelope['schema_version']
#if 'schema_version' in envelope:
# schema_version = envelope['schema_version']
try:
if enable_validation:

Expand Down Expand Up @@ -643,8 +643,8 @@ def get_response(self, response_id):
#### Perform a validation on it
enable_validation = True
schema_version = trapi_version
if 'schema_version' in envelope:
schema_version = envelope['schema_version']
#if 'schema_version' in envelope:
# schema_version = envelope['schema_version']
try:
if enable_validation:

Expand Down

0 comments on commit 063d19b

Please sign in to comment.