mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
Fix error deleting mount (#8637)
This commit is contained in:
@@ -275,9 +275,9 @@ export class ClusterController {
|
|||||||
mountPath);
|
mountPath);
|
||||||
}
|
}
|
||||||
|
|
||||||
private async deleteMountImpl(mountPath: string): Promise<MountResponse> {
|
private async deleteMountImpl(self: ClusterController, mountPath: string): Promise<MountResponse> {
|
||||||
let auth = await this._authPromise;
|
let auth = await self._authPromise;
|
||||||
const api = new DefaultApiWrapper(this._username, this._password, this._url, auth);
|
const api = new DefaultApiWrapper(self._username, self._password, self._url, auth);
|
||||||
|
|
||||||
const mountStatus = await api.deleteMount('', '', mountPath);
|
const mountStatus = await api.deleteMount('', '', mountPath);
|
||||||
return {
|
return {
|
||||||
|
|||||||
Reference in New Issue
Block a user