mirror of
https://git.proxmox.com/git/proxmox-backup
synced 2025-08-15 18:16:45 +00:00
jobstate: fix wrong error message
we try to create the job stat dir, not the rrdb one Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
This commit is contained in:
parent
d97ff8ae2a
commit
98c359241a
@ -88,7 +88,7 @@ pub fn create_jobstate_dir() -> Result<(), Error> {
|
||||
.group(backup_user.gid);
|
||||
|
||||
create_path(JOB_STATE_BASEDIR, Some(opts.clone()), Some(opts))
|
||||
.map_err(|err: Error| format_err!("unable to create rrdb stat dir - {}", err))?;
|
||||
.map_err(|err: Error| format_err!("unable to create job stat dir - {}", err))?;
|
||||
|
||||
Ok(())
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user