Skip to content

Commit

Permalink
tests: fix recovation new variable
Browse files Browse the repository at this point in the history
Signed-off-by: Allain Magyar <allain.magyar@iohk.io>
  • Loading branch information
amagyar-iohk committed Mar 15, 2024
1 parent 76300e2 commit 8b4c825
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ pollux {
awaitConnectionThreads = ${?POLLUX_DB_AWAIT_CONNECTION_THREADS}
}
statusListRegistry {
publicEndpointUrl = "http://localhost:8085"
# defaults to the exposed AGENT_HTTP_PORT port
publicEndpointUrl = "http://localhost:"${?AGENT_HTTP_PORT}
publicEndpointUrl = ${?POLLUX_STATUS_LIST_REGISTRY_PUBLIC_URL}
}
issueBgJobRecordsLimit = 25
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ data class Agent(
"KEYCLOAK_REALM" to (keycloak?.realm ?: ""),
"KEYCLOAK_CLIENT_ID" to (keycloak?.clientId ?: ""),
"KEYCLOAK_CLIENT_SECRET" to (keycloak?.clientSecret ?: ""),
"POLLUX_STATUS_LIST_REGISTRY_PUBLIC_URL" to "http://host.docker.internal:$httpPort"
)

// setup token authentication
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ services:
AGENT_HTTP_PORT:
DIDCOMM_SERVICE_URL:
REST_SERVICE_URL:
POLLUX_STATUS_LIST_REGISTRY_PUBLIC_URL:
API_KEY_ENABLED:
# Secret storage configuration
SECRET_STORAGE_BACKEND:
Expand Down

0 comments on commit 8b4c825

Please sign in to comment.