@autofleet/rabbit 2.2.8 → 2.2.9-beta
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -0
- package/package.json +1 -1
- package/src/index.ts +1 -0
package/dist/index.js
CHANGED
|
@@ -136,6 +136,7 @@ class RabbitMq {
|
|
|
136
136
|
return;
|
|
137
137
|
}
|
|
138
138
|
this.creatingConnection = true;
|
|
139
|
+
logger_1.default.info('rabbit: env username', { userName: (process.env.RABBITMQ_USERNAME || 'doesnt exist') });
|
|
139
140
|
const username = process.env.RABBITMQ_USERNAME || 'guest';
|
|
140
141
|
const password = process.env.RABBITMQ_PASSWORD || 'guest';
|
|
141
142
|
const host = process.env.RABBITMQ_SERVICE_HOST || '';
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -215,6 +215,7 @@ class RabbitMq implements IAfRabbitMq {
|
|
|
215
215
|
return;
|
|
216
216
|
}
|
|
217
217
|
this.creatingConnection = true;
|
|
218
|
+
logger.info('rabbit: env username', { userName: (process.env.RABBITMQ_USERNAME || 'doesnt exist') });
|
|
218
219
|
const username: string = process.env.RABBITMQ_USERNAME || 'guest';
|
|
219
220
|
const password: string = process.env.RABBITMQ_PASSWORD || 'guest';
|
|
220
221
|
const host: string = process.env.RABBITMQ_SERVICE_HOST || '';
|