Skip to content

Commit d584f9a

Browse files
committed
[no-relnote] Sort feature flags
Signed-off-by: Evan Lezar <elezar@nvidia.com>
1 parent 11acbe7 commit d584f9a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

internal/config/features.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ package config
1818

1919
// features specifies a set of named features.
2020
type features struct {
21-
// DisableImexChannelCreation ensures that the implicit creation of
22-
// requested IMEX channels is skipped when invoking the nvidia-container-cli.
23-
DisableImexChannelCreation *feature `toml:"disable-imex-channel-creation,omitempty"`
2421
// AllowLDConfigFromContainer allows non-host ldconfig paths to be used.
2522
// If this feature flag is not set to 'true' only host-rooted config paths
2623
// (i.e. paths starting with an '@' are considered valid)
2724
AllowLDConfigFromContainer *feature `toml:"allow-ldconfig-from-container,omitempty"`
25+
// DisableImexChannelCreation ensures that the implicit creation of
26+
// requested IMEX channels is skipped when invoking the nvidia-container-cli.
27+
DisableImexChannelCreation *feature `toml:"disable-imex-channel-creation,omitempty"`
2828
}
2929

3030
type feature bool

0 commit comments

Comments
 (0)