Compare commits

..

No commits in common. "d5ee4dcb29a7c1ed3fd64d137db8c01689604de6" and "069d8979fb194d73659bd0b4a21dc1bb3c9efe93" have entirely different histories.

2 changed files with 0 additions and 26 deletions

View File

@ -124,13 +124,3 @@ async def event_stream():
)
},
)
except Exception:
return JSONResponse(
{"error": "Gitea event stream is temporarily unavailable"},
status_code=503,
headers={
"Retry-After": str(
max(1, math.ceil(EVENT_STREAM_TIMEOUT_SECONDS))
)
},
)

View File

@ -74,22 +74,6 @@ async def test_event_stream_returns_retryable_response_when_gitea_exceeds_deadli
assert cancelled.is_set()
@pytest.mark.anyio
async def test_event_stream_returns_retryable_response_when_gitea_request_fails(monkeypatch):
async def failing_activity_events():
raise ConnectionError("connection refused")
monkeypatch.setattr(main, "activity_events", failing_activity_events)
response = await main.event_stream()
assert response.status_code == 503
assert response.headers["retry-after"] == "5"
assert json.loads(response.body) == {
"error": "Gitea event stream is temporarily unavailable"
}
@pytest.mark.anyio
async def test_activity_events_fetches_feed_for_authenticated_user(monkeypatch):
paths = []