Skip to content

Commit

Permalink
corrected manifest alphanumeric conditions
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleOps committed Mar 19, 2024
1 parent e74aaeb commit 3b9e099
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 16 deletions.
10 changes: 5 additions & 5 deletions .env.production
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
REDIS_URL=redis://redis:6379/0
V311_VALIDATOR_URL=http://validator_service:4567
V400_VALIDATOR_URL=http://validator_service:4567
V501_VALIDATOR_URL=http://validator_service:4567
V610_VALIDATOR_URL=http://validator_service:4567
V700_BALLOT_VALIDATOR_URL=http://validator_service:4567
V311_VALIDATOR_URL=http://validator-service:4567
V400_VALIDATOR_URL=http://validator-service:4567
V501_VALIDATOR_URL=http://validator-service:4567
V610_VALIDATOR_URL=http://validator-service:4567
V700_BALLOT_VALIDATOR_URL=http://validator-service:4567
2 changes: 1 addition & 1 deletion config/nginx.background.conf
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ http {
proxy_buffering off;
proxy_cache off;

proxy_pass http://validator_service:4567/;
proxy_pass http://validator-service:4567/;
}
}
}
2 changes: 1 addition & 1 deletion config/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ http {
proxy_buffering off;
proxy_cache off;

proxy_pass http://validator_service:4567/;
proxy_pass http://validator-service:4567/;
}
}
}
4 changes: 2 additions & 2 deletions docker-compose.background.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
version: '3'
services:
validator_service:
validator-service:
image: infernocommunity/fhir-validator-service
environment:
TX_SERVER_URL: http://tx.test.hl7.org.au/fhir
Expand All @@ -10,7 +10,7 @@ services:
fhir_validator_app:
image: infernocommunity/fhir-validator-app
depends_on:
- validator_service
- validator-service
environment:
EXTERNAL_VALIDATOR_URL: http://localhost/validatorapi
VALIDATOR_BASE_PATH: /validator
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.production.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
version: '3'
services:
validator_service:
validator-service:
environment:
TX_SERVER_URL: http://tx.fhir.org
6 changes: 3 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ services:
volumes:
- ./data:/opt/inferno/data
depends_on:
- validator_service
- validator-service
worker:
build:
context: ./
Expand All @@ -15,10 +15,10 @@ services:
command: bundle exec sidekiq -r ./worker.rb
depends_on:
- redis
validator_service:
validator-service:
extends:
file: docker-compose.background.yml
service: validator_service
service: validator-service
fhir_validator_app:
extends:
file: docker-compose.background.yml
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v1
kind: Service
metadata:
name: validator_service
name: validator-service
namespace: ${namespace}
spec:
type: NodePort
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/au_core_test_kit/generator/templates/suite.rb.erb
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ module AUCoreTestKit
end

validator do
url ENV.fetch('<%= validator_env_name %>', 'http://validator_service:4567')
url ENV.fetch('<%= validator_env_name %>', 'http://validator-service:4567')
message_filters = VALIDATION_MESSAGE_FILTERS + VERSION_SPECIFIC_MESSAGE_FILTERS

exclude_message do |message|
Expand Down

0 comments on commit 3b9e099

Please sign in to comment.