Skip to content

Commit 5992f12

Browse files
committed
Switch default of container_scope to global
This is to be consistent with previous releases of pyxis by default. Signed-off-by: Felix Abecassis <fabecassis@nvidia.com>
1 parent 252bdca commit 5992f12

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

config.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ int pyxis_config_parse(struct plugin_config *config, int ac, char **av)
3434
strcpy(config->runtime_path, "/run/pyxis");
3535
config->remap_root = true;
3636
config->execute_entrypoint = false;
37-
config->container_scope = SCOPE_JOB;
37+
config->container_scope = SCOPE_GLOBAL;
3838

3939
for (int i = 0; i < ac; ++i) {
4040
if (strncmp("runtime_path=", av[i], 13) == 0) {

0 commit comments

Comments
 (0)