drop withChildren flag — folded into --with-context by pql
test / unit + widget + golden + a11y (push) Failing after 36s
test / integration_test (xvfb) (push) Has been skipped
test / bundle smoke (xvfb 5s) (push) Has been skipped
test / daemon subprocess + web WASM smoke (push) Has been skipped
test / unit + widget + golden + a11y (push) Failing after 36s
test / integration_test (xvfb) (push) Has been skipped
test / bundle smoke (xvfb 5s) (push) Has been skipped
test / daemon subprocess + web WASM smoke (push) Has been skipped
Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -202,7 +202,6 @@ void registerPqlCommands(DaemonDispatcher d, PqlClient pql) {
|
||||
id,
|
||||
withContext: req.args['withContext'] as bool? ?? false,
|
||||
withBlockers: req.args['withBlockers'] as bool? ?? false,
|
||||
withChildren: req.args['withChildren'] as bool? ?? false,
|
||||
);
|
||||
return IpcResponse.ok(id: req.id, data: result);
|
||||
} on PqlException catch (e) {
|
||||
|
||||
@@ -126,12 +126,10 @@ class PqlClient {
|
||||
String id, {
|
||||
bool withContext = false,
|
||||
bool withBlockers = false,
|
||||
bool withChildren = false,
|
||||
}) async {
|
||||
final args = ['ticket', 'show', id];
|
||||
if (withContext) args.add('--with-context');
|
||||
if (withBlockers) args.add('--with-blockers');
|
||||
if (withChildren) args.add('--with-children');
|
||||
return _runObject(args);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user