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