Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 24 additions & 24 deletions .github/workflows/daily-fact.lock.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions .github/workflows/shared/mcp/mempalace.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@ steps:
> /tmp/gh-aw/mcp-logs/mempalace/server.log 2>&1 &
MCP_PID=$!

# Wait for server to start
# Wait for server to start (TCP port check avoids outbound HTTP requests)
for i in $(seq 1 10); do
if curl -sf http://127.0.0.1:8765/mcp >/dev/null 2>&1; then
if python3 -c "import socket; s=socket.socket(); s.settimeout(1); s.connect(('127.0.0.1', 8765)); s.close()" 2>/dev/null; then
echo "MemPalace MCP server started (PID $MCP_PID)"
exit 0
fi
Expand Down
Loading