After recent update (previous was 11th August), Phabricator Daemons Need Restarting config issue is apparent.
Stopping daemons removes config issue, but upon starting again config issue arises.
Any ideas how to hunt this one down?
After recent update (previous was 11th August), Phabricator Daemons Need Restarting config issue is apparent.
Stopping daemons removes config issue, but upon starting again config issue arises.
Any ideas how to hunt this one down?
Some possible causes:
You could try applying this patch to test the second theory:
diff --git a/src/infrastructure/env/PhabricatorEnv.php b/src/infrastructure/env/PhabricatorEnv.php index d5e3237..a8f4dce 100644 --- a/src/infrastructure/env/PhabricatorEnv.php +++ b/src/infrastructure/env/PhabricatorEnv.php @@ -223,6 +223,8 @@ final class PhabricatorEnv { public static function calculateEnvironmentHash() { $keys = array_keys(self::getAllConfigKeys()); + asort($keys); + $values = array(); foreach ($keys as $key) { $values[$key] = self::getEnvConfigIfExists($key);
Aaah fail. Yep the daemons and web had different phabricator_env.
Thanks for the pointers.