Group name exclusive getting appended to queue name

Options

Hello, my group name is getting appended to end of my queue while connecting, here is my .yml, Any suggestions why this is occurring ? Do I need a compatible version for this change?

  bindings:  
  #The bindings section is used to define your input and output channels. 
    read-in-0: 
      destination: Sakshi_Test
      group: exclusive
      #The presence of "group" tells the binder to follow the "consumer group" pattern; if not present the "publish-subscribe" pattern will be used.  
      #group: GROUP


  solace: 
  #The solace bindings section allows for solace specific configurations to be applied to a channel. A common example is adding topic subscriptions to a queue as shown below. 
    bindings: 
      read-in-0: 
        consumer: 
          queueAdditionalSubscriptions: Sakshi/test
          queue-access-type: 1
          queueNamePrefix: ""
          useFamiliarityInQueueName: false
          useDestinationEncodingInQueueName: false
          useGroupNameInQueueName: false
          autoBindErrorQueue: false
          provisionDurableQueue: false
          provisionSubscriptionsToDurableQueue: false

Answers