public inbox for pbs-devel@lists.proxmox.com
 help / color / mirror / Atom feed
From: Christian Ebner <c.ebner@proxmox.com>
To: Jonas Theisen <j.theisen@proxmox.com>, pbs-devel@lists.proxmox.com
Subject: Re: [PATCH proxmox-backup] fix #6251: api: Remove running tasks from errors output
Date: Fri, 28 Aug 2026 09:09:57 +0200	[thread overview]
Message-ID: <a2c3b38c-e5b7-4656-91bc-cf309c5fbf02@proxmox.com> (raw)
In-Reply-To: <20260827154740.427154-1-j.theisen@proxmox.com>

On 8/27/26 5:48 PM, Jonas Theisen wrote:
> Currently running tasks are returned by the PBS API in the query
> for errored tasks.
> This patch adds an additional condition to filter out running tasks
> when queried for errored tasks.
> 
> Reported in https://forum.proxmox.com/threads/163872/,
> https://forum.proxmox.com/threads/185999/ and
> https://bugzilla.proxmox.com/show_bug.cgi?id=6251
> 
> Signed-off-by: Jonas Theisen <j.theisen@proxmox.com>
> ---
>   src/api2/node/tasks.rs | 1 +
>   1 file changed, 1 insertion(+)
> 
> diff --git a/src/api2/node/tasks.rs b/src/api2/node/tasks.rs
> index 96f5e080f..4786820a3 100644
> --- a/src/api2/node/tasks.rs
> +++ b/src/api2/node/tasks.rs
> @@ -610,6 +610,7 @@ pub fn list_tasks(
>               (Some(state), Some(filters)) if !filters.contains(&tasktype(state)) => {
>                   continue;
>               }
> +            (None, _) if errors => continue,
>               (None, Some(_)) => continue,
>               _ => {}
>           }

Thanks for the patch! Did you also check the task filter implementations 
in PVE/PDM?

At least for PDM there is some analogous logic [0] which at first glance 
requires adaption as well. Note that there it is shared for PVE and PBS.

[0] 
https://git.proxmox.com/?p=proxmox-datacenter-manager.git;a=blob;f=server/src/remote_tasks/mod.rs;h=5fba867dfc675970ebc5037165f49efee439f545;hb=HEAD#l143




  parent reply	other threads:[~2026-08-28  7:10 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-08-27 15:47 [PATCH proxmox-backup] fix #6251: api: Remove running tasks from errors output Jonas Theisen
2026-08-28  6:31 ` Maximiliano Sandoval
2026-08-28  7:09 ` Christian Ebner [this message]
2026-08-28 15:54   ` Jonas Theisen

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=a2c3b38c-e5b7-4656-91bc-cf309c5fbf02@proxmox.com \
    --to=c.ebner@proxmox.com \
    --cc=j.theisen@proxmox.com \
    --cc=pbs-devel@lists.proxmox.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Service provided by Proxmox Server Solutions GmbH | Privacy | Legal