Skip to content

Commit

Permalink
post reviews fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
benzekrimaha committed Oct 23, 2024
1 parent a2b5caa commit 330558b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ class LifecycleBucketProcessor {
lcOptions: this._lcOptions,
circuitBreakers: this._circuitBreakers,
log: this._log,
supportedRules: this._supportedRules,
supportedRules: this._lcConfig.supportedLifecycleRules,
};
}

Expand Down
4 changes: 2 additions & 2 deletions extensions/lifecycle/tasks/LifecycleTask.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,10 +95,10 @@ class LifecycleTask extends BackbeatTask {
});

this._lifecycleUtils = new LifecycleUtils(
lpState.supportedRules,
this.supportedRules,
this._lifecycleDateTime
);
this._supportedRules = lpState.supportedRules;
this._supportedRules = this.supportedRules;
this._totalRetries = 0;
}

Expand Down

0 comments on commit 330558b

Please sign in to comment.