Skip to content

Commit 5e0a34c

Browse files
committed
BUG/MEDIUM: fix serialization of FCGI option mpxs-conns
1 parent 92a7a70 commit 5e0a34c

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.aspell.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ allowed:
3333
- cond
3434
- conf
3535
- config
36+
- conns
3637
- const
3738
- cpu
3839
- crd
@@ -63,6 +64,7 @@ allowed:
6364
- eslint
6465
- failsafe
6566
- fbt
67+
- fcgi
6668
- usefcgiapp
6769
- formatter
6870
- formatters
@@ -118,6 +120,7 @@ allowed:
118120
- minsize
119121
- mixin
120122
- mkdir
123+
- mpxs
121124
- multipartsearch
122125
- multiselect
123126
- mutex

configuration/fcgi_app.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,7 @@ func SerializeFCGIAppSection(p parser.Parser, data *models.FCGIApp) error {
397397
}
398398
}
399399

400-
if err := p.Set(parser.FCGIApp, data.Name, "option mpxs-conns", serializeSimpleOption(data.GetValues)); err != nil {
400+
if err := p.Set(parser.FCGIApp, data.Name, "option mpxs-conns", serializeSimpleOption(data.MpxsConns)); err != nil {
401401
return err
402402
}
403403

0 commit comments

Comments
 (0)