nikivdev/code · error
Some queued commits have review issues: {}. Fix them or use
Error message
Some queued commits have review issues: {}. Fix them or use --allow-issues. What it means
Error "Some queued commits have review issues: {}. Fix them or use --allow-issues." thrown in nikivdev/code.
Source
Thrown at src/commit.rs:7783
.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(
repo_root,
&["rev-list", "--left-right", "--count", "@{u}...HEAD"],
) {
let parts: Vec<&str> = counts.split_whitespace().collect();
if parts.len() == 2 {
let behind = parts[0].parse::<u64>().unwrap_or(0);View on GitHub (pinned to a747e741ae)
When it happens
Trigger: Thrown at src/commit.rs:7783 when the library encounters an invalid state.
Common situations: See trigger scenarios.
AI-assisted analysis of nikivdev/code@a747e741ae (2026-09-01).
Data as JSON: /api/errors/d41db26c5cea243e.
Report an issue: GitHub.