I've just been debugging an issue with the link plugin: https://github.com/rlaneve/dokku-link/issues/3 and have narrowed the cause down to the link plugin being executed before the persisten-storage plugin. Removing the persistent-storage plugin causes the link plugin to perform as expected.
However, I also have a dokku instance running that uses both the link plugin and the persistent-storage plugin, which loads fine.
This interaction is leading me to wonder whether the persistent-storage plugin should echo out what it receives (echo "$STDIN$output"), regardless of whether it edits it or not?
I've just been debugging an issue with the
link
plugin: https://github.com/rlaneve/dokku-link/issues/3 and have narrowed the cause down to thelink
plugin being executed before thepersisten-storage
plugin. Removing thepersistent-storage
plugin causes thelink
plugin to perform as expected.However, I also have a
dokku
instance running that uses both thelink
plugin and thepersistent-storage
plugin, which loads fine.This interaction is leading me to wonder whether the
persistent-storage
plugin should echo out what it receives (echo "$STDIN$output"
), regardless of whether it edits it or not?