SIGINT exits prompt process but model work continues and OTel later reports success
Nadie ha tomado este issue todavía.
- Lenguaje dominante
- Shell
- Estrellas
- 11.2k
- Forks
- 1.9k
- Merge medio
- 14 h 16 min
- PR fusionados (30 d)
- 6
Descripción
Describe the bug
Interrupting an active non-interactive model call with SIGINT exits the foreground Copilot process, but a descendant/native worker continues producing output and completing the model call. The OTel file appears much later and records the interrupted operation as a successful completion rather than cancelled.
This means cancellation is not promptly propagated to the underlying work and can continue consuming model resources after the foreground process has exited.
Affected version
GitHub Copilot CLI 1.0.83 on macOS.
Steps to reproduce
- Enable the OTel file exporter and force content capture off.
- Run
copilot --prompt ... --stream on --model <available-model> --output-format jsonwith a synthetic prompt that produces a long response; redirect output to a file. - Wait for
model.call_startand send SIGINT before the firstassistant.message_delta. - Record foreground process exit, then continue observing the output and telemetry paths.
Observed result
- SIGINT was sent with zero response deltas observed.
- The foreground process returned as terminated by SIGINT.
- Approximately 55 seconds after the foreground process had exited, inherited output continued to grow and the telemetry file appeared.
- Output contained partial response deltas but no
model.call_finishedorassistant.turn_endrecord. - OTel nevertheless contained a completed
chatspan and rootinvoke_agentspan with status code 0, finish reasonstop, response model, and full token usage. No cancellation/error attribute was present.
A prior late-stream attempt showed the same delayed-file behavior but was not suitable for proving when cancellation was sent. The reproduction above signals immediately after model.call_start.
Expected behavior
On the first termination signal, Copilot should propagate cancellation to child/native inference work, end active spans with a cancelled/error outcome, force-flush and shut down exporters with a bounded timeout, and then preserve the conventional signal exit result. No model work or output writer should remain active after the foreground command reports termination.
A downstream Collector cannot correct a successful producer span or cancel orphaned producer work.
Privacy
The reproduction used only synthetic content and OTEL_INSTRUMENTATION_GENAI_CAPTURE_MESSAGE_CONTENT=false. No credentials or user data are included.
Guía de contribución
Primeros pasos
- Lee el issue completo y luego la guía de contribución del proyecto.
- Comenta en el issue que vas a ocuparte — evita que dos personas hagan lo mismo.
- Haz un fork del repositorio y trabaja en una rama.
- Abre un pull request que haga referencia al número del issue.
Línea de trabajo
Traza la ruta no interactiva con --prompt desde el manejo de SIGINT, pasando por el trabajo de inferencia de los procesos hijo/nativos, hasta el exportador de archivos de OTel. Reproduce el escenario de una señal antes del primer delta y verifica después que la cancelación detenga el trabajo de los descendientes, que los spans activos finalicen con un resultado cancelado o de error, que los exporters hagan flush dentro de un timeout acotado y que no quede ningún writer de salida tras la terminación.
Escrito por el modelo de indexación a partir del texto del issue.
Evaluación
- Stack tecnológico
- shell
- Área
- cli, observability-sre
- Tipo de issue
- Error
- Dificultad
- 4/5
- Tiempo estimado
- 3-5 días
- Estado de actividad
- Activo
- Claridad
- Bastante claro
- Aptitud para principiantes
- 45/100