Mark Grondona
Mark Grondona
Could the problem here be that the way `flux mini run` works is 1. The `flux` command driver is executed, which searches for `flux-mini` or `flux-mini.py` in `FLUX_EXEC_PATH` 2. The...
Actually, I don't understand how this can work from Python. The `MPIR_being_debugged` symbol is in the `flux.debugged` module. The module itself is not loaded until well after `python` executable's `main()`...
Thanks @petertea!
Great points, I hadn't thought of that. What I was thinking is that tokens are simply separated by whitespace, `and`, `or`, and `not` are keywords, otherwise you have an `[operator:]args`...
Nice summary, I was currently using `-` as the shorthand to negate an entire operator expression. For good or bad `^` is currently used to negate a single property `--requires=foo,^bar`...
I was hoping to make exclusion of a set of hosts or ranks simple (akin to gmail or google search syntax) with e.g. `--requires=hosts:fluke[1,3-5]` to constrain to a hostlist or...
You make a good point. Let's keep it simple for now. I like your suggestion of negating the hostlist not the entire term.
@trws, thinking about this a little more: `hosts:fluke[1,3-5]` turns into `{"hostlist": [ "fluke[1,3-5]" ]}`, so is it a bit weird that `hosts:-fluke[1,3-5]` compiles to `{"not": [{"hostlist": [ "fluke[1,3-5]" ]}]}`? When...
I like that idea!
Yeah, we should get a separate issue open for the `flux config reload --stdin` (or should it just be `flux config load`?) option. This is the only way you can...