From 7cd1f0ab3b28862fcc40dd1674d667161d44c28d Mon Sep 17 00:00:00 2001 From: Scott Frederick Date: Thu, 23 May 2024 14:51:02 -0500 Subject: [PATCH] Polish JVM thread dump action --- .github/actions/print-jvm-thread-dumps/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/print-jvm-thread-dumps/action.yml b/.github/actions/print-jvm-thread-dumps/action.yml index bab22e5489..9b0905b777 100644 --- a/.github/actions/print-jvm-thread-dumps/action.yml +++ b/.github/actions/print-jvm-thread-dumps/action.yml @@ -7,7 +7,7 @@ runs: shell: bash run: | for jvm_pid in $(jps -q -J-XX:+PerfDisableSharedMem); do - jcmd $java_pid Thread.print + jcmd $jvm_pid Thread.print done - if: ${{ runner.os == 'Windows' }} shell: powershell