nikivdev/code · error
Some queued commits do not have a clean review (timed out/mi
Error message
Some queued commits do not have a clean review (timed out/missing): {}. Re-run review or use --allow-unreviewed. What it means
Error "Some queued commits do not have a clean review (timed out/missing): {}. Re-run review or use --allow-unreviewed." thrown in nikivdev/code.
Source
Thrown at src/commit.rs:7777
for entry in &candidates {
let issues_present = entry.review_issues_found
|| entry
.review
.as_deref()
.map(|s| !s.trim().is_empty())
.unwrap_or(false);
let unreviewed =
(entry.version >= 2 && !entry.review_completed) || entry.review_timed_out;
if issues_present && !allow_issues {
bad_issues.push(short_sha(&entry.commit_sha).to_string());
}
if unreviewed && !allow_unreviewed {
bad_unreviewed.push(short_sha(&entry.commit_sha).to_string());
}
}
if !bad_unreviewed.is_empty() {
bail!(
"Some queued commits do not have a clean review (timed out/missing): {}. Re-run review or use --allow-unreviewed.",
bad_unreviewed.join(", ")
);
}
if !bad_issues.is_empty() {
bail!(
"Some queued commits have review issues: {}. Fix them or use --allow-issues.",
bad_issues.join(", ")
);
}
}
let head_sha = git_capture_in(repo_root, &["rev-parse", "HEAD"])?;
let head_sha = head_sha.trim().to_string();
ensure_safe_upstream_for_commit_queue_push(repo_root, &head_sha, force)?;
if git_try_in(repo_root, &["fetch", "--quiet"]).is_ok() {
if let Ok(counts) = git_capture_in(View on GitHub (pinned to a747e741ae)
When it happens
Trigger: Thrown at src/commit.rs:7777 when the library encounters an invalid state.
Common situations: See trigger scenarios.
Understand the failure class
- Timeouts: ETIMEDOUT, deadlines, and hung requests — what actually expires when a request times out.
AI-assisted analysis of nikivdev/code@a747e741ae (2026-09-01).
Data as JSON: /api/errors/63b5b6f0878b2167.
Report an issue: GitHub.