Skip to content

Commit

Permalink
Merge pull request #2552 from andyzhangx/disk-run-ut-with-hp-enabled
Browse files Browse the repository at this point in the history
test: run windows ut with host process enabled
  • Loading branch information
andyzhangx authored Oct 12, 2024
2 parents cdd0aa6 + d7f5a2b commit 6bd434d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pkg/azuredisk/fake_azuredisk.go
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ func newFakeDriverV1(ctrl *gomock.Controller) (*fakeDriverV1, error) {
driver.diskController = NewManagedDiskController(driver.cloud)
driver.clientFactory = driver.cloud.ComputeClientFactory

mounter, err := mounter.NewSafeMounter(driver.enableWindowsHostProcess, driver.useCSIProxyGAInterface)
mounter, err := mounter.NewSafeMounter(true, driver.useCSIProxyGAInterface)
if err != nil {
return nil, err
}
Expand Down
2 changes: 1 addition & 1 deletion pkg/azuredisk/fake_azuredisk_v2.go
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ func newFakeDriverV2(ctrl *gomock.Controller) (*fakeDriverV2, error) {
driver.diskController = NewManagedDiskController(driver.cloud)
driver.clientFactory = driver.cloud.ComputeClientFactory

mounter, err := mounter.NewSafeMounter(driver.enableWindowsHostProcess, driver.useCSIProxyGAInterface)
mounter, err := mounter.NewSafeMounter(true, driver.useCSIProxyGAInterface)
if err != nil {
return nil, err
}
Expand Down

0 comments on commit 6bd434d

Please sign in to comment.