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
Kind of a corner case, but I was testing in a container and was running as root and saw these errors:
# flux run hostname2023-03-10T16:04:11.546543Z job-manager.err[0]: jobtap: job.new: callback returned errorb93e807bb66e2023-03-10T16:04:11.606407Z job-manager.err[0]: jobtap: job.inactive-add: callback returned error
With some printf debugging, I tracked the error down to EINVAL returned from hola_list_insert() in the history plugin since int2ptr(0) returns NULL.
I'm not exactly sure what to do about it (maybe use a special value for root), and it does not seem like a critical issue, but thought I'd report it in case another container user runs across the error.
The text was updated successfully, but these errors were encountered:
Doh! Good catch. Maybe mapping root to "nobody" would be the least surprising thing to do? According to this wikipedia article, 65534 is usually the uid assigned to nobody these days.
Kind of a corner case, but I was testing in a container and was running as root and saw these errors:
With some printf debugging, I tracked the error down to
EINVAL
returned fromhola_list_insert()
in thehistory
plugin sinceint2ptr(0)
returnsNULL
.I'm not exactly sure what to do about it (maybe use a special value for root), and it does not seem like a critical issue, but thought I'd report it in case another container user runs across the error.
The text was updated successfully, but these errors were encountered: