@@ -, +, @@ https://metacpan.org/pod/Plack::Middleware::Refresh 1/ start ktd 2/ add warn to about.pl file, load page, observe no output in log :( 3/ apply patch to /etc/koha/plack.psgi 4/ restart plack 5/ add warn to about.pl file, load page, observe output in log :) --- debian/templates/plack.psgi | 3 +++ 1 file changed, 3 insertions(+) --- a/debian/templates/plack.psgi +++ a/debian/templates/plack.psgi @@ -72,6 +72,9 @@ builder { enable "ReverseProxy"; enable "Plack::Middleware::Static"; + # bz 31729, enable filesystem reload for dev plack + enable "Refresh", cooldown => 3 if ($ENV{DEV_INSTALL} ; + # + is required so Plack doesn't try to prefix Plack::Middleware:: enable "+Koha::Middleware::SetEnv"; enable "+Koha::Middleware::RealIP"; --