Skip to content

feat(jans-fido2): retry MDS TOC download at startup when the blob is … - #14483

Merged
moabu merged 8 commits into
mainfrom
jans-fido2-mds-toc-startup-retry
Jul 31, 2026
Merged

feat(jans-fido2): retry MDS TOC download at startup when the blob is …#14483
moabu merged 8 commits into
mainfrom
jans-fido2-mds-toc-startup-retry

Conversation

@imran-ishaq

@imran-ishaq imran-ishaq commented Jul 2, 2026

Copy link
Copy Markdown
Contributor

Description

At startup, the FIDO2 server (jans-fido2) fetches the FIDO Alliance MDS TOC blob (toc.jwt) exactly once via TocService.init() → fetchMetadata(). There is no retry loop. If that single download fails — e.g. a transient network glitch or a temporary outage of https://mds.fidoalliance.org/ — the server comes up with a missing/empty TOC in the DB and cannot validate authenticator attestations. The only subsequent attempt is the 24-hour MDS3UpdateTimer, so the server can remain without metadata for up to a day.

Additionally, the download runs synchronously on the ApplicationInitialized observer thread, so a slow/hanging MDS endpoint blocks application initialization.

A missing TOC specifically breaks the FIDO2 server (attestation validation), whereas a merely stale-but-present TOC still works — so the two cases should be treated differently.

Target issue

When the TOC blob is missing at startup, the server should retry the download a few times (configurable) before giving up, to ride out transient MDS outages.
Retries should apply only to the missing-TOC case, not to a stale-but-present TOC (which keeps the single-attempt behavior, matching the daily timer).
The startup download/retry should not block application initialization — it should run in the background.

closes #14482

Implementation Details


Test and Document the changes

  • Static code analysis has been run locally and issues have been fixed
  • Relevant unit and integration tests have been added/updated
  • Relevant documentation has been updated if any (i.e. user guides, installation and configuration guides, technical design docs etc)

Please check the below before submitting your PR. The PR will not be merged if there are no commits that start with docs: to indicate documentation changes or if the below checklist is not selected.

  • I confirm that there is no impact on the docs due to the code changes in this PR.

Summary by CodeRabbit

  • New Features
    • Added mdsDownloadStartupRetries and mdsDownloadStartupRetryInterval (defaults: 3 and 30 seconds) to tune FIDO2 MDS TOC download retries.
    • TOC metadata loading now runs asynchronously at startup with retry behavior when the TOC is missing.
    • Updated the API schema and dynamic configuration template to include the new settings.
  • Documentation
    • Updated the FIDO2 configuration and server properties documentation with the new parameters and example values.

…missing

Signed-off-by: imran <imranishaq7071@gmail.com>
@imran-ishaq
imran-ishaq marked this pull request as ready for review July 2, 2026 14:09
@coderabbitai

coderabbitai Bot commented Jul 2, 2026

Copy link
Copy Markdown
Contributor

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
📝 Walkthrough

Walkthrough

Adds configurable FIDO2 MDS startup retry settings, asynchronous TOC loading, missing-content detection, thread-safe state handling, download outcome mapping, tests, schema updates, defaults, and documentation.

Changes

MDS TOC startup retry

Layer / File(s) Summary
Fido2Configuration retry fields and accessors
jans-fido2/model/.../Fido2Configuration.java
Adds retry settings with defaults, getters/setters, updated toString(), and removes the full-argument constructor.
Defaults, schema, and documentation
docker-jans-fido2/scripts/upgrade.py, jans-linux-setup/.../dynamic-conf.json, jans-config-api/plugins/docs/fido2-plugin-swagger.yaml, docs/janssen-server/...
Adds retry defaults, OpenAPI properties, configuration examples, and property descriptions.
TocService async retry logic
jans-fido2/server/.../TocService.java
Runs startup loading asynchronously, retries missing TOC content using configured values, publishes TOC state safely, and refactors download outcomes, persistence, parsing, lookup, and logging helpers.
TocService behavior tests
jans-fido2/server/src/test/.../TocServiceTest.java
Covers disabled-service behavior, retry loops, retry bounds, early termination, and missing-content detection.

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

Suggested reviewers: yurem, iromli, devrimyatar, moabu

🚥 Pre-merge checks | ✅ 4 | ❌ 1

❌ Failed checks (1 inconclusive)

Check name Status Explanation Resolution
Title check ❓ Inconclusive The title is relevant to the main change, but it is truncated and leaves the key condition unfinished. Complete the title by naming the missing condition, such as when the blob is missing, so it is self-contained.
✅ Passed checks (4 passed)
Check name Status Explanation
Description check ✅ Passed The description covers the target issue, implementation intent, tests, and doc impact, with only the implementation-details section left sparse.
Linked Issues check ✅ Passed The PR adds missing-TOC startup retries, makes the startup fetch async, and keeps stale TOCs on single-attempt behavior, matching #14482.
Out of Scope Changes check ✅ Passed The changes stay focused on the FIDO2 startup retry, configuration, documentation, and tests, with no obvious unrelated scope.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
✨ 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 jans-fido2-mds-toc-startup-retry

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.

@mo-auto

mo-auto commented Jul 2, 2026

Copy link
Copy Markdown
Member

Snyk checks have passed. No issues have been found so far.

Status Scan Engine Critical High Medium Low Total (0)
Open Source Security 0 0 0 0 0 issues

💻 Catch issues earlier using the plugins for VS Code, JetBrains IDEs, Visual Studio, and Eclipse.

@mo-auto mo-auto added area-documentation Documentation needs to change as part of issue or PR comp-docker-jans-fido2 comp-docs Touching folder /docs comp-jans-config-api Component affected by issue or PR comp-jans-fido2 Component affected by issue or PR comp-jans-linux-setup Component affected by issue or PR kind-feature Issue or PR is a new feature request labels Jul 2, 2026

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Actionable comments posted: 2

🤖 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 `@jans-fido2/server/src/main/java/io/jans/fido2/service/mds/TocService.java`:
- Around line 141-228: The new retry/startup flow in TocService is complex and
currently untested, especially the branching in fetchMetadata(boolean
retryWhenTocMissing), the missing-state check in isTocContentMissing(), and the
wait/interrupt behavior in sleepBeforeRetry(). Add focused unit tests for these
methods to cover the stale-vs-missing TOC path, max-attempt bounds, early exit
once the TOC appears, and interrupted sleep handling using the existing
TocService and its collaborators.
- Around line 103-116: The asynchronous `init()` in `TocService` now writes
`tocEntries` from a background thread without any publication guarantee, so
request threads in `getAuthenticatorsMetadata()` may keep seeing stale or null
data. Fix this by making `tocEntries` safely published, such as marking the
field `volatile` or switching it to an `AtomicReference`, and keep the write in
`refreshTOCEntries()` and reads in `getAuthenticatorsMetadata()` using that same
field.
🪄 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: Organization UI

Review profile: ASSERTIVE

Plan: Pro

Run ID: 54d49c2d-b0ec-4a6f-bce3-cd811e5b9fa8

📥 Commits

Reviewing files that changed from the base of the PR and between fe41e0d and bc1580c.

📒 Files selected for processing (7)
  • docker-jans-fido2/scripts/upgrade.py
  • docs/janssen-server/config-guide/fido2-config/janssen-fido2-configuration.md
  • docs/janssen-server/fido/config.md
  • jans-config-api/plugins/docs/fido2-plugin-swagger.yaml
  • jans-fido2/model/src/main/java/io/jans/fido2/model/conf/Fido2Configuration.java
  • jans-fido2/server/src/main/java/io/jans/fido2/service/mds/TocService.java
  • jans-linux-setup/jans_setup/templates/jans-fido2/dynamic-conf.json

Signed-off-by: imran <imranishaq7071@gmail.com>
@imran-ishaq
imran-ishaq temporarily deployed to integration-tests July 2, 2026 15:04 — with GitHub Actions Inactive
@imran-ishaq
imran-ishaq temporarily deployed to integration-tests July 2, 2026 15:04 — with GitHub Actions Inactive

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Caution

Some comments are outside the diff and can’t be posted inline due to platform limitations.

⚠️ Outside diff range comments (3)
jans-fido2/server/src/main/java/io/jans/fido2/service/mds/TocService.java (3)

120-126: 🩺 Stability & Availability | 🟠 Major | ⚡ Quick win

Publish tocEntries only after it is fully populated.

Line 121 assigns the new map before parseTOCs() completes, so request threads can observe an empty TOC during refresh. Build a local map first, then assign it once.

Suggested fix
 public void refreshTOCEntries() {
-	this.tocEntries = Collections.synchronizedMap(new HashMap<>());
+	Map<String, JsonNode> loadedTocEntries = Collections.synchronizedMap(new HashMap<>());
 	if (appConfiguration.getFido2Configuration().isDisableMetadataService()) {
 		log.debug("SkipDownloadMds is enabled");
 	} else {
-		tocEntries.putAll(parseTOCs());
+		loadedTocEntries.putAll(parseTOCs());
 	}
+	this.tocEntries = loadedTocEntries;
 }
🤖 Prompt for 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.

In `@jans-fido2/server/src/main/java/io/jans/fido2/service/mds/TocService.java`
around lines 120 - 126, The refreshTOCEntries() method in TocService publishes
tocEntries too early by assigning a new synchronized map before parseTOCs()
finishes, which can expose an empty TOC to concurrent readers. Build and
populate a local map first (including the parseTOCs() result), then assign it to
the tocEntries field only after it is fully populated, keeping the existing
disableMetadataService branch behavior intact.

149-167: 🎯 Functional Correctness | 🟡 Minor | ⚡ Quick win

Treat configured retries as retries, not total attempts.

The PR objective and config name describe mdsDownloadStartupRetries as retries. This loop uses it as total attempts, so the default 3 produces only 2 retries after the first attempt.

Suggested fix
 int maxAttempts = 1;
 if (retryWhenTocMissing && isTocContentMissing()) {
-	maxAttempts = Math.max(1, appConfiguration.getFido2Configuration().getMdsDownloadStartupRetries());
-	log.info("MDS TOC blob is missing at startup, will attempt to download it up to {} time(s)", maxAttempts);
+	int retries = Math.max(0, appConfiguration.getFido2Configuration().getMdsDownloadStartupRetries());
+	maxAttempts = 1 + retries;
+	log.info("MDS TOC blob is missing at startup, will attempt the initial download plus {} retry(ies)", retries);
 }
🤖 Prompt for 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.

In `@jans-fido2/server/src/main/java/io/jans/fido2/service/mds/TocService.java`
around lines 149 - 167, The retry loop in TocService is treating
mdsDownloadStartupRetries as total attempts instead of retries, so the first
fetch is consuming one of the configured retries. Update the logic around
fetchMetadataOnce() to always perform the initial attempt, then allow the
configured number of additional retry attempts when isTocContentMissing()
remains true. Keep the existing retry guard and logging, but adjust
maxAttempts/loop bounds so the configured value reflects retries rather than
total attempts.

371-383: 🩺 Stability & Availability | 🟠 Major | ⚡ Quick win

Add explicit connect/read timeouts before opening the MDS URL. URL.openStream() can block indefinitely on a slow or unresponsive endpoint, which can stall the retry loop and tie up the async worker.

🤖 Prompt for 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.

In `@jans-fido2/server/src/main/java/io/jans/fido2/service/mds/TocService.java`
around lines 371 - 383, The downloadMdsFromServer method currently uses
URL.openStream() without any network timeouts, which can block indefinitely.
Update this path in TocService so the metadataUrl connection is opened
explicitly with connect and read timeouts before reading the stream, then keep
the existing IOUtils/base64Service/persistTocDocument flow unchanged. Make the
timeout values configurable or use sensible defaults, and preserve the current
error handling in the catch block.
🤖 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.

Outside diff comments:
In `@jans-fido2/server/src/main/java/io/jans/fido2/service/mds/TocService.java`:
- Around line 120-126: The refreshTOCEntries() method in TocService publishes
tocEntries too early by assigning a new synchronized map before parseTOCs()
finishes, which can expose an empty TOC to concurrent readers. Build and
populate a local map first (including the parseTOCs() result), then assign it to
the tocEntries field only after it is fully populated, keeping the existing
disableMetadataService branch behavior intact.
- Around line 149-167: The retry loop in TocService is treating
mdsDownloadStartupRetries as total attempts instead of retries, so the first
fetch is consuming one of the configured retries. Update the logic around
fetchMetadataOnce() to always perform the initial attempt, then allow the
configured number of additional retry attempts when isTocContentMissing()
remains true. Keep the existing retry guard and logging, but adjust
maxAttempts/loop bounds so the configured value reflects retries rather than
total attempts.
- Around line 371-383: The downloadMdsFromServer method currently uses
URL.openStream() without any network timeouts, which can block indefinitely.
Update this path in TocService so the metadataUrl connection is opened
explicitly with connect and read timeouts before reading the stream, then keep
the existing IOUtils/base64Service/persistTocDocument flow unchanged. Make the
timeout values configurable or use sensible defaults, and preserve the current
error handling in the catch block.

ℹ️ Review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: ASSERTIVE

Plan: Pro

Run ID: d1da8c2e-9e21-4766-8a80-7d418d42e6a3

📥 Commits

Reviewing files that changed from the base of the PR and between bc1580c and df5f889.

📒 Files selected for processing (3)
  • jans-fido2/model/src/main/java/io/jans/fido2/model/conf/Fido2Configuration.java
  • jans-fido2/server/src/main/java/io/jans/fido2/service/mds/TocService.java
  • jans-fido2/server/src/test/java/io/jans/fido2/service/mds/TocServiceTest.java

coderabbitai[bot]
coderabbitai Bot previously approved these changes Jul 2, 2026
Signed-off-by: imran <imranishaq7071@gmail.com>
yuremm
yuremm previously approved these changes Jul 29, 2026
@yurem
yurem temporarily deployed to integration-tests July 29, 2026 16:54 — with GitHub Actions Inactive
@yurem
yurem temporarily deployed to integration-tests July 29, 2026 16:54 — with GitHub Actions Inactive

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Actionable comments posted: 1

Caution

Some comments are outside the diff and can’t be posted inline due to platform limitations.

⚠️ Outside diff range comments (1)
docs/janssen-server/config-guide/fido2-config/janssen-fido2-configuration.md (1)

172-172: 📐 Maintainability & Code Quality | 🟡 Minor | ⚡ Quick win

Add blank lines around the new headings.

Insert a blank line after Line 172 and before Line 185 to satisfy Markdown linting and keep section boundaries consistent.

Also applies to: 185-185

🤖 Prompt for 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.

In `@docs/janssen-server/config-guide/fido2-config/janssen-fido2-configuration.md`
at line 172, Add blank lines around the “MySQL / PostgreSQL Layout” heading and
the corresponding heading at the referenced later section, ensuring each heading
is separated from surrounding content to satisfy Markdown linting.

Source: Linters/SAST tools

🤖 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 `@docs/janssen-server/fido/fido2-server-properties-config.md`:
- Around line 58-59: Update TocService.java’s startup MDS TOC download loop to
treat mdsDownloadStartupRetries as retries after the initial attempt, setting
the maximum attempts to one plus the configured value while preserving the
existing retry interval behavior.

---

Outside diff comments:
In
`@docs/janssen-server/config-guide/fido2-config/janssen-fido2-configuration.md`:
- Line 172: Add blank lines around the “MySQL / PostgreSQL Layout” heading and
the corresponding heading at the referenced later section, ensuring each heading
is separated from surrounding content to satisfy Markdown linting.
🪄 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: Organization UI

Review profile: ASSERTIVE

Plan: Pro Plus

Run ID: fda5a278-b3e2-44a2-9b0d-590dd9ff6bd2

📥 Commits

Reviewing files that changed from the base of the PR and between c42e26a and 7e4453d.

📒 Files selected for processing (2)
  • docs/janssen-server/config-guide/fido2-config/janssen-fido2-configuration.md
  • docs/janssen-server/fido/fido2-server-properties-config.md

Comment thread docs/janssen-server/fido/fido2-server-properties-config.md Outdated
…h the cached-TOC fallback

Signed-off-by: imran <imranishaq7071@gmail.com>
@imran-ishaq
imran-ishaq dismissed stale reviews from yurem and yuremm via 72290c7 July 30, 2026 07:05
@imran-ishaq
imran-ishaq temporarily deployed to integration-tests July 30, 2026 07:05 — with GitHub Actions Inactive
@imran-ishaq
imran-ishaq temporarily deployed to integration-tests July 30, 2026 07:05 — with GitHub Actions Inactive

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Caution

Some comments are outside the diff and can’t be posted inline due to platform limitations.

⚠️ Outside diff range comments (1)
jans-fido2/server/src/main/java/io/jans/fido2/service/mds/TocService.java (1)

277-288: 🩺 Stability & Availability | 🟡 Minor | ⚡ Quick win

Interrupted sleep doesn't stop the retry loop.

sleepBeforeRetry() restores the interrupt flag but returns normally, so fetchMetadata(boolean)'s loop (Lines 209-225) keeps issuing further download attempts even after the thread has been asked to stop (e.g. executor/app shutdown). Worth checking interruption after the call and breaking out.

🔧 Suggested fix
 			log.warn("Attempt {}/{} to download the MDS TOC failed", attempt, maxAttempts);
 			sleepBeforeRetry();
+			if (Thread.currentThread().isInterrupted()) {
+				break;
+			}
 		}
🤖 Prompt for 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.

In `@jans-fido2/server/src/main/java/io/jans/fido2/service/mds/TocService.java`
around lines 277 - 288, Update fetchMetadata(boolean) to check the thread’s
interrupted state immediately after sleepBeforeRetry() returns and exit the
retry loop without issuing another download attempt when interrupted. Preserve
the existing retry behavior for non-interrupted waits, using
sleepBeforeRetry()’s restored interrupt status.
♻️ Duplicate comments (1)
jans-fido2/server/src/main/java/io/jans/fido2/service/mds/TocService.java (1)

128-129: 🩺 Stability & Availability | 🟠 Major | ⚡ Quick win

digester is still not safely published across threads.

digester is written by loadGlobalVariables() on the async startup/background thread and read via getDigester() from request-handling threads, but it lost volatile again (unlike tocEntries/nextUpdate right above it, which were correctly fixed). This reintroduces the same JMM visibility race raised on a prior commit of this PR; PMD's AvoidMessageDigestField hint also still fires here, and MessageDigest itself is stateful/not thread-safe if concurrently shared.

🔒 Minimal fix
-	private MessageDigest digester;
+	private volatile MessageDigest digester;

This restores safe publication; consider also avoiding a shared mutable MessageDigest instance across concurrent getDigester() callers (e.g. resolve a fresh instance per use) since update()/digest() carry mutable state.

Also applies to: 536-538

🤖 Prompt for 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.

In `@jans-fido2/server/src/main/java/io/jans/fido2/service/mds/TocService.java`
around lines 128 - 129, Update the digester field used by loadGlobalVariables()
and getDigester() to be safely published across threads, and avoid sharing one
mutable MessageDigest instance between concurrent callers by resolving a fresh
digest per use where required. Preserve the existing tocEntries and nextUpdate
publication behavior.

Source: Linters/SAST tools

🤖 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.

Outside diff comments:
In `@jans-fido2/server/src/main/java/io/jans/fido2/service/mds/TocService.java`:
- Around line 277-288: Update fetchMetadata(boolean) to check the thread’s
interrupted state immediately after sleepBeforeRetry() returns and exit the
retry loop without issuing another download attempt when interrupted. Preserve
the existing retry behavior for non-interrupted waits, using
sleepBeforeRetry()’s restored interrupt status.

---

Duplicate comments:
In `@jans-fido2/server/src/main/java/io/jans/fido2/service/mds/TocService.java`:
- Around line 128-129: Update the digester field used by loadGlobalVariables()
and getDigester() to be safely published across threads, and avoid sharing one
mutable MessageDigest instance between concurrent callers by resolving a fresh
digest per use where required. Preserve the existing tocEntries and nextUpdate
publication behavior.

ℹ️ Review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: ASSERTIVE

Plan: Pro Plus

Run ID: 30c4e05e-6977-415a-848b-597868c6474a

📥 Commits

Reviewing files that changed from the base of the PR and between 7e4453d and 72290c7.

📒 Files selected for processing (3)
  • docs/janssen-server/fido/fido2-server-properties-config.md
  • jans-fido2/server/src/main/java/io/jans/fido2/service/mds/TocService.java
  • jans-fido2/server/src/test/java/io/jans/fido2/service/mds/TocServiceTest.java

@ossdhaval ossdhaval added this to the 3.0.0 milestone Jul 30, 2026
@yurem
yurem temporarily deployed to integration-tests July 30, 2026 16:58 — with GitHub Actions Inactive
@yurem
yurem temporarily deployed to integration-tests July 30, 2026 16:58 — with GitHub Actions Inactive
@sonarqubecloud

Copy link
Copy Markdown

@sonarqubecloud

Copy link
Copy Markdown

@moabu
moabu had a problem deploying to integration-tests July 31, 2026 07:45 — with GitHub Actions Failure
@moabu
moabu had a problem deploying to integration-tests July 31, 2026 07:45 — with GitHub Actions Failure
@moabu
moabu merged commit 65c00ff into main Jul 31, 2026
2 checks passed
@moabu
moabu deleted the jans-fido2-mds-toc-startup-retry branch July 31, 2026 07:46
@sonarqubecloud

Copy link
Copy Markdown

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

area-documentation Documentation needs to change as part of issue or PR comp-docker-jans-fido2 comp-docs Touching folder /docs comp-jans-config-api Component affected by issue or PR comp-jans-fido2 Component affected by issue or PR comp-jans-linux-setup Component affected by issue or PR kind-feature Issue or PR is a new feature request

Projects

None yet

Development

Successfully merging this pull request may close these issues.

jans-fido2: MDS TOC not downloaded on startup when blob is missing — single attempt, no retry, blocks initialization

8 participants