Fix ReplierDispatcherTest test case in Windows platform
This commit is contained in:
parent
e0ca51d0b0
commit
bd5d158d1b
|
|
@ -67,7 +67,7 @@ class ReplierDispatcherTest {
|
|||
ReplierDispatcher dispatcher = new ReplierDispatcher();
|
||||
dispatcher.addReplier(RpcMessage.class, new RpcMessageHandler());
|
||||
dispatcher.addReplier(Data.class, (channel, msg) -> new StringMessage("hello world"));
|
||||
URL url = URL.valueOf("exchange://localhost:" + port + "?" + CommonConstants.TIMEOUT_KEY + "=60000");
|
||||
URL url = URL.valueOf("exchange://localhost:" + port + "?" + CommonConstants.TIMEOUT_KEY + "=60000&threadpool=cached");
|
||||
ApplicationModel applicationModel = ApplicationModel.defaultModel();
|
||||
ApplicationConfig applicationConfig = new ApplicationConfig("provider-app");
|
||||
applicationConfig.setExecutorManagementMode(EXECUTOR_MANAGEMENT_MODE_DEFAULT);
|
||||
|
|
|
|||
|
|
@ -0,0 +1,7 @@
|
|||
###set log levels###
|
||||
log4j.rootLogger=debug, stdout
|
||||
###output to the console###
|
||||
log4j.appender.stdout=org.apache.log4j.ConsoleAppender
|
||||
log4j.appender.stdout.Target=System.out
|
||||
log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
|
||||
log4j.appender.stdout.layout.ConversionPattern=[%d{dd/MM/yy HH:mm:ss:SSS z}] %t %5p %c{2}: %m%n
|
||||
Loading…
Reference in New Issue