Skip to content
This repository has been archived by the owner on Aug 19, 2022. It is now read-only.

don't limit the number of FDs on Windows when autoscaling #58

Merged
merged 1 commit into from
Jul 3, 2022
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 sys_not_unix.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//go:build !linux && !darwin
//go:build !linux && !darwin && !windows

package rcmgr

Expand Down
11 changes: 11 additions & 0 deletions sys_windows.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
//go:build windows

package rcmgr

import (
"math"
)

func getNumFDs() int {
return math.MaxInt
}