Open Miuler opened 1 year ago
@Miuler Thanks for your report and sorry for the late response. We will investigate this issue soon, as a workaround, could you please try gradle --stop
and see whether it helps for this issue?
I'm having the same issue and am using this (somewhat hackish) workaround:
kill_running() {
local pid
pid="$(ps aux | grep -E "/azure-functions-core-tools.*/func host start" | grep -v grep | awk '{print $2}' || true)"
if [[ -n "$pid" ]]; then
echo "killing previous function run with pid $pid"
kill -9 "$pid"
fi
}
We will investigate this issue soon, as a workaround, could you please try
gradle --stop
and see whether it helps for this issue?
I'm also facing this issue. gradle --stop
actually hangs. If I kill the func
process on the side, then gradle --stop
completes.
Any news on this?
Any news on this topic?
When I cancel the
gradle azureFunctionsRun
command, gradle terminates, butfunc
continues to run, and the function continue running.build.gradle.kts