mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-05-19 00:02:51 -07:00
fix(core): set shell background completionBehavior to silent
Shell background completions are set to silent until the idle wake-up listener is in place, otherwise injections get buffered but never consumed when the agent is idle.
This commit is contained in:
@@ -455,7 +455,7 @@ export class ShellExecutionService {
|
||||
: 'successfully';
|
||||
return `[Background command completed ${status}. Output saved to ${logPath}]`;
|
||||
},
|
||||
completionBehavior: 'notify',
|
||||
completionBehavior: 'silent',
|
||||
})
|
||||
: undefined;
|
||||
|
||||
@@ -797,7 +797,7 @@ export class ShellExecutionService {
|
||||
: 'successfully';
|
||||
return `[Background command completed ${status}. Output saved to ${logPath}]`;
|
||||
},
|
||||
completionBehavior: 'notify',
|
||||
completionBehavior: 'silent',
|
||||
}).result;
|
||||
|
||||
let processingChain = Promise.resolve();
|
||||
|
||||
Reference in New Issue
Block a user