update compose file for changes in billing service #2187
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Below is a summarization created by an LLM (gpt-4-0125-preview). Be mindful of hallucinations and verify accuracy.
Why
The changes implement configuration adjustments and operational improvements in the Docker Compose setup for the billing platform service. Specifically, these adjustments aim at enhancing integration testing capabilities by introducing new environment variables and modifying existing commands to better support automated testing environments.
What
framework/components/dockercompose/billing_platform_service/docker-compose.yml
N_WORKFLOW_ORACLES: 4
andORGANIZATION_ID: "integration-test-aggregation-org-happy-path-odd-quorum"
to thebilling-platform-service
andpopulate_test_data
service environments. This introduces more explicit control over the number of workflow oracles and specifies an organization ID for integration tests.populate_test_data
service's command from using a complex set of flags to a simpler--linking-mode=basic
. This simplifies the data population process for testing purposes.BILLING_CLIENT_URL: "billing-platform-service:2222"
,DISABLE_AUTH: true
,DB_HOST: postgres
,DB_PORT: 5432
,DB_NAME: billing_platform
,DB_USERNAME: postgres
, andDB_PASSWORD: postgres
to thepopulate_test_data
service environment. These changes standardize database connection settings and disable authentication for easier testing setup.populate_test_data
service in favor of a more streamlined approach, improving clarity and ease of use for testing scenarios.