Mike Lin
Mike Lin
moved over to #819
Challenge: breaking API change to `Expr.Placeholder` which stores the sep/default/true/false options as `Dict[str, str]`
@duartetorreserick appears from this like Docker isn't available on the machine, is that plausible? ``` File "/home/erick/.local/lib/python3.8/site-packages/docker/transport/unixconn.py", line 27, in connect sock.connect(self.unix_socket) ConnectionRefusedError: [Errno 111] Connection refused ```
@giuliovn a PR is certainly welcome as outlined on [CONTRIBUTING.md](https://github.com/chanzuckerberg/miniwdl/blob/main/CONTRIBUTING.md), no need to ask. I am however working through a major life event right now, so I cannot promise to...
Linking further discussion on https://github.com/chanzuckerberg/miniwdl/pull/725#issuecomment-2692582859
I personally find this debatable at best, but this is the relevant branch which would be very easy to adjust/amend: https://github.com/chanzuckerberg/miniwdl/blob/1bc3776e65d3069c2e890fa73aee0c5e44861e69/WDL/Value.py#L535-L536
@stxue1 @vsmalladi I'm a little confused by whether the WDL spec example shown is supposed to be valid. > If a `Struct` (or `Object`) declaration is initialized using the map-literal...
@stxue1 @vsmalladi Quoting the linked wiki article, > POSIX character classes can only be used within bracket expressions. For example, [[:upper:]ab] matches the uppercase letters and lowercase "a" and "b"....
@adamnovak on defaults, miniwdl delegates the container scheduling to Docker Swarm, so it doesn't directly control how many CPUs will be scheduled concurrently. Maybe there's a way to reconfigure Docker...
`task` sub-env will be added to `container_env` in `task.py:run_local_task`. But NOTE how with `attempt` and `return_code`, it changes slightly in different phases of task execution (needs careful/specific tests) > "If...