Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
benzekrimaha committed Oct 15, 2024
1 parent a64c884 commit 991c5df
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ class LifecycleBucketProcessor {
this._producer = null;
this._kafkaBacklogMetrics = null;

this._supportedRules = formatSupportedLifecycleRules(_lcConfig);
this._supportedRules = formatSupportedLifecycleRules(lcConfig);

this._producerReady = false;
this._consumerReady = false;
Expand Down
1 change: 0 additions & 1 deletion extensions/lifecycle/util/rules.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ const { lifecycleListing: { NON_CURRENT_TYPE, CURRENT_TYPE, ORPHAN_DM_TYPE } } =

const { s3middleware } = require('arsenal');
const { scaleMsPerDay } = s3middleware.objectUtils;
const config = require('../../../lib/Config');

// Default max AWS limit is 1000 for both list objects and list object versions
const MAX_KEYS = process.env.CI === 'true' ? 3 : 1000;
Expand Down
3 changes: 1 addition & 2 deletions lib/config/configItems.joi.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@ const constants = require('../../extensions/replication/constants');
const {
authTypeAccount,
authTypeService,
authTypeAssumeRole,
supportedLifecycleRules,
authTypeAssumeRole
} = require('../constants');

const hostPortJoi = joi.object().keys({
Expand Down

0 comments on commit 991c5df

Please sign in to comment.