Skip to content

docs: readiness patterns and workers ColdBrew integration#80

Merged
ankurs merged 7 commits intomainfrom
docs/readiness-workers-lifecycle
Apr 27, 2026
Merged

docs: readiness patterns and workers ColdBrew integration#80
ankurs merged 7 commits intomainfrom
docs/readiness-workers-lifecycle

Conversation

@ankurs
Copy link
Copy Markdown
Member

@ankurs ankurs commented Apr 26, 2026

Summary

  • New howto/readiness.md page with 4 readiness patterns:
    • Pattern 1: Simple (most services)
    • Pattern 2: Block in PreStart (critical deps)
    • Pattern 3: Worker-managed readiness (eventual)
    • Pattern 4: Dynamic workers from DB (manager pattern)
  • Updated howto/workers.md — replaced "ColdBrew Integration" placeholder with: CBWorkerProvider usage, lifecycle diagram, delegation pattern, readiness cross-link
  • Playwright tests for new readiness page + updated workers integration section
  • Navigation test updated with readiness page

Depends on

Test plan

  • npx playwright test passes (requires local Jekyll server)
  • Readiness page renders with all 4 patterns and choosing-a-pattern table
  • Workers page ColdBrew Integration section shows CBWorkerProvider, delegation, lifecycle
  • Cross-links between readiness and workers pages work

Summary by CodeRabbit

  • Documentation

    • Extended FAQ with coverage of gRPC streaming, background workers (CBWorkerProvider), and HTTP gateway performance troubleshooting.
    • Added new "Readiness Patterns" guide covering four implementation patterns for Kubernetes readiness coordination.
    • Replaced workers integration placeholder with concrete documentation of service lifecycle integration.
    • Enhanced "How To" landing page with searchable table of topics and cross-references.
    • Added "Related" links sections to multiple guides for improved navigation.
  • Tests

    • Expanded test coverage for new documentation pages and SEO/table-of-contents validation.

…tion

- New howto/readiness.md with 4 patterns: simple, PreStart-blocked,
  worker-managed, dynamic DB-driven
- Replace workers.md ColdBrew Integration placeholder with actual content:
  CBWorkerProvider, lifecycle, delegation pattern, readiness link
- Add Playwright tests for readiness page (patterns, table) and workers
  ColdBrew Integration section
- Add readiness to navigation test list
Copilot AI review requested due to automatic review settings April 26, 2026 14:54
@coderabbitai
Copy link
Copy Markdown

coderabbitai Bot commented Apr 26, 2026

Warning

Rate limit exceeded

@ankurs has exceeded the limit for the number of commits that can be reviewed per hour. Please wait 17 minutes and 1 seconds before requesting another review.

To keep reviews running without waiting, you can enable usage-based add-on for your organization. This allows additional reviews beyond the hourly cap. Account admins can enable it under billing.

⌛ How to resolve this issue?

After the wait time has elapsed, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

We recommend that you space out your commits to avoid hitting the rate limit.

🚦 How do rate limits work?

CodeRabbit enforces hourly rate limits for each developer per organization.

Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout.

Please see our FAQ for further information.

ℹ️ Review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro

Run ID: 67ceaa5f-dcce-46f6-9ffa-9d4036aaaa44

📥 Commits

Reviewing files that changed from the base of the PR and between 8d24e8f and 94209fa.

📒 Files selected for processing (5)
  • FAQ.md
  • howto/interceptors.md
  • howto/readiness.md
  • howto/signals.md
  • howto/workers.md
📝 Walkthrough

Walkthrough

This PR extends the ColdBrew documentation with new how-to guides on readiness patterns and worker integration, adds troubleshooting sections and cross-reference links throughout the documentation, updates navigation ordering, and expands test coverage to validate the new content.

Changes

Cohort / File(s) Summary
FAQ Extension
FAQ.md
Adds sections on gRPC streaming support (with limitations), background worker integration via CBWorkerProvider, and HTTP gateway performance troubleshooting (Unix sockets and vtprotobuf optimization).
How-To Navigation & Index
howto/index.md, howto/auth.md, howto/local-dev.md
Updates index page with expanded description and "I want to…" table linking to all how-to topics; adjusts nav_order front-matter to reorder auth and local-dev pages in navigation UI.
How-To Cross-References
howto/APIs.md, howto/interceptors.md, howto/production.md
Adds "Related" subsections to provide cross-navigation to companion how-to guides covering OpenAPI, error handling, vtprotobuf, tracing, rate limiting, readiness, and worker management.
New Readiness How-To
howto/readiness.md
Comprehensive new guide documenting four readiness patterns for Kubernetes coordination using SetReady/SetNotReady, CBPreStarter, CBWorkerProvider, and dynamic worker reconciliation.
Workers How-To Update
howto/workers.md
Replaces placeholder content with concrete documentation of worker lifecycle integration via CBWorkerProvider, lifecycle sequencing diagrams, and delegation pattern examples.
Test Coverage Expansion
tests/content.spec.ts, tests/links.spec.ts, tests/navigation.spec.ts
Adds Playwright tests for readiness/workers content validation, introduces SEO description and table-of-contents checks across multiple routes, extends internal link crawl scope and navigation page load verification.

Estimated code review effort

🎯 3 (Moderate) | ⏱️ ~25 minutes

Possibly related PRs

Poem

🐰 Hop along, dear readers, paths now shine so bright,
Readiness patterns guide you through the production night,
Workers dance with streams, as docs light up the way,
Cross-references whisper: "Find what's here to say!"
Our burrow's knowledge grows—let navigation play! 🌱

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title 'docs: readiness patterns and workers ColdBrew integration' accurately and specifically summarizes the main changes: adding readiness patterns documentation and updating workers ColdBrew integration documentation.
Docstring Coverage ✅ Passed Docstring coverage is 100.00% which is sufficient. The required threshold is 80.00%.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch docs/readiness-workers-lifecycle

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 and usage tips.

Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

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

Pull request overview

Adds documentation and test coverage for service readiness approaches and the new/updated Workers ↔ ColdBrew integration guidance.

Changes:

  • Introduces a new How-To page describing four readiness patterns and how they relate to workers.
  • Replaces the “ColdBrew Integration” placeholder in the workers howto with concrete CBWorkerProvider usage, lifecycle notes, and a delegation pattern.
  • Extends Playwright coverage to include the new readiness page and updated workers section, and adds readiness to navigation checks.

Reviewed changes

Copilot reviewed 4 out of 4 changed files in this pull request and generated 4 comments.

File Description
tests/navigation.spec.ts Adds /howto/readiness/ to the list of how-to pages that must load successfully.
tests/content.spec.ts Adds assertions that the readiness page and the updated workers integration section render expected content.
howto/workers.md Documents ColdBrew lifecycle integration via CBWorkerProvider, including a lifecycle diagram and delegation pattern, with a readiness cross-link.
howto/readiness.md New readiness patterns page with examples and a pattern selection table.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment thread howto/readiness.md
Comment thread howto/workers.md
Comment thread howto/readiness.md Outdated
Comment thread howto/readiness.md
- Fix nav_order duplicates (readiness 16→17, local-dev 17→18, auth 18→19)
- Add quick reference table to howto/index.md (19 guides mapped to goals)
- Add Related sections to production.md, interceptors.md, APIs.md
- Add 3 new FAQ entries (streaming, workers, slow gateway)
- Expand Playwright link tests from 4 to 9 pages
- Add SEO meta description tests for 14 key pages
- Add table of contents existence tests for 10 howto pages
Copy link
Copy Markdown

@coderabbitai coderabbitai Bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 2

🧹 Nitpick comments (1)
tests/content.spec.ts (1)

191-204: TOC presence test passes trivially due to .no_toc selector.

.no_toc is the kramdown class applied to the "Table of contents" heading itself (via {: .no_toc .text-delta }) to exclude it from the generated TOC — it is not a class on the TOC list. Every howto page with the standard boilerplate has this heading, so hasTOC is true regardless of whether the {:toc} directive actually rendered any links. The OR with tocLinks.count() > 0 then makes the assertion always succeed.

Tightening the selector to require actual TOC anchor links (e.g., the <ul> produced after {:toc}) would catch a regression where someone removes the {:toc} marker but leaves the heading.

♻️ Suggested tightening
   for (const pagePath of howtoPages) {
     test(`${pagePath} has table of contents`, async ({ page }) => {
       await page.goto(pagePath);
-      const toc = page.locator("#table-of-contents, .no_toc, `#toc`");
-      const hasTOC = (await toc.count()) > 0;
-      // just-the-docs renders TOC as a list with anchor links
-      const tocLinks = page.locator('nav[aria-label="Table of contents"] a, .no_toc + ol a, .no_toc + ul a');
-      expect(
-        hasTOC || (await tocLinks.count()) > 0,
-        `${pagePath} missing table of contents`
-      ).toBeTruthy();
+      // kramdown {:toc} renders a <ul>/<ol> immediately after the
+      // heading marked with {: .no_toc} containing in-page anchor links.
+      const tocLinks = page.locator('.no_toc + ul a[href^="#"], .no_toc + ol a[href^="#"]');
+      expect(
+        await tocLinks.count(),
+        `${pagePath} missing table of contents`
+      ).toBeGreaterThan(0);
     });
   }
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@tests/content.spec.ts` around lines 191 - 204, The current TOC test in the
howtoPages loop (`test(\`${pagePath} has table of contents\`)`) falsely passes
because the `toc` locator includes the `.no_toc` heading; update the locators so
the assertion requires actual TOC links/lists rather than the heading: remove
`.no_toc` from the `toc` selector and change the check to assert that a TOC list
or anchor links exist (e.g., look for `#table-of-contents`, `#toc`,
`nav[aria-label="Table of contents"]`, or an adjacent `<ul>`/`<ol>` with `a`
children) by relying on `tocLinks.count() > 0` or verifying the list element
exists, replacing the current `hasTOC || (await tocLinks.count()) > 0` logic in
the test that defines `toc` and `tocLinks`.
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.

Inline comments:
In `@FAQ.md`:
- Around line 244-245: The FAQ line incorrectly states that grpc-gateway "does
not support streaming"; update the text to say grpc-gateway v2 does support
server-, client- and bidi-streaming by translating gRPC streams to HTTP
newline-delimited JSON streams, and add brief notes about practical constraints:
proxy buffering may require configuration, use runtime.WithStreamErrorHandler
for correct error propagation, and note grpc-gateway cannot provide arbitrary
concurrent interleaving like WebSockets—refer readers to the official
grpc-gateway streaming examples for implementation details and configuration
guidance.

In `@howto/readiness.md`:
- Around line 172-173: The Pattern 4 example incorrectly treats
info.GetChild(cfg.Name) as nullable; fix the existence check to use the
two-value return (Worker, bool) from GetChild by capturing the boolean (e.g., _,
ok := info.GetChild(cfg.Name)) and then testing if !ok before calling
info.Add(...) so the example compiles and correctly checks for presence.

---

Nitpick comments:
In `@tests/content.spec.ts`:
- Around line 191-204: The current TOC test in the howtoPages loop
(`test(\`${pagePath} has table of contents\`)`) falsely passes because the `toc`
locator includes the `.no_toc` heading; update the locators so the assertion
requires actual TOC links/lists rather than the heading: remove `.no_toc` from
the `toc` selector and change the check to assert that a TOC list or anchor
links exist (e.g., look for `#table-of-contents`, `#toc`, `nav[aria-label="Table
of contents"]`, or an adjacent `<ul>`/`<ol>` with `a` children) by relying on
`tocLinks.count() > 0` or verifying the list element exists, replacing the
current `hasTOC || (await tocLinks.count()) > 0` logic in the test that defines
`toc` and `tocLinks`.
🪄 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: defaults

Review profile: CHILL

Plan: Pro

Run ID: 6536f139-3227-4035-a7ae-eca30a2b14ed

📥 Commits

Reviewing files that changed from the base of the PR and between b981817 and 8d24e8f.

📒 Files selected for processing (12)
  • FAQ.md
  • howto/APIs.md
  • howto/auth.md
  • howto/index.md
  • howto/interceptors.md
  • howto/local-dev.md
  • howto/production.md
  • howto/readiness.md
  • howto/workers.md
  • tests/content.spec.ts
  • tests/links.spec.ts
  • tests/navigation.spec.ts

Comment thread FAQ.md Outdated
Comment thread howto/readiness.md Outdated
ankurs added 2 commits April 27, 2026 00:29
- Fix GetChild API usage in Pattern 4 to use (Worker, bool) return
- Fix Pattern 3 type assertions to use *svc instead of *cbSvc
- Replace SetDefaultTimeout example with auth.Setup + note about env vars
- Correct FAQ streaming entry — grpc-gateway v2 supports streaming via
  newline-delimited JSON with practical constraints
- Update signals.md shutdown sequence with PreStop/PostStop hooks and
  worker shutdown step
Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

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

Pull request overview

Adds and cross-links new operational documentation around readiness and background workers in ColdBrew, and extends Playwright coverage to ensure the new/updated pages render and internal navigation remains healthy.

Changes:

  • Added a new howto/readiness.md guide describing four readiness patterns and how they relate to workers and lifecycle hooks.
  • Replaced the “ColdBrew Integration” placeholder in howto/workers.md with concrete CBWorkerProvider integration guidance (lifecycle + delegation pattern) and added related-links sections across multiple docs.
  • Expanded Playwright coverage (navigation, internal link crawl targets, and content assertions) to include the new readiness doc and updated workers content.

Reviewed changes

Copilot reviewed 13 out of 13 changed files in this pull request and generated 3 comments.

Show a summary per file
File Description
tests/navigation.spec.ts Adds /howto/readiness/ to the set of How-To pages that must load successfully.
tests/links.spec.ts Expands internal-link crawling to cover more key docs pages including readiness/workers/production.
tests/content.spec.ts Adds content assertions for readiness patterns and workers integration section; adds readiness to SEO/TOC checks.
howto/workers.md Documents CBWorkerProvider usage, lifecycle ordering, delegation pattern, and readiness cross-link.
howto/signals.md Updates shutdown sequence + lifecycle interface table to include PreStop/PostStop and worker shutdown.
howto/readiness.md New readiness patterns guide (simple, PreStart blocking, worker-managed readiness, dynamic workers).
howto/production.md Adds “Related” links pointing to readiness, interceptors, signals, and workers docs.
howto/local-dev.md Adjusts nav order to make space for the new readiness page in the How-To sidebar.
howto/interceptors.md Adds a “Related” section linking to adjacent operational/howto topics.
howto/index.md Replaces intro text with a “I want to…” table linking to key How-To guides including readiness.
howto/auth.md Adjusts nav order due to the insertion of readiness into the How-To nav.
howto/APIs.md Adds a “Related” section linking to adjacent howtos.
FAQ.md Adds FAQ entries covering streaming RPCs, background workers via CBWorkerProvider, and gateway performance troubleshooting.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment thread howto/signals.md Outdated
Comment thread howto/readiness.md
Comment thread howto/signals.md
- Fix signals.md step numbering (1-8 → 1-11, step 2 → step 3)
- Reword callout to mention PreStop/PostStop alongside Stop
- Fix readiness Pattern 1 wording ("after InitGRPC" → "during initialization")
Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

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

Pull request overview

Adds a new “Readiness Patterns” guide and replaces the “ColdBrew Integration” placeholder in the Workers how-to with concrete lifecycle + delegation documentation, then updates Playwright coverage to validate the new/updated docs pages and navigation.

Changes:

  • Introduce howto/readiness.md describing four readiness patterns and how they relate to workers and lifecycle hooks.
  • Expand howto/workers.md with CBWorkerProvider integration guidance (examples, lifecycle diagram, delegation pattern) and cross-links to readiness.
  • Update/extend Playwright navigation, internal-link crawling targets, and content assertions for the new/updated pages.

Reviewed changes

Copilot reviewed 13 out of 13 changed files in this pull request and generated 2 comments.

Show a summary per file
File Description
tests/navigation.spec.ts Adds /howto/readiness/ to the navigation smoke list.
tests/links.spec.ts Expands internal-link crawl coverage to include readiness/workers/production and more key pages.
tests/content.spec.ts Adds assertions for readiness patterns content and workers integration section; includes readiness in SEO/TOC checks.
howto/workers.md Replaces placeholder “ColdBrew Integration” with real CBWorkerProvider docs, lifecycle diagram, and delegation guidance.
howto/signals.md Updates shutdown sequence and lifecycle hook interface table to include PreStop/PostStop and worker stop ordering.
howto/readiness.md New page documenting four readiness patterns and related links.
howto/production.md Adds a “Related” section linking to readiness/workers/signals/interceptors.
howto/local-dev.md Adjusts nav_order to make room for the new readiness page.
howto/interceptors.md Adds a “Related” section to improve cross-navigation.
howto/index.md Replaces generic intro with a “I want to…” table including readiness and other how-tos.
howto/auth.md Adjusts nav_order to preserve sidebar ordering after inserting readiness.
howto/APIs.md Adds a “Related” section for discoverability of adjacent topics.
FAQ.md Adds FAQ entries for gRPC streaming and background workers; links out to workers/readiness docs.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment thread howto/workers.md
Comment thread FAQ.md Outdated
- Add CBPreStarter and CBPostStarter to signals.md lifecycle table
- Clarify FAQ streaming: server streaming works well, bidi is limited
Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

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

Pull request overview

Adds documentation and test coverage for ColdBrew readiness patterns and the workers lifecycle integration, improving cross-linking and navigation across the How-To section.

Changes:

  • Added new howto/readiness.md describing four readiness patterns and a “Choosing a Pattern” table.
  • Replaced the “ColdBrew Integration” placeholder in howto/workers.md with CBWorkerProvider guidance, lifecycle notes, and readiness linkage.
  • Expanded Playwright coverage and navigation/link crawling to include the new readiness content and updated related pages.

Reviewed changes

Copilot reviewed 13 out of 13 changed files in this pull request and generated 2 comments.

Show a summary per file
File Description
tests/navigation.spec.ts Adds /howto/readiness/ to the list of How-To pages that must load successfully.
tests/links.spec.ts Expands internal-link crawling to include readiness/workers/production and key reference pages.
tests/content.spec.ts Adds assertions for readiness patterns, the choosing-a-pattern table, and the workers integration section; includes readiness in SEO + TOC checks.
howto/workers.md Documents CBWorkerProvider integration, lifecycle ordering, delegation pattern, and readiness cross-link.
howto/signals.md Updates shutdown sequence and lifecycle hook interface documentation to align with worker lifecycle integration.
howto/readiness.md New page documenting readiness patterns and how they relate to workers + lifecycle hooks.
howto/production.md Adds “Related” section linking to readiness, interceptors, signals, and workers.
howto/local-dev.md Bumps nav_order to make room for the new readiness page in navigation ordering.
howto/interceptors.md Adds “Related” links section for improved doc navigation.
howto/index.md Replaces the brief intro with a task→guide table, including readiness as a first-class topic.
howto/auth.md Bumps nav_order to preserve intended sidebar ordering after inserting readiness.
howto/APIs.md Adds a “Related” section to connect readers to adjacent how-tos.
FAQ.md Adds FAQ entries for gRPC streaming, background workers (CBWorkerProvider), and gateway performance.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment thread howto/interceptors.md
Comment on lines 276 to +285
---

[TraceId interceptor]: https://pkg.go.dev/github.com/go-coldbrew/interceptors#TraceIdInterceptor
[go-coldbrew/tracing]: https://pkg.go.dev/github.com/go-coldbrew/tracing
## Related

- [Production](/howto/production) — rate limiting, TLS, security hardening for deployment
- [Debugging](/howto/Debugging) — per-request debug logging via DebugLogInterceptor
- [Tracing](/howto/Tracing) — distributed tracing with OpenTelemetry
- [Architecture](/architecture) — full interceptor chain diagram and request lifecycle
Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

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

Fixed — moved Related section before the reference link definitions.

Comment thread howto/workers.md Outdated
Comment on lines +944 to +946
go workers.Run(ctx, []*workers.Worker{
workers.NewWorker("cleanup").HandlerFunc(s.cleanup).Every(5 * time.Minute),
})
Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

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

Fixed — wrapped in goroutine with error handling and slog.Error.

Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

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

Pull request overview

Adds first-class documentation for service readiness patterns and integrates workers lifecycle/readiness guidance across the ColdBrew docs, with Playwright coverage to keep navigation/content/link integrity intact.

Changes:

  • Introduces a new How-To page documenting four readiness implementation patterns.
  • Replaces the “ColdBrew Integration” placeholder in the Workers How-To with concrete CBWorkerProvider lifecycle and delegation guidance (plus readiness cross-linking).
  • Expands Playwright navigation/content/link checks to cover the new readiness page and updated related sections.

Reviewed changes

Copilot reviewed 13 out of 13 changed files in this pull request and generated 2 comments.

Show a summary per file
File Description
tests/navigation.spec.ts Adds /howto/readiness/ to the How-To navigation smoke test list.
tests/links.spec.ts Crawls additional key pages (incl. readiness/workers/production/config/architecture) for internal link validity.
tests/content.spec.ts Adds assertions for readiness patterns content, the choosing-a-pattern table, and the updated Workers integration section; includes readiness in SEO + TOC checks.
howto/workers.md Documents CBWorkerProvider usage, lifecycle ordering, delegation pattern, and readiness linkage (replacing placeholder).
howto/signals.md Updates shutdown sequence and lifecycle hook interface table to include PreStop/PostStop and worker shutdown ordering.
howto/readiness.md New guide describing four readiness patterns plus a selection table and related links.
howto/production.md Adds “Related” links including readiness/workers/signals/interceptors.
howto/local-dev.md Bumps nav_order to make room for the new readiness page.
howto/interceptors.md Adds “Related” links for operational cross-navigation.
howto/index.md Replaces the generic intro with a topic table that links to key How-To guides including readiness.
howto/auth.md Bumps nav_order to accommodate readiness insertion.
howto/APIs.md Adds a “Related” section to guide readers to adjacent How-Tos.
FAQ.md Adds guidance on gRPC streaming and background workers + readiness cross-links, plus HTTP gateway troubleshooting.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment thread howto/workers.md
Comment thread howto/readiness.md
- Move Related section before reference links in interceptors.md
- Handle workers.Run() error in example, use consistent callable form
- Close db on ping failure in readiness Pattern 2 example
@ankurs ankurs merged commit 92e8140 into main Apr 27, 2026
7 checks passed
@ankurs ankurs deleted the docs/readiness-workers-lifecycle branch April 27, 2026 09:18
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.

2 participants