Skip to content

Commit

Permalink
fix: don't use / as root path in CARP model
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredhendrickson13 committed Dec 8, 2024
1 parent 96ab4c0 commit ef2075f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ class CARP extends Model {
public function get_carp_internal(): array {
return [
'enable' => $this->is_carp_enabled(),
'maintenance_mode' => $this->is_config_enabled('/', 'virtualip_carp_maintenancemode'),
'maintenance_mode' => $this->is_config_enabled('', 'virtualip_carp_maintenancemode'),
];
}

Expand Down

0 comments on commit ef2075f

Please sign in to comment.