fix: allow internal RabbitMQ transport on private network

هذا الالتزام موجود في:
boutmoun123
2026-08-06 17:06:28 +03:00
الأصل 9385f0f399
التزام bcf1a95fc5

عرض الملف

@@ -1,4 +1,4 @@
import { readFileSync } from 'fs'; import { readFileSync } from 'fs';
export interface RabbitConfigSource { export interface RabbitConfigSource {
get(key: string): string | undefined; get(key: string): string | undefined;
@@ -93,3 +93,5 @@ export function resolveRabbitMqConfig(
export function processEnvSource(): RabbitConfigSource { export function processEnvSource(): RabbitConfigSource {
return { get: (key) => process.env[key] }; return { get: (key) => process.env[key] };
} }