Skip to content

Commit

Permalink
change priority queue
Browse files Browse the repository at this point in the history
  • Loading branch information
luoyuxia committed Dec 3, 2024
1 parent ca54919 commit b5990f8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
distribution: 'adopt'
- name: Build
run: mvn -T 1C -B clean install -DskipTests
- name: Test
- name: Test1
run: |
mvn -B verify -Ptest-coverage -Dmaven.test.failure.ignore=true -Dautoconfig.skip
if: always()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -575,7 +575,7 @@ public static class Builder {
public Builder() {
// reduce testing resources
clusterConf.set(ConfigOptions.NETTY_SERVER_NUM_NETWORK_THREADS, 1);
clusterConf.set(ConfigOptions.NETTY_SERVER_NUM_WORKER_THREADS, 1);
clusterConf.set(ConfigOptions.NETTY_SERVER_NUM_WORKER_THREADS, 3);
}

/** Sets the number of tablet servers. */
Expand Down
2 changes: 1 addition & 1 deletion fluss-server/src/test/resources/log4j2-test.properties
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

# Set root logger level to OFF to not flood build logs
# set manually to INFO for debugging purposes
rootLogger.level = INFO
rootLogger.level = OFF
rootLogger.appenderRef.test.ref = TestLogger

appender.testlogger.name = TestLogger
Expand Down

0 comments on commit b5990f8

Please sign in to comment.