[Config] Make brokers null by default

This commit is contained in:
Diego Magdaleno 2021-07-29 09:59:42 -05:00
parent b96bed64a3
commit ee1b8c980b
No known key found for this signature in database
GPG Key ID: 48CD529B9FD561E8

View File

@ -135,7 +135,7 @@ export interface DefaultOptions {
available: Region[];
}
kafka: {
brokers: KafkaBroker[]
brokers: KafkaBroker[] | null
}
}
@ -235,9 +235,7 @@ export const DefaultOptions: DefaultOptions = {
]
},
kafka: {
brokers: [
{ ip: "localhost", port: 9092 }
]
brokers: null
}
};