From a60313141a992e994ec8c689585aae952d5d5a2b Mon Sep 17 00:00:00 2001 From: DariusIII Date: Wed, 4 Sep 2019 12:22:03 +0200 Subject: [PATCH] Add message and retry header when doing site code updates --- Changelog | 1 + app/Console/Commands/UpdateNNTmux.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Changelog b/Changelog index 3a95c2ce3..a42dd221e 100755 --- a/Changelog +++ b/Changelog @@ -1,4 +1,5 @@ 2019-09-04 DariusIII + * Chg: Add message and retry header when doing site code updates * Chg: Update tinyMCE to latest version * Chg: Update used libraries to their latest versions 2019-09-03 DariusIII diff --git a/app/Console/Commands/UpdateNNTmux.php b/app/Console/Commands/UpdateNNTmux.php index f51da318c..9b6b0f8ea 100644 --- a/app/Console/Commands/UpdateNNTmux.php +++ b/app/Console/Commands/UpdateNNTmux.php @@ -91,7 +91,7 @@ class UpdateNNTmux extends Command private function appDown(): bool { if (App::isDownForMaintenance() === false) { - $this->call('down'); + $this->call('down',['--message' => 'Doing site backend and frontend updates, we will be back shortly', '--retry' => 120]); return true; }