JobRunner: update default settings

This commit is contained in:
Jonathan Jenne 2019-04-30 14:41:56 +02:00
parent 6bf84421d6
commit 50d205717f
4 changed files with 7 additions and 7 deletions

View File

@ -9,7 +9,7 @@ Public Class JobConfigParser
Private Const ARGS_LIST_DELIMITER As String = "|"
''' <summary>
''' Parse a job config string. ex: True|* 0/3 * * * ?|Arg1=Foo
''' Parse a job config string. ex: True|0 0/3 * * * ?|Arg1::Foo,Arg2::Bar
''' </summary>
''' <param name="ConfigString"></param>
''' <returns>A populated JobConfig object</returns>

View File

@ -29,10 +29,10 @@
<value>False</value>
</setting>
<setting name="ADSYNC_CONFIG" serializeAs="String">
<value />
<value>True|0 0 0/1 * * ?|RootPath::LDAP://DIGITALDATA</value>
</setting>
<setting name="TEST_CONFIG" serializeAs="String">
<value>False|10/0 * * * * ?|Foo:Bar</value>
<value>False|10/0 * * * * ?|Foo::Bar</value>
</setting>
</DigitalData.Services.JobRunner.My.MySettings>
</applicationSettings>

View File

@ -119,7 +119,7 @@ Namespace My
<Global.System.Configuration.ApplicationScopedSettingAttribute(), _
Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
Global.System.Configuration.DefaultSettingValueAttribute("")> _
Global.System.Configuration.DefaultSettingValueAttribute("True|0 0 0/1 * * ?|RootPath::LDAP://DIGITALDATA")> _
Public ReadOnly Property ADSYNC_CONFIG() As String
Get
Return CType(Me("ADSYNC_CONFIG"),String)
@ -128,7 +128,7 @@ Namespace My
<Global.System.Configuration.ApplicationScopedSettingAttribute(), _
Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
Global.System.Configuration.DefaultSettingValueAttribute("False|10/0 * * * * ?|Foo:Bar")> _
Global.System.Configuration.DefaultSettingValueAttribute("False|10/0 * * * * ?|Foo::Bar")> _
Public ReadOnly Property TEST_CONFIG() As String
Get
Return CType(Me("TEST_CONFIG"),String)

View File

@ -24,10 +24,10 @@
<Value Profile="(Default)">False</Value>
</Setting>
<Setting Name="ADSYNC_CONFIG" Type="System.String" Scope="Application">
<Value Profile="(Default)" />
<Value Profile="(Default)">True|0 0 0/1 * * ?|RootPath::LDAP://DIGITALDATA</Value>
</Setting>
<Setting Name="TEST_CONFIG" Type="System.String" Scope="Application">
<Value Profile="(Default)">False|10/0 * * * * ?|Foo:Bar</Value>
<Value Profile="(Default)">False|10/0 * * * * ?|Foo::Bar</Value>
</Setting>
</Settings>
</SettingsFile>