Made rabbitmq settings write to tempfile upon check to fix install bug

This commit is contained in:
Robb Ebright 2017-11-13 11:39:11 -05:00
parent 0dd0a443ff
commit d58468185c
2 changed files with 2 additions and 2 deletions

View file

@ -50,7 +50,6 @@ class RabbitMQSetup extends Setup {
} catch(Exception $e) {
$this->identifyRMQConnectionError();
}
return array(
"message" => self::$message,
"errors" => self::$errors
@ -63,6 +62,7 @@ class RabbitMQSetup extends Setup {
self::$_properties["user"],
self::$_properties["password"],
self::$_properties["vhost"]);
$this->writeToTemp();
return isset($conn);
}