Fix rabbitmq from failure during startup

Stagger the start times of the rabbitmq daemon so rabbitmq neither
crashes and also properly forms a cluster.  This problem exists in
the latest rabbitmq 3.5.4 available on rabbitmq.com for download.

Change-Id: Iac4186b3c3b586de38467294399c7ed9415244de
Closes-Bug: #1490780
This commit is contained in:
Steven Dake 2015-09-08 18:17:56 -07:00
parent 84535cf15a
commit 327d89bd38
2 changed files with 2 additions and 3 deletions

View File

@ -6,8 +6,6 @@
- include: start.yml
- name: Sleep while cluster starts
command: sleep 15
command: sleep 5
changed_when: False
failed_when: False
- include: start.yml

View File

@ -8,6 +8,7 @@
- { role: mariadb, tags: mariadb, when: enable_mariadb | bool }
- hosts: rabbitmq
serial: 1
roles:
- { role: rabbitmq, tags: rabbitmq, when: enable_rabbitmq | bool }