Skip to content

Commit 3cfa877

Browse files
committed
BUG/MEDIUM: fix serialization of log-steps
1 parent ea6050a commit 3cfa877

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

configuration/configuration.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3022,7 +3022,7 @@ func (s *SectionObject) logSteps(field reflect.Value) error {
30223022
if len(d) == 0 {
30233023
return s.set("log-steps", nil)
30243024
}
3025-
return s.set("log-steps", d)
3025+
return s.set("log-steps", types.StringC{Value: d})
30263026
}
30273027

30283028
func (c *client) deleteSection(section parser.Section, name string, transactionID string, version int64) error {

0 commit comments

Comments
 (0)