We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de6807c commit 4ea5491Copy full SHA for 4ea5491
pkg/driver/gid_allocator.go
@@ -20,8 +20,8 @@ type GidAllocator struct {
20
mu sync.Mutex
21
}
22
23
-func NewGidAllocator() GidAllocator {
24
- return GidAllocator{}
+func NewGidAllocator() *GidAllocator {
+ return &GidAllocator{}
25
26
27
// Retrieves the next available GID
pkg/driver/provisioner_ap.go
@@ -20,7 +20,7 @@ import (
type AccessPointProvisioner struct {
BaseProvisioner
tags map[string]string
- gidAllocator GidAllocator
+ gidAllocator *GidAllocator
deleteAccessPointRootDir bool
0 commit comments