We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6119ccd commit c5b5638Copy full SHA for c5b5638
.github/workflows/e2e.yml
@@ -64,7 +64,12 @@ jobs:
64
65
- name: Start MCP server in background
66
if: matrix.transport != 'stdio'
67
- run: nohup ./dist/mcp-grafana -t ${{ matrix.transport }} > mcp.log 2>&1 &
+ run: |
68
+ nohup ./dist/mcp-grafana -t ${{ matrix.transport }} > mcp.log 2>&1 &
69
+ sleep 2 # Give server time to start and create log file
70
+ if [ ! -f mcp.log ]; then
71
+ echo "Warning: mcp.log was not created. Server may have failed to start."
72
+ fi
73
74
- name: Run Python e2e tests
75
env:
@@ -76,4 +81,4 @@ jobs:
76
81
77
82
- if: failure() && matrix.transport != 'stdio'
78
83
name: Print MCP logs
79
- run: cat mcp.log
84
+ run: cat mcp.log 2>/dev/null || echo "No log file found (mcp.log)"
0 commit comments