Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Add the following exchanges and queues to the Runtime properties when you want to override queues and exchanges with your owns:

Code Block
languagepowershell
titleapplication-case-engine-client.properties
blueriq.dcm.rabbitmq.exchangeName=dcmEvents
...
blueriq.dcm.rabbitmq.queueNames=dcmTasksEventsQueue
...

...

Add the following queue to the DCM Lists Service properties  when you want to override queues and exchanges with your own:

Code Block
languageyml
titleblueriq-dcm-lists.yml
blueriq:
  dcm:
    lists:
      event:
        consumer:
          rabbitmq:
            queueNames: dcmListsServiceEventsQueue
			...

...

Add the following to the DCM Maintenance App properties  when you want to override queues and exchanges with your own:

Code Block
languageyml
titleblueriq-dcm-maintenance-app.yml
blueriq:
  dcm:
    maintenance:
      app:   
        dlq:
          listener:
            rabbitmq:
              queueNames:                  
				- dcmEventsDlq
                - dcmTasksEventsDlq
                - dcmScheduledEventsDlq
                - traceDlq
                - timelineDlq
                - dcmMaintenanceEventsDlq
                - auditEventsDlq
				- dcmListsServiceEventsDlq
                ...

        case-engine:
          listener:
            rabbitmq:
              queueNames: 
                - dcmMaintenanceEventsQueue
              errorExchange: dlx.dcmMaintenanceEvents
      		  ...

...