File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/Services/Implementations Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -23,8 +23,8 @@ public ConfigurationService(IConfiguration configuration)
23
23
24
24
public long MessageConsumeLimitPerTopicPartition => GetValue < long ? > ( "MessageConsumeLimitPerTopicPartition" ) ?? Int64 . MaxValue ;
25
25
26
- public bool ? EnableAutoCommit => GetValue < bool ? > ( "EnableAutoCommit" ) ;
27
- public bool ? EnableAutoOffsetStore => GetValue < bool ? > ( "EnableAutoOffsetStore" ) ;
26
+ public bool ? EnableAutoCommit => GetValue < bool ? > ( "EnableAutoCommit" ) ?? false ;
27
+ public bool ? EnableAutoOffsetStore => GetValue < bool ? > ( "EnableAutoOffsetStore" ) ?? false ;
28
28
public string GroupId => GetValueOrThrowInvalidConfigException ( "GroupId" ) ;
29
29
public string SaslUsername => GetValue < string > ( "SaslUsername" ) ;
30
30
public string SaslPassword => GetValue < string > ( "SaslPassword" ) ;
You can’t perform that action at this time.
0 commit comments