We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f0fe7d2 commit bc0ba12Copy full SHA for bc0ba12
pkg/automationconfig/automation_config.go
@@ -94,6 +94,12 @@ func (p *Process) SetReplicaSetName(replSetName string) *Process {
94
return p.SetArgs26Field("replication.replSetName", replSetName)
95
}
96
97
+func (p *Process) SetSystemLog(systemLog SystemLog) *Process {
98
+ return p.SetArgs26Field("systemLog.path", systemLog.Path).
99
+ SetArgs26Field("systemLog.destination", systemLog.Destination).
100
+ SetArgs26Field("systemLog.logAppend", systemLog.LogAppend)
101
+}
102
+
103
func (p *Process) SetWiredTigerCache(cacheSizeGb *float32) *Process {
104
if cacheSizeGb == nil {
105
return p
0 commit comments