From fda80b391b08d5654f0e0d69f8522b7eca84b674 Mon Sep 17 00:00:00 2001 From: Jason Nucciarone <40342202+NucciTheBoss@users.noreply.github.com> Date: Tue, 15 Oct 2024 20:45:26 -0400 Subject: [PATCH] chore(slurm_ops): chore(slurm_ops): use proper casing for config options in log messages MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: José Julián Espina --- lib/charms/hpc_libs/v0/slurm_ops.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/charms/hpc_libs/v0/slurm_ops.py b/lib/charms/hpc_libs/v0/slurm_ops.py index f237a82..7c114a2 100644 --- a/lib/charms/hpc_libs/v0/slurm_ops.py +++ b/lib/charms/hpc_libs/v0/slurm_ops.py @@ -482,7 +482,7 @@ def install(self) -> None: self._install_service() # Debian package postinst hook does not create a `StateSaveLocation` directory # so we make one here that is only r/w by owner. - _logger.debug("creating slurm statesavelocation directory") + _logger.debug("creating slurm `StateSaveLocation` directory") Path("/var/lib/slurm/slurm.state").mkdir(mode=0o600, exist_ok=True) self._apply_overrides()