Skip to content

Commit

Permalink
Remove runtime windows check for mariner
Browse files Browse the repository at this point in the history
Signed-off-by: joshvanl <[email protected]>
  • Loading branch information
JoshVanL committed Aug 19, 2024
1 parent 3f79c26 commit 41b2a54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/standalone/standalone.go
Original file line number Diff line number Diff line change
Expand Up @@ -643,7 +643,7 @@ func runSchedulerService(wg *sync.WaitGroup, errorChan chan<- error, info initIn
"--entrypoint", "./scheduler",
}
schedVolPath := filepath.Join("/var", "lock")
if info.imageVariant == "mariner" && runtime.GOOS == daprWindowsOS {
if info.imageVariant == "mariner" {
schedVolPath = filepath.Join("/run", "lock")
}
if info.schedulerVolume != nil {
Expand Down

0 comments on commit 41b2a54

Please sign in to comment.