Skip to content

Commit d073592

Browse files
ci: Update anti-fraud service configuration
This commit updates the `ci.yml` workflow with new environment variables for the anti-fraud service. Key changes: - The `ANTIFRAUD_INTERNAL_PORT` and `ANTIFRAUD_EXTERNAL_PORT` have been changed to `9090`. - The `ANTIFRAUD_CACHE_MS` has been increased to `5000`. - A new `ANTIFRAUD_ADDRESS` variable has been added to provide the full service URL.
1 parent 7d2967f commit d073592

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,10 @@ jobs:
4949
POSTGRES_USERNAME=${{ secrets.POSTGRES_USER }}
5050
POSTGRES_PASSWORD=${{ secrets.POSTGRES_PASSWORD }}
5151
POSTGRES_HOST=db
52-
ANTIFRAUD_INTERNAL_PORT=8081
53-
ANTIFRAUD_EXTERNAL_PORT=8081
54-
ANTIFRAUD_CACHE_MS=1000
52+
ANTIFRAUD_INTERNAL_PORT=9090
53+
ANTIFRAUD_EXTERNAL_PORT=9090
54+
ANTIFRAUD_CACHE_MS=5000
55+
ANTIFRAUD_ADDRESS=http://antifraud:9090
5556
EOF
5657
5758
- name: Build and run Docker containers

0 commit comments

Comments
 (0)