Hi,
I am trying to apply my HA policy using definitions and I am getting error when I try to run my chart with the below definition file.
CRASH REPORT Process <0.242.0> with 0 neighbours exited with reason: {error,<<“Virtual host does not exist and is not specified in definitions file.“>>} in application_master:init/4 line 138
2019-09-17 19:31:53.615 [info] <0.43.0> Application rabbit exited with reason: {error,<<“Virtual host does not exist and is not specified in definitions file.“>>}
{“Kernel pid terminated”,application_controller,“{application_start_failure,rabbit,{bad_return,{{rabbit,start,[normal,[]]},{‘EXIT’,{error,<<\“Virtual host does not exist and is not specified in definitions file.\“>>}}}}}“}
Kernel pid terminated (application_controller) ({application_start_failure,rabbit,{bad_return,{{rabbit,start,[normal,[]]},{‘EXIT’,{error,<<“Virtual host does not exist and is not specified in definiti
We do not use vhost in our implementation. What is the work around for this?
definitions.json: |-
{
"policies": [
{
"pattern":"^(.*service1.*)|(.*service2.*)$",
"apply-to": "queues",
"definition":{
"ha-mode": "exactly",
"ha-params": 2,
"ha-sync-mode": "automatic",
"queue-master-locator": "min-masters"
},
"priority": 1
}
]
}