Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: correctly treat AuthAltParameters and AuthInfo as Slurm dictionaries #31

Merged
merged 2 commits into from
Nov 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "slurmutils"
version = "0.8.1"
version = "0.8.2"
description = "Utilities and APIs for interfacing with the Slurm workload manager."
repository = "https://github.com/charmed-hpc/slurmutils"
authors = ["Jason C. Nucciarone <[email protected]>"]
Expand Down
4 changes: 2 additions & 2 deletions slurmutils/models/option.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ class SlurmdbdConfigOptionSet(_OptionSet):
ArchiveUsage: Callback = Callback()
AuthAltTypes: Callback = CommaSeparatorCallback
AuthAltParameters: Callback = SlurmDictCallback
AuthInfo: Callback = Callback()
AuthInfo: Callback = SlurmDictCallback
AuthType: Callback = Callback()
CommitDelay: Callback = Callback()
CommunicationParameters: Callback = SlurmDictCallback
Expand Down Expand Up @@ -151,7 +151,7 @@ class SlurmConfigOptionSet(_OptionSet):
AcctGatherProfileType: Callback = Callback()
AllowSpecResourcesUsage: Callback = Callback()
AuthAltTypes: Callback = CommaSeparatorCallback
AuthAltParameters: Callback = Callback()
AuthAltParameters: Callback = SlurmDictCallback
AuthInfo: Callback = SlurmDictCallback
AuthType: Callback = Callback()
BatchStartTimeout: Callback = Callback()
Expand Down