Skip to content

Commit

Permalink
fix backbeatAPI always expecting ingestion config
Browse files Browse the repository at this point in the history
S3C does not support ingestion

Issue: BB-620
  • Loading branch information
Kerkesni committed Nov 21, 2024
1 parent 08cd886 commit 0acc024
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/api/BackbeatAPI.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ class BackbeatAPI {
// topics
this._crrTopic = this._repConfig.topic;
this._crrStatusTopic = this._repConfig.replicationStatusTopic;
this._ingestionTopic = this._ingestionConfig.topic;
this._ingestionTopic = this._ingestionConfig?.topic;
this._metricsTopic = config.metrics.topic;

this._updateConfigSites();
Expand Down

0 comments on commit 0acc024

Please sign in to comment.