Skip to content

Commit b0b222d

Browse files
committed
Enable the scheduler by default
1 parent e20ab17 commit b0b222d

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

ansible/README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -195,12 +195,13 @@ Set the value of pause-grace to 10s by default
195195
.
196196
```
197197

198-
#### Enable the scheduler
199-
- Make sure you enable the scheduler by configuring `scheduler_enable`.
198+
#### Disable the scheduler
199+
- You can disable the scheduler by configuring `scheduler_enable`.
200+
- The scheduler is enabled by default.
200201

201202
**ansible/environments/local/group_vars/all**
202203
```yaml
203-
scheduler_enable: true
204+
scheduler_enable: false
204205
```
205206
206207
#### [Optional] Enable ElasticSearch Activation Store

ansible/group_vars/all

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -498,7 +498,7 @@ durationChecker:
498498
spi: "{{ duration_checker_spi | default('') }}"
499499
timeWindow: "{{ duration_checker_time_window | default('1 d') }}"
500500

501-
enable_scheduler: "{{ scheduler_enable | default(false) }}"
501+
enable_scheduler: "{{ scheduler_enable | default(true) }}"
502502

503503
scheduler:
504504
protocol: "{{ scheduler_protocol | default('http') }}"

0 commit comments

Comments
 (0)