Commit dd3f37ac authored by Marc Gravell's avatar Marc Gravell

Change config check to every minute by default

parent 47e1ec70
...@@ -264,9 +264,9 @@ public CommandMap CommandMap ...@@ -264,9 +264,9 @@ public CommandMap CommandMap
internal RemoteCertificateValidationCallback CertificateValidationCallback { get { return CertificateValidation; } private set { CertificateValidation = value; } } internal RemoteCertificateValidationCallback CertificateValidationCallback { get { return CertificateValidation; } private set { CertificateValidation = value; } }
/// <summary> /// <summary>
/// Check configuration every n seconds (disabled by default) /// Check configuration every n seconds (every minute by default)
/// </summary> /// </summary>
public int ConfigCheckSeconds { get { return configCheckSeconds.GetValueOrDefault(); } set { configCheckSeconds = value; } } public int ConfigCheckSeconds { get { return configCheckSeconds.GetValueOrDefault(60); } set { configCheckSeconds = value; } }
/// <summary> /// <summary>
/// Parse the configuration from a comma-delimited configuration string /// Parse the configuration from a comma-delimited configuration string
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment