Skip to content

Commit

Permalink
[O2B-1415] Fix ENABLE_HOUSEKEEPING environment variable parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
martinboulais committed Dec 11, 2024
1 parent f665ae4 commit 947162d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/config/services.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const {
} = process.env ?? {};

exports.services = {
enableHousekeeping: process.env?.ENABLE_HOUSEKEEPING ?? false,
enableHousekeeping: process.env?.ENABLE_HOUSEKEEPING?.toLowerCase() === 'true',
aliEcsGui: {
url: process.env?.ALI_ECS_GUI_URL || null,
token: process.env?.ALI_ECS_GUI_TOKEN || null,
Expand Down

0 comments on commit 947162d

Please sign in to comment.