Skip to content

fix(streaming): flush answer tail and sources on any stream exit - #749

Merged
Ahmath-Gadji merged 6 commits into
developfrom
fix/715-stream-flush-without-done
Jul 22, 2026
Merged

fix(streaming): flush answer tail and sources on any stream exit#749
Ahmath-Gadji merged 6 commits into
developfrom
fix/715-stream-flush-without-done

Conversation

@Ahmath-Gadji

@Ahmath-Gadji Ahmath-Gadji commented Jul 21, 2026

Copy link
Copy Markdown
Collaborator

Summary

  • Closes Streaming: upstream close without [DONE] drops the answer tail and all extra.sources, with no error #715: an upstream stream that ends without data: [DONE] (timeout, proxy drop, worker restart) silently dropped the buffered answer tail and all of extra.sources, with no error surfaced.
  • stream_with_source_filtering now performs the terminal flush (tail content + extra.sources) in a single post-loop block that runs whether the loop exits via [DONE] or the upstream connection simply closing, instead of only inside the data: [DONE] branch.
  • The generator always emits a downstream data: [DONE], even if upstream never sent one, so clients (e.g. the OpenAI SDK) don't hang waiting for stream termination.
  • When the stream ended without [DONE], the final chunk's extra now includes "truncated": true so a silently-truncated answer is distinguishable from a normal completion instead of looking indistinguishable from a clean one.

Test plan

  • Added regression tests in tests/unit/core/utils/test_source_filtering.py::TestStreamClosedWithoutDone covering: tail/sources still flushed without [DONE], truncated flag set when [DONE] is missing, and no truncated flag on a normal [DONE]-terminated stream.
  • uv run pytest tests/unit/core/utils/test_source_filtering.py — 42 passed.
  • uv run pytest tests/unit/ — 1888 passed.
  • uv run ruff check / uv run ruff format --check on changed files.

🤖 Generated with Claude Code

Summary by CodeRabbit

  • Bug Fixes

    • Ensures the streaming terminal “tail flush” runs exactly once across all upstream termination paths (clean [DONE], upstream close without [DONE], and mid-stream exceptions).
    • Preserves buffered answer tail and emits consistent final completion signals so clients don’t hang.
    • Filters and salvages cited sources from buffered output; sets extra.truncated and warning behavior based on whether termination was clean.
  • Tests

    • Expanded SSE regression coverage for combined content+finish_reason, role-only preamble closes, missing [DONE], upstream exceptions, and disconnect behavior.

@coderabbitai

coderabbitai Bot commented Jul 21, 2026

Copy link
Copy Markdown

Review Change Stack

Note

Reviews paused

It looks like this branch is under active development. To avoid overwhelming you with review comments due to an influx of new commits, CodeRabbit has automatically paused this review. You can configure this behavior by changing the reviews.auto_review.auto_pause_after_reviewed_commits setting.

Use the following commands to manage reviews:

  • @coderabbitai resume to resume automatic reviews.
  • @coderabbitai review to trigger a single review.

Use the checkboxes below for quick actions:

  • ▶️ Resume reviews
  • 🔍 Trigger review

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro

Run ID: 917cc039-211c-486d-aebe-e0dfd2d44f92

📥 Commits

Reviewing files that changed from the base of the PR and between 55a27d9 and 6ce8bac.

📒 Files selected for processing (2)
  • openrag/core/utils/source_filtering.py
  • tests/unit/core/utils/test_source_filtering.py

📝 Walkthrough

Walkthrough

The SSE source-filtering stream now performs one terminal flush for clean completion, upstream closure, and mid-stream errors. It preserves buffered content and filtered sources, marks unclean termination as truncated, closes upstream iterators, and always emits a downstream [DONE].

Changes

Source filtering stream finalization

Layer / File(s) Summary
Stream state and termination tracking
openrag/core/utils/source_filtering.py
The stream tracks clean completion, upstream errors, reusable chunk templates, and iterator cleanup while continuing to process streamed content.
Unified tail and finish emission
openrag/core/utils/source_filtering.py
Post-loop handling extracts citations, filters sources, marks truncated streams, emits buffered content and finish metadata, and always sends data: [DONE].
Termination behavior regression coverage
tests/unit/core/utils/test_source_filtering.py
Tests cover final-token preservation, iterator closure, incomplete streams, preamble-only input, mid-stream exceptions, cancellation, and early failures.

Estimated code review effort: 4 (Complex) | ~45 minutes

Sequence Diagram(s)

sequenceDiagram
  participant Upstream as Upstream SSE stream
  participant Filtering as stream_with_source_filtering
  participant Client as Downstream client
  Upstream->>Filtering: SSE content and optional data: [DONE]
  Filtering->>Filtering: Capture termination and flush buffered tail
  Filtering->>Client: Tail content and filtered extra.sources
  Filtering->>Client: Finish metadata with truncated status
  Filtering->>Client: data: [DONE]
Loading

Possibly related PRs

  • linagora/openrag#462: Updates the same stream finalization path for tail emission and finish_reason handling.
🚥 Pre-merge checks | ✅ 4 | ❌ 1

❌ Failed checks (1 warning)

Check name Status Explanation Resolution
Docstring Coverage ⚠️ Warning Docstring coverage is 41.67% which is insufficient. The required threshold is 80.00%. Write docstrings for the functions missing them to satisfy the coverage threshold.
✅ Passed checks (4 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title clearly matches the main fix: flushing the answer tail and sources when a stream exits, not just on [DONE].
Linked Issues check ✅ Passed The changes address #715 by flushing buffered tails and sources on non-[DONE] exits, marking truncation, and still emitting downstream [DONE].
Out of Scope Changes check ✅ Passed The added behavior and tests stay focused on streaming termination, truncation handling, and source preservation; no unrelated scope is evident.
✨ Finishing Touches
📝 Generate docstrings
  • Create stacked PR
  • Commit on current branch
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch fix/715-stream-flush-without-done

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

@aditykris aditykris left a comment

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  1. The truncated flag can silently disappear in a narrow edge case. I reproduced this directly: if the upstream connection ends before any chunk with content or a finish_reason ever arrives (e.g. only a bare role-preamble chunk, then disconnect), chunk_template stays None. Both the tail-chunk and finish-chunk blocks are gated on if chunk_template:, so neither ever fires the client gets data: [DONE] with no extra.truncated anywhere, even though the server logged the warning internally. It's a narrow case (needs a disconnect before the very first content token), and the client at least doesn't hang, but the "distinguishable from a clean completion" guarantee the PR advertises doesn't hold here.

  2. More significant — real timeouts/connection drops likely bypass this fix entirely. I checked how llm_stream actually terminates on a network problem: both #vllm_client.py:161 and ollama_client.py:112 wrap the streaming loop in try/except httpx.ConnectError / except httpx.TimeoutException, re-raising as InferenceConnectionError/InferenceTimeoutError. I confirmed with a direct repro that when the upstream generator raises mid-iteration (rather than ending cleanly), the exception propagates straight out of stream_with_source_filtering the new post-loop flush code never runs, because Python doesn't execute the code after a for loop when the loop raises. That exception is instead caught by chat.py's existing except OpenRAGError / except Exception handlers, which yield a generic _make_sse_error(...) chunk the buffered answer tail and sources are lost there too, just as before this PR, only now replaced by an error message instead of a clean tail.

Since the PR explicitly names "timeout" as one of the three root causes of #715, and a mid-stream read timeout is exactly what gets converted to InferenceTimeoutError in the existing client code, this fix likely does not address that particular named cause only the flavor of disconnect where the transport ends with a bare EOF and no distinguishable HTTP-level error (plausible for "proxy drop" / some "worker restart" cases, where the connection just closes without httpx raising). Worth confirming against whatever telemetry/repro originally motivated #715 — if it was specifically an httpx timeout, this PR may not close the loop on it.

Ahmath-Gadji added a commit that referenced this pull request Jul 22, 2026
…nly close

Address review on #749:

- A real read timeout / connection drop surfaces as the upstream generator
  *raising* mid-iteration (InferenceTimeoutError / InferenceConnectionError),
  not a clean close, so the post-loop flush was skipped entirely and the
  buffered answer tail + sources were lost — the exact 'timeout' cause named
  in #715. Wrap the loop in try/except: CancelledError/GeneratorExit still
  propagate (client-disconnect semantics); any other error falls through to
  the flush so the partial answer is delivered with extra.truncated=true. If
  nothing was ever streamed the error is re-raised so the router surfaces the
  real failure instead of a silent empty [DONE].

- When the stream died before any content/finish chunk (e.g. only a role
  preamble), chunk_template stayed None and neither flush block fired, so the
  truncated flag never reached the client. Track a last_chunk fallback and
  template the flush off (chunk_template or last_chunk) so a preamble-only
  stream is still flagged truncated.

Adds regression tests for all three paths.
@Ahmath-Gadji

Copy link
Copy Markdown
Collaborator Author

@aditykris thanks — both are spot-on. Fixed in 5869529.

2 (the significant one — mid-stream raise bypasses the flush): confirmed. A read timeout / connection drop surfaces as the upstream generator raising mid-iteration (InferenceTimeoutError / InferenceConnectionError from the vLLM/Ollama clients), so control unwinds straight past the post-loop flush and the buffered tail + sources were lost — exactly the "timeout" cause named in #715. The loop is now wrapped in try/except:

  • asyncio.CancelledError / GeneratorExit still propagate untouched, so the router's client-disconnect handling is unchanged.
  • any other error is captured and we fall through to the same flush, delivering the partial answer with extra.truncated = true.
  • if nothing was ever streamed (no template to build a chunk from), the error is re-raised so chat.py surfaces the real failure via _make_sse_error instead of a silent, clean-looking empty [DONE].

1 (truncated flag disappears when chunk_template is None): confirmed too — a preamble-only close left both flush blocks gated out, so [DONE] went out with no truncated. Now tracking a last_chunk fallback (any chunk with a usable choices[0]) and templating the flush off chunk_template or last_chunk, so a preamble-only stream still emits a finish chunk carrying truncated: true. The tail block is naturally a no-op there since there's no buffered content.

Regression tests added for all three paths (test_preamble_only_close_still_flags_truncated, test_upstream_raises_after_content_flushes_tail_and_sources, test_upstream_raises_before_any_chunk_reraises). Full unit suite green (1908 passed).

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In `@openrag/core/utils/source_filtering.py`:
- Around line 143-148: Update the finish_reason/content handling in the
streaming filtering logic so content is appended to pending even when
finish_reason is also present, preserving the terminal chunk’s final token.
Ensure chunk_template and last_finish_reason behavior remains unchanged.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro

Run ID: 4cfeb61a-8be2-44fd-b37b-fd31c28476da

📥 Commits

Reviewing files that changed from the base of the PR and between 6b79b9b and 5869529.

📒 Files selected for processing (2)
  • openrag/core/utils/source_filtering.py
  • tests/unit/core/utils/test_source_filtering.py

Comment thread openrag/core/utils/source_filtering.py
Ahmath-Gadji added a commit that referenced this pull request Jul 22, 2026
…nly close

Address review on #749:

- A real read timeout / connection drop surfaces as the upstream generator
  *raising* mid-iteration (InferenceTimeoutError / InferenceConnectionError),
  not a clean close, so the post-loop flush was skipped entirely and the
  buffered answer tail + sources were lost — the exact 'timeout' cause named
  in #715. Wrap the loop in try/except: CancelledError/GeneratorExit still
  propagate (client-disconnect semantics); any other error falls through to
  the flush so the partial answer is delivered with extra.truncated=true. If
  nothing was ever streamed the error is re-raised so the router surfaces the
  real failure instead of a silent empty [DONE].

- When the stream died before any content/finish chunk (e.g. only a role
  preamble), chunk_template stayed None and neither flush block fired, so the
  truncated flag never reached the client. Track a last_chunk fallback and
  template the flush off (chunk_template or last_chunk) so a preamble-only
  stream is still flagged truncated.

Adds regression tests for all three paths.
@Ahmath-Gadji
Ahmath-Gadji force-pushed the fix/715-stream-flush-without-done branch from 5869529 to c9e6b27 Compare July 22, 2026 08:23
Comment thread openrag/core/utils/source_filtering.py
Ahmath-Gadji added a commit that referenced this pull request Jul 22, 2026
… a chunk

Some OpenAI-compatible providers (and litellm passthroughs) pack the last
token and the terminal finish_reason into the same chunk. The loop gated
content on `elif content` after `if finish_reason`, so that final token was
silently dropped (e.g. `Hello ` + a final `world` chunk yielded only
`Hello`). Handle content and finish_reason independently: always append
content to the buffer, and record finish_reason separately. A finish-only
chunk is still deferred to the terminal flush so it can carry extra.sources.

Reported by @hedhoud and CodeRabbit on #749. Adds a regression test.
Ahmath-Gadji added a commit that referenced this pull request Jul 22, 2026
… a chunk

Some OpenAI-compatible providers (and litellm passthroughs) pack the last
token and the terminal finish_reason into the same chunk. The loop gated
content on `elif content` after `if finish_reason`, so that final token was
silently dropped (e.g. `Hello ` + a final `world` chunk yielded only
`Hello`). Handle content and finish_reason independently: always append
content to the buffer, and record finish_reason separately. A finish-only
chunk is still deferred to the terminal flush so it can carry extra.sources.

Reported by @hedhoud and CodeRabbit on #749. Adds a regression test.
@Ahmath-Gadji
Ahmath-Gadji force-pushed the fix/715-stream-flush-without-done branch from 0dd35e9 to e937f62 Compare July 22, 2026 08:54
Comment thread openrag/core/utils/source_filtering.py
Ahmath-Gadji added a commit that referenced this pull request Jul 22, 2026
…connection

Breaking out of the `async for` on `data: [DONE]` leaves the vLLM/Ollama
`stream_chat` generator suspended inside its `async with response`, so the
pooled httpx connection stays checked out until GC (an `async for` does not
close its iterator on break — unlike `with`). Under concurrent chat traffic
that holds connections longer than necessary and can exhaust the pool.

Close `llm_stream` in a `finally` (awaiting is safe there — only yielding
during teardown is forbidden) so the connection is released promptly on every
exit path. The getattr guard tolerates non-generator iterables (e.g. tests).

Reported by @hedhoud on #749. Regression test added: it holds a reference to
the upstream generator so a pass can only mean an explicit aclose() ran.
hedhoud
hedhoud previously approved these changes Jul 22, 2026

@hedhoud hedhoud left a comment

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM. The missing-[DONE], mid-stream error, final-token, and upstream cleanup paths are now covered. The focused tests and CI are green.

Ahmath-Gadji added a commit that referenced this pull request Jul 22, 2026
…nly close

Address review on #749:

- A real read timeout / connection drop surfaces as the upstream generator
  *raising* mid-iteration (InferenceTimeoutError / InferenceConnectionError),
  not a clean close, so the post-loop flush was skipped entirely and the
  buffered answer tail + sources were lost — the exact 'timeout' cause named
  in #715. Wrap the loop in try/except: CancelledError/GeneratorExit still
  propagate (client-disconnect semantics); any other error falls through to
  the flush so the partial answer is delivered with extra.truncated=true. If
  nothing was ever streamed the error is re-raised so the router surfaces the
  real failure instead of a silent empty [DONE].

- When the stream died before any content/finish chunk (e.g. only a role
  preamble), chunk_template stayed None and neither flush block fired, so the
  truncated flag never reached the client. Track a last_chunk fallback and
  template the flush off (chunk_template or last_chunk) so a preamble-only
  stream is still flagged truncated.

Adds regression tests for all three paths.
Ahmath-Gadji added a commit that referenced this pull request Jul 22, 2026
… a chunk

Some OpenAI-compatible providers (and litellm passthroughs) pack the last
token and the terminal finish_reason into the same chunk. The loop gated
content on `elif content` after `if finish_reason`, so that final token was
silently dropped (e.g. `Hello ` + a final `world` chunk yielded only
`Hello`). Handle content and finish_reason independently: always append
content to the buffer, and record finish_reason separately. A finish-only
chunk is still deferred to the terminal flush so it can carry extra.sources.

Reported by @hedhoud and CodeRabbit on #749. Adds a regression test.
Ahmath-Gadji added a commit that referenced this pull request Jul 22, 2026
…connection

Breaking out of the `async for` on `data: [DONE]` leaves the vLLM/Ollama
`stream_chat` generator suspended inside its `async with response`, so the
pooled httpx connection stays checked out until GC (an `async for` does not
close its iterator on break — unlike `with`). Under concurrent chat traffic
that holds connections longer than necessary and can exhaust the pool.

Close `llm_stream` in a `finally` (awaiting is safe there — only yielding
during teardown is forbidden) so the connection is released promptly on every
exit path. The getattr guard tolerates non-generator iterables (e.g. tests).

Reported by @hedhoud on #749. Regression test added: it holds a reference to
the upstream generator so a pass can only mean an explicit aclose() ran.
@Ahmath-Gadji
Ahmath-Gadji force-pushed the fix/715-stream-flush-without-done branch from 90d132b to 86c3f46 Compare July 22, 2026 09:44

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In `@openrag/core/utils/source_filtering.py`:
- Around line 158-175: Clear finish_reason from the choice emitted by the
intermediate content path in the source-filtering loop, matching the existing
protection used for tail chunks. Update the choice construction around
_strip_sources_tags and emitted_len so intermediate content chunks cannot appear
terminal, while preserving the emitted delta content and subsequent finish
handling.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro

Run ID: 14fb8c84-c387-4b30-a948-7c5b2151cb53

📥 Commits

Reviewing files that changed from the base of the PR and between 90d132b and 86c3f46.

📒 Files selected for processing (2)
  • openrag/core/utils/source_filtering.py
  • tests/unit/core/utils/test_source_filtering.py

Comment thread openrag/core/utils/source_filtering.py
Ahmath-Gadji added a commit that referenced this pull request Jul 22, 2026
The mid-stream emit path built its chunk with {**choice, ...}, inheriting
finish_reason from the source chunk. Once content is handled independently
of finish_reason, a provider that packs the last token + finish_reason into
one chunk can hit this path (when pending has overflowed buffer_size) and
emit a *mid-stream* content chunk carrying finish_reason='stop'. A spec
client treats that as terminal, drops the delta, and ignores the tail/finish
chunks — truncating a long answer. Clear finish_reason on the emitted chunk,
the same guard the terminal tail chunk already applies.

Reported by CodeRabbit on #749. Regression test added (fails without the fix).
Ahmath-Gadji and others added 6 commits July 22, 2026 15:01
- Move the terminal flush (tail content + extra.sources) out of the
  data: [DONE] branch into a post-loop block that runs whether the
  loop exits via [DONE] or the upstream connection simply closes.
- Always emit a downstream data: [DONE] so clients don't hang when
  upstream never sent one.
- Flag extra.truncated=true when the stream ended without [DONE], so
  a silently truncated answer is distinguishable from a normal one.

Fixes #715

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
…nly close

Address review on #749:

- A real read timeout / connection drop surfaces as the upstream generator
  *raising* mid-iteration (InferenceTimeoutError / InferenceConnectionError),
  not a clean close, so the post-loop flush was skipped entirely and the
  buffered answer tail + sources were lost — the exact 'timeout' cause named
  in #715. Wrap the loop in try/except: CancelledError/GeneratorExit still
  propagate (client-disconnect semantics); any other error falls through to
  the flush so the partial answer is delivered with extra.truncated=true. If
  nothing was ever streamed the error is re-raised so the router surfaces the
  real failure instead of a silent empty [DONE].

- When the stream died before any content/finish chunk (e.g. only a role
  preamble), chunk_template stayed None and neither flush block fired, so the
  truncated flag never reached the client. Track a last_chunk fallback and
  template the flush off (chunk_template or last_chunk) so a preamble-only
  stream is still flagged truncated.

Adds regression tests for all three paths.
Emit a single, visible `Answer truncated` warning at the point the
`truncated` flag is set — with the cause (upstream error vs. connection
closed), model, delivered length and source count folded into the message
so the context actually renders (the previous 'flushing buffered tail'
warnings passed kwargs with no placeholders, so nothing showed). The
no-content error path keeps its own distinct log before re-raising.
… a chunk

Some OpenAI-compatible providers (and litellm passthroughs) pack the last
token and the terminal finish_reason into the same chunk. The loop gated
content on `elif content` after `if finish_reason`, so that final token was
silently dropped (e.g. `Hello ` + a final `world` chunk yielded only
`Hello`). Handle content and finish_reason independently: always append
content to the buffer, and record finish_reason separately. A finish-only
chunk is still deferred to the terminal flush so it can carry extra.sources.

Reported by @hedhoud and CodeRabbit on #749. Adds a regression test.
…connection

Breaking out of the `async for` on `data: [DONE]` leaves the vLLM/Ollama
`stream_chat` generator suspended inside its `async with response`, so the
pooled httpx connection stays checked out until GC (an `async for` does not
close its iterator on break — unlike `with`). Under concurrent chat traffic
that holds connections longer than necessary and can exhaust the pool.

Close `llm_stream` in a `finally` (awaiting is safe there — only yielding
during teardown is forbidden) so the connection is released promptly on every
exit path. The getattr guard tolerates non-generator iterables (e.g. tests).

Reported by @hedhoud on #749. Regression test added: it holds a reference to
the upstream generator so a pass can only mean an explicit aclose() ran.
The mid-stream emit path built its chunk with {**choice, ...}, inheriting
finish_reason from the source chunk. Once content is handled independently
of finish_reason, a provider that packs the last token + finish_reason into
one chunk can hit this path (when pending has overflowed buffer_size) and
emit a *mid-stream* content chunk carrying finish_reason='stop'. A spec
client treats that as terminal, drops the delta, and ignores the tail/finish
chunks — truncating a long answer. Clear finish_reason on the emitted chunk,
the same guard the terminal tail chunk already applies.

Reported by CodeRabbit on #749. Regression test added (fails without the fix).
@Ahmath-Gadji
Ahmath-Gadji force-pushed the fix/715-stream-flush-without-done branch from 55a27d9 to 6ce8bac Compare July 22, 2026 13:01
@Ahmath-Gadji
Ahmath-Gadji merged commit 3c0b0d2 into develop Jul 22, 2026
6 checks passed
@Ahmath-Gadji
Ahmath-Gadji deleted the fix/715-stream-flush-without-done branch July 22, 2026 13:10
@andyne13 andyne13 added this to the v2.0.1 milestone Jul 23, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Streaming: upstream close without [DONE] drops the answer tail and all extra.sources, with no error

4 participants