Commit 299bf65
committed
Fix Grafana UI freezing caused by auth token rotation loop
Root cause identified from browser Network tab:
- 1040 requests in 12 seconds
- Endless /api/user/auth-tokens/rotate calls every 7-8ms
- Runaway polling loop blocking browser main thread
Solution: Disable automatic auth token rotation
- GF_AUTH_TOKEN_ROTATION_INTERVAL_MINUTES=0
This stops Grafana from continuously polling the auth token
rotation endpoint, which was causing the browser to freeze.1 parent b9e13cc commit 299bf65
1 file changed
+4
-6
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
42 | 42 | | |
43 | 43 | | |
44 | 44 | | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
45 | 49 | | |
46 | 50 | | |
47 | 51 | | |
48 | 52 | | |
49 | | - | |
50 | | - | |
51 | | - | |
52 | | - | |
53 | | - | |
54 | | - | |
55 | 53 | | |
56 | 54 | | |
57 | 55 | | |
| |||
0 commit comments