fix: separate docker-args outputs to avoid arg collisions

Emitting the restart policy as a `--restart` argument from a `docker-args-process-deploy` trigger exposed a latent gluing bug: proxy and builder triggers concatenated `$STDIN$output` with no separator, and the scheduler and builders appended `docker-args-process-*` output directly onto the older `docker-args-*` output, so adjacent arguments could merge into values like `--restart=on-failure:10--label`. A space is now inserted at both the trigger echo and the concatenation so arguments always stay separated.
This commit is contained in:
Jose Diaz-Gonzalez
2026-05-28 04:16:55 -04:00
parent fec872711a
commit 5d802e3cf4
14 changed files with 21 additions and 21 deletions

View File

@@ -166,7 +166,7 @@ trigger-traefik-vhosts-docker-args-process-deploy() {
done <"$proxy_labels_file_path"
fi
echo -n "$STDIN$output"
echo -n "$STDIN $output"
}
trigger-traefik-vhosts-docker-args-process-deploy "$@"