|
@@ -34,9 +34,9 @@ import java.util.stream.Collectors;
|
|
|
@Component
|
|
|
public class BuildSxRelocationListener {
|
|
|
|
|
|
- @Value("${queue.modeling.sx-relocation-pre:sx-relocation-pre}")
|
|
|
+ @Value("${queue.modeling.relocation.relocation-pre:sx-relocation-pre}")
|
|
|
private String queueModelingPre;
|
|
|
- @Value("${queue.modeling.sx-relocation-post:sx-relocation-post}")
|
|
|
+ @Value("${queue.modeling.relocation.relocation-post:sx-relocation-post}")
|
|
|
private String queueModelingPost;
|
|
|
|
|
|
@Autowired
|
|
@@ -58,7 +58,7 @@ public class BuildSxRelocationListener {
|
|
|
* @throws Exception
|
|
|
*/
|
|
|
@RabbitListener(
|
|
|
- queuesToDeclare = @Queue("${queue.modeling.sx-relocation-push:sx-relocation-push}"),
|
|
|
+ queuesToDeclare = @Queue("${queue.modeling.relocation.relocation-push:sx-relocation-push}"),
|
|
|
concurrency = "5"
|
|
|
)
|
|
|
public void push(Channel channel, Message message) throws Exception {
|
|
@@ -112,7 +112,7 @@ public class BuildSxRelocationListener {
|
|
|
* @throws Exception
|
|
|
*/
|
|
|
@RabbitListener(
|
|
|
- queuesToDeclare = @Queue("${queue.modeling.sx-relocation-pre:sx-relocation-pre}"),
|
|
|
+ queuesToDeclare = @Queue("${queue.modeling.relocation.relocation-pre:sx-relocation-pre}"),
|
|
|
concurrency = "5"
|
|
|
)
|
|
|
public void buildScenePreHandler(Channel channel, Message message) throws Exception {
|
|
@@ -144,7 +144,7 @@ public class BuildSxRelocationListener {
|
|
|
* @throws Exception
|
|
|
*/
|
|
|
@RabbitListener(
|
|
|
- queuesToDeclare = @Queue("${queue.modeling.sx-relocation-post:sx-relocation-post}"),
|
|
|
+ queuesToDeclare = @Queue("${queue.modeling.relocation.relocation-post:sx-relocation-post}"),
|
|
|
concurrency = "5"
|
|
|
)
|
|
|
public void buildScenePostHandler(Channel channel, Message message) throws Exception {
|