Skip to content

Commit

Permalink
Merge pull request #23 from Geek-sasaeng/tomas
Browse files Browse the repository at this point in the history
#16 fix: 큐 durable 속성 false로 수정
  • Loading branch information
xhaktmchl authored Nov 7, 2022
2 parents 36b2753 + a55e747 commit 115923f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public class PartyChattingQueue {

public PartyChattingQueue(RabbitTemplate rabbitTemplate ) {
this.rabbitTemplate = rabbitTemplate;
this.queue = new Queue(QUEUE_NAME, true); // 큐 생성
this.queue = new Queue(QUEUE_NAME, false); // 큐 생성
this.topicExchange = new TopicExchange(EXCHANGE_NAME); // exchange 생성
}

Expand Down

0 comments on commit 115923f

Please sign in to comment.