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
Is your feature request related to a problem? Please describe.
When the value of a builtin argument is set by a custom map YAML file, the description is not shown in the log.
For example, when using the original value and description of tmpdir, the log file says:
0:00:00 DEB - argument: tmpdir=data/tmp (temp directory)
When changing the value of tmpdir,
args:
tmpdir: "/tmp"
the log file says:
0:00:00 DEB - argument: tmpdir=/tmp (no description provided)
It is also possible to set any description for the built argument. For example,
args:
tmpdir:
description: Toronto Motorsports Park direction
default: "/tmp"
will produce this log line:
0:00:00 DEB - argument: tmpdir=/tmp (Toronto Motorsports Park direction)
Describe the solution you'd like
I'd like the description of builtin arguments to be kept regardless of existence or non-existence of a description: key in their override in the custom map YAML.
In both examples above, I would expect the log file to say:
0:00:00 DEB - argument: tmpdir=/tmp (temp directory)
The text was updated successfully, but these errors were encountered:
zstadler
changed the title
[FEATURE] custom map: Keep descxription of builtin args
[FEATURE] custom map: Keep descriptions of builtin arguments
Nov 15, 2024
Is your feature request related to a problem? Please describe.
When the value of a builtin argument is set by a custom map YAML file, the description is not shown in the log.
For example, when using the original value and description of
tmpdir
, the log file says:When changing the value of
tmpdir
,the log file says:
It is also possible to set any description for the built argument. For example,
will produce this log line:
Describe the solution you'd like
I'd like the description of builtin arguments to be kept regardless of existence or non-existence of a
description:
key in their override in the custom map YAML.In both examples above, I would expect the log file to say:
The text was updated successfully, but these errors were encountered: