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 5586120 commit e6af242Copy full SHA for e6af242
cmd/laclm/main.go
@@ -182,6 +182,7 @@ func run(ctx context.Context) error {
182
grpc.WithKeepaliveParams(kacp),
183
)
184
185
+ /* THIS CODE IS SAFE TO BE REMOVED */
186
for _, system := range config.BackendConfig.FileSystemServers {
187
/* check if system is remote */
188
if system.Remote != nil {
@@ -215,7 +216,7 @@ func run(ctx context.Context) error {
215
216
sessionManager := session.NewManager(logRedisClient, archivalPQ, errChLog)
217
218
/* create a permissions processor */
- permProcessor := transprocessor.NewPermProcessor(errChLog)
219
+ permProcessor := transprocessor.NewPermProcessor(pool, errChLog)
220
221
/* handle session and processor errors */
222
wg.Add(1)
0 commit comments