Merge staging 12feb (#7993)

Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
This commit is contained in:
Andrey Sobolev
2025-02-12 23:18:50 +07:00
committed by GitHub
parent 1a76ebcc80
commit db0bbe31aa
71 changed files with 1607 additions and 357 deletions
-10
View File
@@ -589,8 +589,6 @@ export function devTool (
// })
// },
// cmd.region,
// true,
// true,
// 5000, // 5 gigabytes per blob
// sharedPipelineContextVars,
// async (storage, workspaceStorage) => {
@@ -661,8 +659,6 @@ export function devTool (
// })
// },
// cmd.region,
// false,
// false,
// 100,
// sharedPipelineContextVars
// )
@@ -859,8 +855,6 @@ export function devTool (
// )
// .option('-bl, --blobLimit <blobLimit>', 'A blob size limit in megabytes (default 15mb)', '15')
// .option('-f, --force', 'Force backup', false)
// .option('-f, --fresh', 'Force fresh backup', false)
// .option('-c, --clean', 'Force clean of old backup files, only with fresh backup option', false)
// .option('-t, --timeout <timeout>', 'Connect timeout in seconds', '30')
// .action(
// async (
@@ -869,8 +863,6 @@ export function devTool (
// cmd: {
// skip: string
// force: boolean
// fresh: boolean
// clean: boolean
// timeout: string
// include: string
// blobLimit: string
@@ -882,8 +874,6 @@ export function devTool (
// const endpoint = await getTransactorEndpoint(generateToken(systemAccountEmail, wsid), 'external')
// await backup(toolCtx, endpoint, wsIds, storage, {
// force: cmd.force,
// freshBackup: cmd.fresh,
// clean: cmd.clean,
// include: cmd.include === '*' ? undefined : new Set(cmd.include.split(';').map((it) => it.trim())),
// skipDomains: (cmd.skip ?? '').split(';').map((it) => it.trim()),
// timeout: 0,