Skip to content

fix(cli): improve failure diagnostics - #8218

Closed
sandl99 wants to merge 3 commits into
mainfrom
fix/8202-cli-error-diagnostics
Closed

fix(cli): improve failure diagnostics#8218
sandl99 wants to merge 3 commits into
mainfrom
fix/8202-cli-error-diagnostics

Conversation

@sandl99

@sandl99 sandl99 commented Aug 4, 2026

Copy link
Copy Markdown
Collaborator

Summary

NemoClaw now catches command failures at the executable boundary and prints the error message without an uncaught Node.js stack trace. Snapshot failures identify the trusted Python 3 prerequisite, while sandbox build diagnostics preserve a redacted final-output tail and the available macOS or Linux gateway evidence.

Related Issue

Fixes #8202

Changes

  • Catch rejected CLI dispatches at the executable boundary while preserving the rejecting dispatchCli() contract for in-process callers.
  • Report a missing trusted Python 3 interpreter during snapshot sanitization and preserve the incomplete-backup cleanup outcome.
  • Retain the final build failure when bounded output would otherwise keep only the Dockerfile prefix.
  • Save fully redacted sandbox create output in sandbox-create-output.log, add create_output and failure_excerpt to summary.txt, and discover standard Homebrew gateway logs.
  • Document the snapshot prerequisite and the expanded onboarding diagnostic bundle.

Type of Change

  • Code change (feature, bug fix, or refactor)
  • Code change with doc updates
  • Doc only (prose changes, no code sample modifications)
  • Doc only (includes code sample changes)

Quality Gates

  • Tests added or updated for changed behavior
  • Existing tests cover changed behavior — justification:
  • Tests not applicable — justification:
  • Docs updated for user-facing behavior changes
  • Docs not applicable — justification:
  • Sensitive paths changed (security, policy, credentials, preflight, onboarding, inference, runner, sandbox, or messaging)
  • Sensitive-path review completed or maintainer-approved waiver recorded — reviewer/approval link/justification: Codex CLI reviewed PR fix(cli): improve failure diagnostics #8218 against all nine repository security categories; PASS with no findings. Credential output is fully redacted before persistence, artifacts remain private and bounded, and the trusted-interpreter and fail-closed cleanup controls remain intact.
  • Non-success, skipped, or missing CI check accepted by maintainer — check name, approval link, and follow-up issue:

Documentation Writer Review

  • Documentation writer subagent reviewed the completed changes
  • Result: docs-updated
  • Evidence: docs/manage-sandboxes/backup-restore.mdx and docs/reference/troubleshooting.mdx; exact-head review passed with no blocking findings after npm run docs validated 66 guarded routes.
  • Agent: Codex CLI documentation writer subagent

DGX Station Hardware Evidence

  • Tested on DGX Station
  • Tested commit: Not applicable; scripts/prepare-dgx-station-host.sh is unchanged.
  • Station profile/scenario: Not applicable.
  • Result: Not applicable.
  • Supporting evidence: Not applicable.

Verification

  • PR description includes a Signed-off-by: line and every commit appears as Verified in GitHub
  • Normal pre-commit, commit-msg, and pre-push hooks passed, or npm run validate:pr passed after refreshing origin/main when hooks were skipped or unavailable
  • Targeted behavior tests pass for the current change set, or tests are marked not applicable above — focused CLI, integration, package-contract, and plugin tests passed; CLI and plugin type-checks passed; repository checks passed.
  • Applicable broad gate passed — npm test for broad runtime/test-harness changes; npm run check for repo-wide validation/coverage changes — command/result: Not applicable; the change does not modify the test harness or repo-wide validation configuration. The full plugin coverage gate passed (783 tests); the optional local CLI coverage run timed out on unrelated host-sensitive tests and produced no coverage result.
  • Quality Gates section completed with required justifications or waivers
  • No secrets, API keys, or credentials committed
  • npm run docs builds without warnings (doc changes only)
  • Doc pages follow the style guide (doc changes only)
  • New doc pages include SPDX header and frontmatter (new pages only)

Signed-off-by: San Dang sdang@nvidia.com

Summary by CodeRabbit

  • Bug Fixes

    • Improved sandbox creation diagnostics with secret redaction, relevant log extraction, and clearer failure summaries.
    • Preserved the latest failure output when logs are truncated.
    • Exported sandbox creation output with diagnostic bundles.
    • CLI failures now show concise error messages and exit cleanly without stack traces.
    • Snapshot backup cleanup now reports missing Python 3 requirements and removes incomplete backups when possible.
  • Documentation

    • Added troubleshooting guidance for diagnostic bundles, logs, console output, and resuming onboarding.
    • Documented Python 3 installation requirements for snapshot sanitization.
  • Tests

    • Expanded coverage for redaction, diagnostics, macOS log discovery, and CLI error handling.

Signed-off-by: San Dang <sdang@nvidia.com>
@sandl99 sandl99 self-assigned this Aug 4, 2026
@coderabbitai

coderabbitai Bot commented Aug 4, 2026

Copy link
Copy Markdown
Contributor

Review Change Stack

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Enterprise

Run ID: c804d632-1d57-4328-96ba-e621f25f116a

📥 Commits

Reviewing files that changed from the base of the PR and between 10918c2 and 49d3cd6.

📒 Files selected for processing (1)
  • docs/reference/troubleshooting.mdx
🚧 Files skipped from review as they are similar to previous changes (1)
  • docs/reference/troubleshooting.mdx

📝 Walkthrough

Walkthrough

The change improves sandbox creation diagnostics, adds trusted Python prerequisite handling for snapshot sanitization, preserves final failure output, expands diagnostic export, and prevents uncaught CLI promise rejections from printing Node.js stack traces.

Changes

Failure handling and diagnostics

Layer / File(s) Summary
Snapshot sanitizer prerequisite handling
nemoclaw/src/shared/snapshot-sanitizer-boundary.cts, src/lib/security/snapshot-sanitizer.ts, src/lib/state/sandbox.ts, src/lib/state/sandbox-backup-sanitization.test.ts, docs/manage-sandboxes/backup-restore.mdx
Python 3 resolution uses trusted paths. Missing prerequisites raise SnapshotSanitizerPrerequisiteError. Incomplete backup cleanup reports whether removal succeeded.
Sandbox creation diagnostic capture
src/lib/onboard/sandbox-create-failure.ts, src/lib/onboard/created-sandbox-failure.ts, src/lib/onboard/sandbox-gpu-create-run-attempt.ts
Creation output is redacted, bounded, persisted to sandbox-create-output.log, and included in failure summaries. Gateway discovery includes Homebrew paths and selects the newest log.
Diagnostic retention and validation
src/lib/sandbox-base-image.ts, src/lib/sandbox-base-image.test.ts, test/onboard-sandbox-create-failure.test.ts, test/managed-image-failure-diagnostics.test.ts, src/lib/onboard/created-sandbox-failure.test.ts, scripts/checks/export-managed-image-failure-diagnostics.ts, docs/reference/troubleshooting.mdx
Diagnostics retain final output, cover additional token redaction, export the new log, test Homebrew discovery, and document diagnostic recovery steps.
Top-level CLI error reporting
bin/nemoclaw.js, test/package-contract/cli/top-level-error.test.ts
The CLI handles rejected promises, logs a concise error, sets exit status 1, and avoids an uncaught stack trace.

Estimated code review effort: 3 (Moderate) | ~25 minutes

Possibly related PRs

Suggested labels: area: cli, bug-fix, area: onboarding, area: sandbox, area: docs

Suggested reviewers: cv, senthilr-nv

🚥 Pre-merge checks | ✅ 4 | ❌ 1

❌ Failed checks (1 warning)

Check name Status Explanation Resolution
Docstring Coverage ⚠️ Warning Docstring coverage is 40.91% 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 summarizes the primary change: improved CLI failure diagnostics.
Linked Issues check ✅ Passed The changes address issue #8202 requirements for clean CLI errors, Python prerequisite reporting, cleanup outcomes, and actionable diagnostics.
Out of Scope Changes check ✅ Passed All code, tests, and documentation changes support the linked issue and stated failure-diagnostics objectives.
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch fix/8202-cli-error-diagnostics

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

@github-code-quality

github-code-quality Bot commented Aug 4, 2026

Copy link
Copy Markdown
Contributor

Code Coverage Overview

Languages: TypeScript

TypeScript / code-coverage/plugin

The overall coverage in commit 49d3cd6 in the fix/8202-cli-error-d... branch remains at 96%, unchanged from commit 0abd14a in the main branch.

TypeScript / code-coverage/cli

The overall coverage in commit 49d3cd6 in the fix/8202-cli-error-d... branch remains at 81%, unchanged from commit 0abd14a in the main branch.

Show a code coverage summary of the most impacted files.
File main 0abd14a fix/8202-cli-error-d... 49d3cd6 +/-
src/lib/securit...ot-sanitizer.ts 93% 88% -5%
src/lib/shields/index.ts 69% 69% 0%
src/lib/state/sandbox.ts 85% 85% 0%
src/lib/onboard...dbox-failure.ts 100% 100% 0%
src/lib/sandbox...rce-identity.ts 88% 88% 0%
src/lib/onboard...eate-failure.ts 90% 94% +4%

Updated August 04, 2026 12:00 UTC

@github-actions

github-actions Bot commented Aug 4, 2026

Copy link
Copy Markdown
Contributor

@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: 4

🤖 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/manage-sandboxes/backup-restore.mdx`:
- Line 51: Update the NemoClaw documentation sentence to distinguish Python’s
isolated interpreter execution from the helper’s descriptor-relative filesystem
anchoring. State that python3 -I provides interpreter isolation, while reads,
replacements, and removals remain anchored through opened directory descriptors.

In `@src/lib/onboard/created-sandbox-failure.ts`:
- Line 67: Update the error reporting path to pass a fully redacted version of
createOutput to deps.error() instead of the partially redacted value, while
preserving the existing redaction level for classification and recovery hint
logic. Ensure the redactSandboxCreateFailureOutput function or related redaction
is applied with full redaction for the error output path. Add test coverage that
validates a value matched only by FULL_REDACT_PATTERNS is properly handled
through the error path.

In `@src/nemoclaw.ts`:
- Around line 12-31: Remove reportTopLevelCliError and the automatic dispatch,
environment branching, and process exit handling from src/nemoclaw.ts; keep this
compatibility front controller limited to loading and exposing dispatchCli
through its existing exports. Move the executable-boundary dispatch, error
formatting/logging, and exit-state behavior to the executable launcher instead.

In `@test/package-contract/cli/top-level-error.test.ts`:
- Around line 34-38: The test subprocess inherits the parent's environment
variables, which can include NEMOCLAW_DISABLE_AUTO_DISPATCH set to 1, causing
non-deterministic test behavior. In the spawnSync call options, update the env
property to explicitly set NEMOCLAW_DISABLE_AUTO_DISPATCH to "0" alongside the
existing environment variable spread to ensure the child process always has
automatic dispatch enabled regardless of the parent's configuration.
🪄 Autofix

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: Enterprise

Run ID: dec35bb5-26de-4544-abf9-43f8313ae8fe

📥 Commits

Reviewing files that changed from the base of the PR and between 2fa1d22 and 6ec9631.

📒 Files selected for processing (17)
  • docs/manage-sandboxes/backup-restore.mdx
  • docs/reference/troubleshooting.mdx
  • nemoclaw/src/shared/snapshot-sanitizer-boundary.cts
  • scripts/checks/export-managed-image-failure-diagnostics.ts
  • src/lib/onboard/created-sandbox-failure.test.ts
  • src/lib/onboard/created-sandbox-failure.ts
  • src/lib/onboard/sandbox-create-failure.ts
  • src/lib/onboard/sandbox-gpu-create-run-attempt.ts
  • src/lib/sandbox-base-image.test.ts
  • src/lib/sandbox-base-image.ts
  • src/lib/security/snapshot-sanitizer.ts
  • src/lib/state/sandbox-backup-sanitization.test.ts
  • src/lib/state/sandbox.ts
  • src/nemoclaw.ts
  • test/managed-image-failure-diagnostics.test.ts
  • test/onboard-sandbox-create-failure.test.ts
  • test/package-contract/cli/top-level-error.test.ts

Comment thread docs/manage-sandboxes/backup-restore.mdx Outdated
Comment thread src/lib/onboard/created-sandbox-failure.ts Outdated
Comment thread src/nemoclaw.ts Outdated
Comment thread test/package-contract/cli/top-level-error.test.ts
@github-actions

github-actions Bot commented Aug 4, 2026

Copy link
Copy Markdown
Contributor

PR Review Advisor — No blocking findings reported

Advisor assessment: No blocking advisor findings reported
Next action: Review the warnings below.
Findings: 0 blockers · 1 warning · 0 suggestions

Model lanes

  • GPT-5.6 Terra (primary): Completed · high confidence · 0 blockers · 1 warning · 0 suggestions
  • Nemotron 3 Ultra (second opinion): Completed · high confidence · 0 blockers · 1 warning · 0 suggestions
  • Model comparison: normalized findings differ; normalized terminology decisions differ; normalized E2E selections differ; severity counts match.
1 terminology difference from the second opinion

Advisory only. These are normalized differences from the primary terminology receipt.

  • trusted interpreter at docs/manage-sandboxes/backup-restore.mdx:49: primary classified it as replace; the second opinion classified it as conflict.
2 additional E2E selections from the second opinion

Advisory only. The primary lane did not select these E2E jobs or targets.

  • ubuntu-repo-cloud-openclaw: The completed second-opinion lane identified E2E coverage that the primary lane omitted.
  • ubuntu-repo-docker-post-reboot-recovery: The completed second-opinion lane identified E2E coverage that the primary lane omitted.

Second-opinion terminology and E2E selections are advisory. They do not change the primary assessment or E2E / PR Gate.

2 semantic terminology decisions

Terminology decisions are advisory. They affect the assessment only when a separate finding identifies concrete semantic impact.

  • established — trusted absolute path at docs/manage-sandboxes/backup-restore.mdx:46: Keep this established security term.
  • replace — trusted interpreter at docs/manage-sandboxes/backup-restore.mdx:49: Replace with “trusted Python 3 path” or repeat “Python 3 from a trusted absolute path.”

E2E guidance

Advisory only. E2E / PR Gate selects and runs jobs independently.

Recommended E2E: cloud-inference, security-posture, onboard-repair, onboard-resume, rebuild-openclaw, state-backup-restore, cloud-onboard

2 optional E2E recommendations
  • snapshot-commands
  • sandbox-operations
1 warning · 0 suggestions

Warnings

Warnings do not block.

PRA-1 Warning — Normalize non-Error top-level rejections before logging

  • Location: bin/nemoclaw.js:15
  • Category: correctness
  • Problem: The executable-boundary handler logs a non-Error rejection through String(error) without reducing embedded line breaks or stack frames. A command path that rejects with a stack-bearing string therefore still prints an uncaught-style multiline stack trace.
  • Impact: Users can receive the stack-style output that the new top-level handler is intended to suppress, instead of one actionable error line.
  • Recommendation: Normalize non-Error rejection text to one concise message before calling log.error, while retaining the existing fallback for values that cannot be stringified.
  • Verification: Inspect bin/nemoclaw.js with a rejected string containing a stack frame, or extend test/package-contract/cli/top-level-error.test.ts to assert the emitted stderr.
  • Test coverage: Add a package-contract test that rejects dispatchCli with a string containing '\n at ...' and asserts one concise stderr line without stack-frame text.
  • Evidence: bin/nemoclaw.js:15 derives non-Error messages with String(error), and line 20 interpolates the result directly into log.error. test/package-contract/cli/top-level-error.test.ts:13-49 covers only Promise.reject(new Error(...)) and asserts one-line stderr. Linked issue [All Platforms][CLI&UX] Multiple error paths surface uncaught Node.js exceptions / un-actionable diagnostics instead of clean errors #8202 requires clean single-line actionable errors and no uncaught Node.js stack trace.

Workflow run details

This automated review informs maintainers. Warnings and suggestions do not require a response. A maintainer decides whether to merge.

Signed-off-by: San Dang <sdang@nvidia.com>

@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

🤖 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 `@bin/nemoclaw.js`:
- Around line 26-27: Update the executable boundary around the require of
dist/nemoclaw to catch synchronous module-loading failures and route them
through reportTopLevelCliError, while preserving the existing mainPromise
rejection handling. Extend the top-level error coverage in
test/package-contract/cli/top-level-error.test.ts to verify startup failures are
reported through the same handler.
🪄 Autofix

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: Enterprise

Run ID: ffef0615-dbe9-4392-b164-0eb29ea27d33

📥 Commits

Reviewing files that changed from the base of the PR and between 6ec9631 and 10918c2.

📒 Files selected for processing (5)
  • bin/nemoclaw.js
  • docs/manage-sandboxes/backup-restore.mdx
  • src/lib/onboard/created-sandbox-failure.test.ts
  • src/lib/onboard/created-sandbox-failure.ts
  • test/package-contract/cli/top-level-error.test.ts
🚧 Files skipped from review as they are similar to previous changes (3)
  • src/lib/onboard/created-sandbox-failure.test.ts
  • src/lib/onboard/created-sandbox-failure.ts
  • docs/manage-sandboxes/backup-restore.mdx

Comment thread bin/nemoclaw.js
Comment on lines +26 to +27
const { mainPromise } = require("../dist/nemoclaw");
Promise.resolve(mainPromise).catch(reportTopLevelCliError);

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.

🩺 Stability & Availability | 🟠 Major | ⚡ Quick win

🧩 Analysis chain

🌐 Web query:

For Node.js CommonJS entrypoints, does a synchronous require("../dist/nemoclaw") throw before a later Promise.resolve(mainPromise).catch(...) can handle the failure?

💡 Result:

Yes, a synchronous require call will throw an exception immediately if it fails [1][2], and this happens before any later code—including any Promise-based error handling—can execute [3]. Because require is a strictly synchronous operation [1], it operates within the main execution flow of the Node.js event loop [1]. If the module cannot be resolved, fails to load, or encounters an issue such as ERR_REQUIRE_ASYNC_MODULE (when attempting to load an ES module with top-level await) [4][5], require throws an exception immediately [1][2]. Because this throw is synchronous, it is not a Promise rejection [3]. Consequently: 1. A.catch method attached to a promise will not catch it, as.catch only handles rejected promises, not synchronous exceptions [3][6]. 2. If you have code structured like: require("../dist/nemoclaw"); Promise.resolve(mainPromise).catch(...); The require call will throw before the Promise is even created or the.catch handler is attached [3]. Unless the require call is wrapped in a try...catch block, the exception will bubble up as an uncaught exception, which may crash the Node.js process [3][2]. To handle such failures, you must use a standard try...catch block around the require call [3][2].

Citations:


🏁 Script executed:

#!/bin/bash
set -eu

printf '%s\n' '--- target launcher ---'
cat -n bin/nemoclaw.js

printf '%s\n' '--- error handler and related tests ---'
rg -n -C 5 'reportTopLevelCliError|top-level-error|mainPromise' bin test package.json

Repository: NVIDIA/NemoClaw

Length of output: 5724


🏁 Script executed:

#!/bin/bash
set -eu

printf '%s\n' '--- top-level error contract test ---'
cat -n test/package-contract/cli/top-level-error.test.ts

printf '%s\n' '--- launcher references and build/package configuration ---'
rg -n -C 4 'bin/nemoclaw|dist/nemoclaw|top-level errors|package-contract' package.json package-lock.json bin test --glob '!**/node_modules/**' || true

printf '%s\n' '--- synchronous CommonJS load probe ---'
node - <<'JS'
try {
  require("./__definitely_missing_nemoclaw_entrypoint__");
  console.log("unexpected: require returned");
} catch (error) {
  console.log(JSON.stringify({
    name: error && error.name,
    code: error && error.code,
    caughtSynchronously: true,
  }));
}
let handlerAttached = false;
try {
  const value = require("./__definitely_missing_nemoclaw_entrypoint__");
  Promise.resolve(value).catch(() => { handlerAttached = true; });
} catch (error) {
  console.log(JSON.stringify({
    code: error && error.code,
    promiseCatchAttached: handlerAttached,
    uncaughtPathAvoided: false,
  }));
}
JS

Repository: NVIDIA/NemoClaw

Length of output: 50374


🏁 Script executed:

#!/bin/bash
set -eu

printf '%s\n' '--- focused probe output ---'
node - <<'JS'
let catchAttached = false;
try {
  const value = require("./__definitely_missing_nemoclaw_entrypoint__");
  Promise.resolve(value).catch(() => { catchAttached = true; });
} catch (error) {
  console.log(JSON.stringify({
    name: error.name,
    code: error.code,
    catchAttached,
    reachesFollowingStatement: false,
  }));
}
JS

printf '%s\n' '--- tracked build entrypoints ---'
git ls-files 'dist/nemoclaw*' 'src/**' 'bin/nemoclaw.js' | head -80

printf '%s\n' '--- logger implementation references ---'
rg -n -C 3 'export .*log|const log|log\.error' src bin test/package-contract/cli --glob '*.ts' --glob '*.js' --glob '*.cts'

Repository: NVIDIA/NemoClaw

Length of output: 50372


🏁 Script executed:

#!/bin/bash
set -eu

LOG=/tmp/coderabbit-shell-logs/shell-output-yVCIts
sed -n '1,35p' "$LOG"

Repository: NVIDIA/NemoClaw

Length of output: 1373


Catch synchronous startup failures at the executable boundary.

require("../dist/nemoclaw") executes before the promise rejection handler is registered. If the module or a dependency throws, reportTopLevelCliError is bypassed. Wrap the require() in try/catch and add this failure mode to test/package-contract/cli/top-level-error.test.ts.

🤖 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 `@bin/nemoclaw.js` around lines 26 - 27, Update the executable boundary around
the require of dist/nemoclaw to catch synchronous module-loading failures and
route them through reportTopLevelCliError, while preserving the existing
mainPromise rejection handling. Extend the top-level error coverage in
test/package-contract/cli/top-level-error.test.ts to verify startup failures are
reported through the same handler.

@copy-pr-bot

copy-pr-bot Bot commented Aug 4, 2026

Copy link
Copy Markdown

This pull request requires additional validation before any workflows can run on NVIDIA's runners.

Pull request vetters can view their responsibilities here.

Contributors can view more details about this message here.

@sandl99

sandl99 commented Aug 4, 2026

Copy link
Copy Markdown
Collaborator Author

Superseded by #8222, which contains only the top-level CLI rejection handler and one focused regression test.

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.

[All Platforms][CLI&UX] Multiple error paths surface uncaught Node.js exceptions / un-actionable diagnostics instead of clean errors

1 participant