Skip to content

Commit f5aab79

Browse files
committed
Fix config banner to show effective pollerMode for NETTY_SCHEDULER
1 parent 3c7d553 commit f5aab79

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

benchmark-runner/scripts/run-benchmark.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -720,7 +720,11 @@ print_config() {
720720
log " Mode: $SERVER_MODE"
721721
log " Mockless: $SERVER_MOCKLESS"
722722
log " I/O Type: $SERVER_IO"
723-
log " Poller Mode: $SERVER_POLLER_MODE"
723+
local effective_poller="$SERVER_POLLER_MODE"
724+
if [[ -z "$effective_poller" && "$SERVER_MODE" == "NETTY_SCHEDULER" ]]; then
725+
effective_poller="3 (default for NETTY_SCHEDULER)"
726+
fi
727+
log " Poller Mode: ${effective_poller:-<JVM default>}"
724728
log " FJ Parallelism: ${SERVER_FJ_PARALLELISM:-<default>}"
725729
log " CPU Affinity: ${SERVER_CPUSET:-<none>}"
726730
log " Extra JVM Args: ${SERVER_JVM_ARGS:-<none>}"

0 commit comments

Comments
 (0)