Skip to content

Commit

Permalink
fix(xo-server/sr.createSmb): fix 'SR_BACKEND_FAILURE_111' by correctl…
Browse files Browse the repository at this point in the history
…y passing username (#7407)

Fixes #7356
Introduced by 06d4115
  • Loading branch information
MathieuRA authored Feb 28, 2024
1 parent ccdd6e2 commit be9fd95
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.unreleased.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
- [Import/VMWare] Correctly handle IDE disks
- [Backups/Full] Fix `Cannot read properties of undefined (reading 'healthCheckVmsWithTags')` (PR [#7396](https://github.com/vatesfr/xen-orchestra/pull/7396))
- [Backups/Healthcheck] Don't run health checks after empty mirror backups (PR [#7396](https://github.com/vatesfr/xen-orchestra/pull/7396))
- [SR/SMB] Fix `SR_BACKEND_FAILURE_111` during SMB storage creation [#7356](https://github.com/vatesfr/xen-orchestra/issues/7356) (PR [#7407](https://github.com/vatesfr/xen-orchestra/pull/7407))

### Packages to release

Expand Down
2 changes: 1 addition & 1 deletion packages/xo-server/src/api/sr.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ export async function createSmb({ host, nameLabel, nameDescription, server, user

const deviceConfig = {
server,
user,
username: user,
password,
}

Expand Down

0 comments on commit be9fd95

Please sign in to comment.