Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ RABBITMQ_USERNAME=guest
RABBITMQ_PASSWORD=guest

# Queue names (must match OBP-API configuration)
RABBITMQ_REQUEST_QUEUE=obp.request
RABBITMQ_REQUEST_QUEUE=obp_rpc_queue
RABBITMQ_RESPONSE_QUEUE=obp.response

# Performance tuning
Expand Down
2 changes: 1 addition & 1 deletion src/main/scala/com/tesobe/obp/adapter/config/Config.scala
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ object Config {
)

val queueConfig = QueueConfig(
requestQueue = env("RABBITMQ_REQUEST_QUEUE", "obp.request"),
requestQueue = env("RABBITMQ_REQUEST_QUEUE", "obp_rpc_queue"),
responseQueue =
env("RABBITMQ_RESPONSE_QUEUE", "obp.response"),
prefetchCount = env("RABBITMQ_PREFETCH_COUNT", "10").toInt,
Expand Down