From 262cc65127baef04a4c0cb78824c202dc1ebbbb2 Mon Sep 17 00:00:00 2001 From: maverickstuder Date: Wed, 28 Aug 2024 11:19:54 +0200 Subject: [PATCH] changed queue names according to convention --- .../java/com/knecon/fforesight/llm/service/QueueNames.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/llm-service/llm-service-api/src/main/java/com/knecon/fforesight/llm/service/QueueNames.java b/llm-service/llm-service-api/src/main/java/com/knecon/fforesight/llm/service/QueueNames.java index 423b640..ac56570 100644 --- a/llm-service/llm-service-api/src/main/java/com/knecon/fforesight/llm/service/QueueNames.java +++ b/llm-service/llm-service-api/src/main/java/com/knecon/fforesight/llm/service/QueueNames.java @@ -2,10 +2,10 @@ package com.knecon.fforesight.llm.service; public class QueueNames { - public static final String LLM_NER_REQUEST_QUEUE_PREFIX = "llm_entity_request_queue"; + public static final String LLM_NER_REQUEST_QUEUE_PREFIX = "llm_entity_request"; public static final String LLM_NER_REQUEST_EXCHANGE = "llm_entity_request_exchange"; - public static final String LLM_NER_RESPONSE_QUEUE_PREFIX = "llm_entity_response_queue"; + public static final String LLM_NER_RESPONSE_QUEUE_PREFIX = "llm_entity_response"; public static final String LLM_NER_RESPONSE_EXCHANGE = "llm_entity_response_exchange"; - public static final String LLM_NER_DLQ = "llm_entity_dlq"; + public static final String LLM_NER_DLQ = "llm_entity_error"; }