You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With following situation as starting point (rea and red modules loaded):
$ module load --auto red
Loading red
Loading requirement: rea
$ module list
Currently Loaded Modulefiles:
1) rea 2) red
When switching from rea to reb, an unload attempt of red occurs which fails as this modulefile breaks when it is unloaded. The unload of red is tried twice: once when rea is unloaded and a second time when reb is loaded. Second attempt could be spared.
$ module switch --auto rea reb
Unloading rea
ERROR: Reload of dependent red failed
$ module list
Currently Loaded Modulefiles:
1) rea 2) red
$ module switch --auto --force rea reb
Unloading rea
WARNING: Reload of dependent red failed
Loading reb
WARNING: Reload of dependent red failed
$ module list
Currently Loaded Modulefiles:
1) red 2) reb
The text was updated successfully, but these errors were encountered:
Taking the following modulefiles as example:
With following situation as starting point (
rea
andred
modules loaded):When switching from
rea
toreb
, an unload attempt ofred
occurs which fails as this modulefile breaks when it is unloaded. The unload ofred
is tried twice: once whenrea
is unloaded and a second time whenreb
is loaded. Second attempt could be spared.The text was updated successfully, but these errors were encountered: