File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
pkg/custompluginmonitor/types Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -82,12 +82,12 @@ func (cpc *CustomPluginConfig) ApplyConfiguration() error {
82
82
cpc .PluginGlobalConfig .InvokeIntervalString = & defaultInvokeIntervalString
83
83
}
84
84
85
- invoke_interval , err := time .ParseDuration (* cpc .PluginGlobalConfig .InvokeIntervalString )
85
+ invokeInterval , err := time .ParseDuration (* cpc .PluginGlobalConfig .InvokeIntervalString )
86
86
if err != nil {
87
87
return fmt .Errorf ("error in parsing invoke interval %q: %v" , * cpc .PluginGlobalConfig .InvokeIntervalString , err )
88
88
}
89
89
90
- cpc .PluginGlobalConfig .InvokeInterval = & invoke_interval
90
+ cpc .PluginGlobalConfig .InvokeInterval = & invokeInterval
91
91
92
92
if cpc .PluginGlobalConfig .MaxOutputLength == nil {
93
93
cpc .PluginGlobalConfig .MaxOutputLength = & defaultMaxOutputLength
You can’t perform that action at this time.
0 commit comments