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
On recent versions of flux, the --signal option, when used, causes jobs to abort immediately with an error about fetching the job expiration:
$ flux run --signal=USR1 hostname1.671s: flux-shell[0]: ERROR: signal: unable to get job expiration: No such file or directory1.671s: flux-shell[0]: ERROR: plugin 'signal': shell.init failed1.677s: flux-shell[0]: FATAL: shell_init: No such file or directory1.678s: job.exception type=exec severity=0 shell_init: No such file or directory
Somehow the tests in the testsuite are still working.
The text was updated successfully, but these errors were encountered:
Problem: The shell signal plugin doesn't work with Fluxion because
it expects a float value for expiration in R and Fluxion encodes
an integer.
Update the format specifier in the signal plugin's use of json_unpack
on R to use `s:F` instead of `s:f` so that the plugin works with
Fluxion.
Fixesflux-framework#6521
On recent versions of flux, the
--signal
option, when used, causes jobs to abort immediately with an error about fetching the job expiration:Somehow the tests in the testsuite are still working.
The text was updated successfully, but these errors were encountered: