Made rabbitmq settings write to tempfile upon check to fix install bug
This commit is contained in:
parent
0dd0a443ff
commit
d58468185c
|
@ -10,7 +10,7 @@
|
|||
<h3 class="form-title">RabbitMQ Settings</h3>
|
||||
<span id="helpBlock" class="help-block help-message"></span>
|
||||
<p>
|
||||
RabbitMQ is an AMQP-based messaging system used by Airtime. You should only edit these settings
|
||||
RabbitMQ is an AMQP-based messaging system used by Libretime. You should only edit these settings
|
||||
if you have changed the defaults since running the installer, or if you've opted to install RabbitMQ manually.
|
||||
</p>
|
||||
<p>
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue