Skip to content

Commit

Permalink
fix(s3stream): fix namespace (#1977)
Browse files Browse the repository at this point in the history
Signed-off-by: SSpirits <[email protected]>
  • Loading branch information
ShadowySpirits authored Sep 2, 2024
1 parent 619138b commit dcfef9c
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,8 @@ object ElasticLogManager {
private var isEnabled = false

def init(config: KafkaConfig, clusterId: String, broker: BrokerServer = null) = {
ObjectUtils.setNamespace(Constants.DEFAULT_NAMESPACE + clusterId)
NAMESPACE = Constants.DEFAULT_NAMESPACE + clusterId
ObjectUtils.setNamespace(NAMESPACE)

val endpoint = config.elasticStreamEndpoint
if (endpoint == null) {
Expand Down

0 comments on commit dcfef9c

Please sign in to comment.