File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -250,8 +250,8 @@ export class Configuration implements IConfigurationSettings {
250
250
251
251
if ( value <= 0 ) {
252
252
value = - 1 ;
253
- } else if ( value > 0 && value < 15000 ) {
254
- value = 15000 ;
253
+ } else if ( value > 0 && value < 120000 ) {
254
+ value = 120000 ;
255
255
}
256
256
257
257
this . _updateSettingsWhenIdleInterval = value ;
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ export class HeartbeatPlugin implements IEventPlugin {
10
10
private _intervalId : any ;
11
11
12
12
constructor ( heartbeatInterval : number = 30000 ) {
13
- this . _interval = heartbeatInterval ;
13
+ this . _interval = heartbeatInterval >= 30000 ? heartbeatInterval : 60000 ;
14
14
}
15
15
16
16
public run ( context : EventPluginContext , next ?: ( ) => void ) : void {
You can’t perform that action at this time.
0 commit comments