mirror of
https://codeberg.org/Toasterson/solstice-ci.git
synced 2026-04-10 13:20:41 +00:00
Stop console tailer before SSH execution to prevent log duplication
This commit is contained in:
parent
3e90f9566a
commit
0c3fb84d62
1 changed files with 4 additions and 0 deletions
|
|
@ -265,6 +265,10 @@ impl<H: Hypervisor + 'static> Scheduler<H> {
|
||||||
Duration::from_secs(exec_cfg.ssh_connect_timeout_secs),
|
Duration::from_secs(exec_cfg.ssh_connect_timeout_secs),
|
||||||
).await {
|
).await {
|
||||||
Ok(sess) => {
|
Ok(sess) => {
|
||||||
|
// Stop console tailer — SSH is connected, runner output
|
||||||
|
// will be captured via SSH stdout/stderr, not serial console.
|
||||||
|
let _ = console_stop_tx.send(true);
|
||||||
|
|
||||||
// Upload runner binary
|
// Upload runner binary
|
||||||
let runner_path = if is_illumos_label(&item.spec.label) {
|
let runner_path = if is_illumos_label(&item.spec.label) {
|
||||||
&exec_cfg.runner_illumos_path
|
&exec_cfg.runner_illumos_path
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue