Run the following SQL against the repository to enable RabbitMQ connections 

Insert into OBJECT_TYPES(OBJECT_TYPE,OBJECT_TYPE_NAME,OBJECT_TYPE_GROUP)
Values(915,'RabbitMQ Connection',29000)

Insert into OBJECT_TYPES(OBJECT_TYPE,OBJECT_TYPE_NAME,OBJECT_TYPE_GROUP)
Values(916,'RabbitMQ Connections',29000)

INSERT INTO OBJECTS_TREE (OBJECT_ID,PARENT_ID,NAME,OBJECT_TYPE)
SelectOBJECT_ID*-8 as OBJECT_ID,
PARENT_ID,'RabbitMQ' as NAME,
915 as OBJECT_TYPE
From
OBJECTS_TREE
whereOBJECTS_TREE.OBJECT_TYPE=322

UPDATE OBJECT_TYPES
set OBJECT_TYPE_GROUP=29000 WHERE OBJECT_TYPE= '915' 

UPDATE OBJECT_TYPES
set OBJECT_TYPE_GROUP=29000 WHERE OBJECT_TYPE= '916'

Note: If you are having problems upgrading our software please let us know and we will do our best to assist you

RabbitMQ is a trademark of VMware, Inc. in the U.S. and other countries.