mirror of
https://github.com/Jeuners/Logpy-AgentOne.git
synced 2026-09-15 17:56:12 +02:00
fix(telefon): Pipecat-Bootstrap aus der Projekt-venv starten
starten.sh rief dialog.pipecat_bootstrap mit System-python3 auf, dem gevent/greenswitch fehlen - der Bootstrap brach nach dem Neustart des Mac mini sofort mit ModuleNotFoundError ab, und der launchd-Watchdog konnte ihn nicht wiederbeleben. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_011csZF3rmXJSAtukDxUMFgy
This commit is contained in:
parent
3f9cfe6b4f
commit
907f511c0d
1 changed files with 3 additions and 1 deletions
|
|
@ -135,7 +135,9 @@ if [ "${status:-}" = "UP" ]; then
|
|||
if pgrep -f "[d]ialog.pipecat_bootstrap" >/dev/null; then
|
||||
echo "Pipecat-Bootstrap laeuft bereits."
|
||||
else
|
||||
nohup python3 -u -m dialog.pipecat_bootstrap >> telefon/pipecat_bootstrap.log 2>&1 &
|
||||
# Aus der Projekt-venv: greenswitch/gevent fehlen im System-python3,
|
||||
# dort bricht der Bootstrap sofort mit ModuleNotFoundError ab.
|
||||
nohup .venv/bin/python -u -m dialog.pipecat_bootstrap >> telefon/pipecat_bootstrap.log 2>&1 &
|
||||
echo "Pipecat-Bootstrap gestartet (Log: telefon/pipecat_bootstrap.log)"
|
||||
fi
|
||||
fi
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue