Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion @xen-orchestra/vmware-explorer/esxi.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -504,7 +504,7 @@ export default class Esxi extends EventEmitter {
if (stdout) {
const matches = stdout.match(/sha1 Fingerprint=([0-9A-F:]+)/i)
if (matches === null) {
throw new Error(`Can't extract server finger print`, { stdout })
throw new Error(`Can't extract server finger print`, { stdout, stderr, cert })
}
return resolve(matches[1])
}
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.unreleased.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@
- @xen-orchestra/disk-transform minor
- @xen-orchestra/immutable-backups patch
- @xen-orchestra/rest-api minor
- @xen-orchestra/vmware-explorer patch
- @xen-orchestra/web minor
- @xen-orchestra/web-core minor
- @xen-orchestra/xapi patch
Expand Down
Loading