From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [212.224.123.68]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by lists.proxmox.com (Postfix) with ESMTPS id 4AD7695074 for ; Tue, 28 Feb 2023 12:36:02 +0100 (CET) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 2A3E36492 for ; Tue, 28 Feb 2023 12:35:32 +0100 (CET) Received: from proxmox-new.maurer-it.com (proxmox-new.maurer-it.com [94.136.29.106]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by firstgate.proxmox.com (Proxmox) with ESMTPS for ; Tue, 28 Feb 2023 12:35:31 +0100 (CET) Received: from proxmox-new.maurer-it.com (localhost.localdomain [127.0.0.1]) by proxmox-new.maurer-it.com (Proxmox) with ESMTP id F237E48BB3 for ; Tue, 28 Feb 2023 12:35:30 +0100 (CET) Date: Tue, 28 Feb 2023 12:35:24 +0100 From: Fabian =?iso-8859-1?q?Gr=FCnbichler?= To: Proxmox Backup Server development discussion References: <20230223125540.1298442-1-h.laimer@proxmox.com> In-Reply-To: <20230223125540.1298442-1-h.laimer@proxmox.com> MIME-Version: 1.0 User-Agent: astroid/0.16.0 (https://github.com/astroidmail/astroid) Message-Id: <1677584092.lm265v1xv9.astroid@yuna.none> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-SPAM-LEVEL: Spam detection results: 0 AWL 0.126 Adjusted score from AWL reputation of From: address BAYES_00 -1.9 Bayes spam probability is 0 to 1% KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record URIBL_BLOCKED 0.001 ADMINISTRATOR NOTICE: The query to URIBL was blocked. See http://wiki.apache.org/spamassassin/DnsBlocklists#dnsbl-block for more information. [mount.rs, sync.rs, diff.rs, proxmox.com, remote.rs, pull.rs, proxmox-backup-manager.rs, datastore.rs, jobs.rs, main.rs, tasks.rs, catalog.rs] Subject: Re: [pbs-devel] [PATCH proxmox-backup v2 0/5] local sync-jobs X-BeenThere: pbs-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox Backup Server development discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 28 Feb 2023 11:36:02 -0000 On February 23, 2023 1:55 pm, Hannes Laimer wrote: > Add support for local sync. SyncJobs without a remote are considered loca= l, and > use a different logic for pulling. In the course of adding the extra pull= logic, > the pull code was rewritten to basically be source independent. Also cli > completion and the UI was updated to allow Remotes in SyncJobs to be opti= onal. some sort of changelog between v1 and v2 would be nice both here and for th= e patches themselves.. > Hannes Laimer (5): > api2: make Remote for SyncJob optional > ui: add support for optional Remote in SyncJob > manager: add completion for opt. Remote in SyncJob > pbs-client: accept a ref to a HttpClient in BackupReader::starting > pull: add support for local pulling >=20 > pbs-api-types/src/datastore.rs | 2 +- > pbs-api-types/src/jobs.rs | 4 +- > pbs-client/src/backup_reader.rs | 2 +- > pbs-datastore/src/read_chunk.rs | 2 +- > proxmox-backup-client/src/catalog.rs | 4 +- > proxmox-backup-client/src/main.rs | 2 +- > proxmox-backup-client/src/mount.rs | 2 +- > src/api2/config/remote.rs | 2 +- > src/api2/config/sync.rs | 41 +- > src/api2/node/tasks.rs | 4 +- > src/api2/pull.rs | 79 +- > src/bin/proxmox-backup-manager.rs | 67 +- > src/bin/proxmox_backup_debug/diff.rs | 2 +- > src/server/email_notifications.rs | 16 +- > src/server/pull.rs | 1023 ++++++++++++++++---------- > www/form/RemoteTargetSelector.js | 29 +- > www/window/SyncJobEdit.js | 8 +- > 17 files changed, 812 insertions(+), 477 deletions(-) >=20 > --=20 > 2.30.2 >=20 >=20 >=20 > _______________________________________________ > pbs-devel mailing list > pbs-devel@lists.proxmox.com > https://lists.proxmox.com/cgi-bin/mailman/listinfo/pbs-devel >=20 >=20 >=20