Skip to content

Commit

Permalink
Merge pull request #68 from alkem-io/develop
Browse files Browse the repository at this point in the history
Release v0.11.1
  • Loading branch information
valeksiev authored Jan 23, 2025
2 parents b010f4a + 7ec37fb commit 51ef4fa
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .env.default
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ RABBITMQ_HOST=localhost
RABBITMQ_USER=alkemio-admin
RABBITMQ_PASSWORD=alkemio!
RABBITMQ_PORT=5672
RABBITMQ_INGEST_SPACE_QUEUE=virtual-contributor-ingest-space
RABBITMQ_INGEST_SPACE_RESULT_QUEUE=virtual-contributor-ingest-space-result
RABBITMQ_INGEST_BODY_OF_KNOWLEDGE_QUEUE=virtual-contributor-ingest-body-of-knowledge
RABBITMQ_INGEST_BODY_OF_KNOWLEDGE_RESULT_QUEUE=virtual-contributor-ingest-body-of-knowledge-result
RABBITMQ_EVENT_BUS_EXCHANGE=event-bus

API_ENDPOINT_PRIVATE_GRAPHQL='http://localhost:3000/api/private/non-interactive/graphql'
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@alkemio/ingest-alkemio-data",
"version": "0.11.0",
"version": "0.11.1",
"description": "",
"author": "Alkemio Foundation",
"private": true,
Expand Down
8 changes: 6 additions & 2 deletions src/event.bus/connection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,12 @@ export class Connection {
user: this.getEnvValue('RABBITMQ_USER'),
password: this.getEnvValue('RABBITMQ_PASSWORD'),
port: this.getEnvValue('RABBITMQ_PORT'),
incomingQueue: this.getEnvValue('RABBITMQ_INGEST_SPACE_QUEUE'),
outgoingQueue: this.getEnvValue('RABBITMQ_INGEST_SPACE_RESULT_QUEUE'),
incomingQueue: this.getEnvValue(
'RABBITMQ_INGEST_BODY_OF_KNOWLEDGE_QUEUE'
),
outgoingQueue: this.getEnvValue(
'RABBITMQ_INGEST_BODY_OF_KNOWLEDGE_RESULT_QUEUE'
),
exchange: this.getEnvValue('RABBITMQ_EVENT_BUS_EXCHANGE'),
};
}
Expand Down

0 comments on commit 51ef4fa

Please sign in to comment.