Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v0.11.1 #68

Merged
merged 3 commits into from
Jan 23, 2025
Merged
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
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
Loading