Skip to content

Commit 3e40044

Browse files
committed
BUG/MEDIUM: fix serialization of FCGI option mpxs-conns
1 parent 830c200 commit 3e40044

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
@@ -35,6 +35,7 @@ allowed:
3535
- cond
3636
- conf
3737
- config
38+
- conns
3839
- const
3940
- cpu
4041
- crd
@@ -65,6 +66,7 @@ allowed:
6566
- eslint
6667
- failsafe
6768
- fbt
69+
- fcgi
6870
- usefcgiapp
6971
- formatter
7072
- formatters
@@ -122,6 +124,7 @@ allowed:
122124
- minsize
123125
- mixin
124126
- mkdir
127+
- mpxs
125128
- multipartsearch
126129
- multiselect
127130
- 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)