Skip to content

Commit 5602950

Browse files
committed
Update docs
1 parent cdb09c2 commit 5602950

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs-src/scheduling.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -283,9 +283,9 @@ sudo apt-get install supervisor
283283
Supervisor configuration files are stored in the **/etc/supervisor/conf.d** directory. Multiple files can be created in this directory to specify different programs, or multiple instances of the same program, for Supervisor to monitor. Copy this sample config into a file called **/etc/supervisor/conf.d/inengine-scheduler.conf**.
284284

285285
```ini
286-
[program:inengine-scheduler]
286+
[program:inengine]
287287
process_name=%(program_name)s_%(process_num)02d
288-
directory=/path/to/scheduler
288+
directory=/path/to/inengine
289289
command=mono inengine.exe -s
290290
autostart=true
291291
autorestart=true
@@ -307,7 +307,7 @@ sudo supervisorctl update
307307
Now, simply start the scheduler workers with the **supervisorctl** program:
308308

309309
```bash
310-
sudo supervisorctl start inengine-scheduler:*
310+
sudo supervisorctl start inengine:*
311311
```
312312

313313
### In a Container with Docker

0 commit comments

Comments
 (0)