We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09555f8 commit 6cb64c7Copy full SHA for 6cb64c7
src/commands/force/package/beta/uninstall.ts
@@ -49,7 +49,7 @@ export class PackageUninstallCommand extends SfdxCommand {
49
password: undefined,
50
});
51
52
- const result = await packageVersion.uninstall(this.flags.wait as Duration);
+ const result = await packageVersion.uninstall(Duration.seconds(30), this.flags.wait as Duration);
53
54
const arg = result.Status === 'Success' ? [result.SubscriberPackageVersionId] : [result.Id, this.org.getUsername()];
55
this.ux.log(messages.getMessage(result.Status, arg));
0 commit comments