eaglelihh commented on code in PR #3012:
URL: 
https://github.com/apache/incubator-streampark/pull/3012#discussion_r1315639970


##########
streampark-console/streampark-console-service/src/main/java/org/apache/streampark/console/base/config/AsyncExecutorPoolConfig.java:
##########
@@ -35,9 +35,11 @@ public Executor taskExecutor() {
     executor.setMaxPoolSize(20);
     executor.setQueueCapacity(100);
     executor.setKeepAliveSeconds(30);
-    executor.setThreadNamePrefix("asyncTaskExecutor-");
+    executor.setThreadNamePrefix(THREAD_NAME_PREFIX_ASYNC_TASK);

Review Comment:
   I have recovered



##########
streampark-console/streampark-console-service/src/main/java/org/apache/streampark/console/base/config/MybatisConfig.java:
##########
@@ -76,8 +76,8 @@ public PostgreSQLPrepareInterceptor 
postgreSQLPrepareInterceptor() {
   @Bean
   public MybatisPlusPropertiesCustomizer mybatisPlusPropertiesCustomizer() {
     return properties -> {
-      
properties.setTypeAliasesPackage("org.apache.streampark.console.*.entity");
-      properties.setMapperLocations(new String[] {"classpath:mapper/*/*.xml"});
+      properties.setTypeAliasesPackage(TYPE_ALIASES_PACKAGE);
+      properties.setMapperLocations(new String[] {MAPPER_LOCATION});

Review Comment:
   I have recovered



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to