fixed #IIPZF com.zhsw.microservice.common.constant.MqQueueConstant.ZIPLIN_NAME_QUEUE中ZIPLIN拼写错误,是否应该为ZIPKIN_NAME_QUEUE ZIPKIN单词拼错误

This commit is contained in:
zhaoshiqing 2018-04-02 10:11:58 +08:00
parent 477cc9efdc
commit 466e03f179
2 changed files with 2 additions and 2 deletions

View File

@ -24,5 +24,5 @@ public interface MqQueueConstant {
/**
* zipkin 队列
*/
String ZIPLIN_NAME_QUEUE = "zipkin";
String ZIPKIN_NAME_QUEUE = "zipkin";
}

View File

@ -44,6 +44,6 @@ public class RabbitConfig {
@Bean
public Queue initZipkinQueue() {
return new Queue(MqQueueConstant.ZIPLIN_NAME_QUEUE);
return new Queue(MqQueueConstant.ZIPKIN_NAME_QUEUE);
}
}