Changeset 1637:c141cb89aa45
- Timestamp:
- 11/20/08 16:15:39
(2 months ago)
- Author:
- Nate Coraor <nate@bx.psu.edu>
- branch:
- default
- Message:
Fix job recovery
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r1632 |
r1637 |
|
| 108 | 108 | self.monitor_thread.start() |
|---|
| 109 | 109 | log.info( "job manager started" ) |
|---|
| 110 | | if self.track_jobs_in_database: |
|---|
| | 110 | if app.config.get_bool( 'enable_job_recovery', True ): |
|---|
| 111 | 111 | self.check_jobs_at_startup() |
|---|
| 112 | 112 | |
|---|
| r1621 |
r1637 |
|
| 25 | 25 | # Should jobs be tracked through the database, rather than in memory |
|---|
| 26 | 26 | ## track_jobs_in_database = true |
|---|
| | 27 | |
|---|
| | 28 | # Enable job recovery (if Galaxy is restarted while cluster jobs are running, |
|---|
| | 29 | # it can "recover" them when it starts). This is not safe to use if you are |
|---|
| | 30 | # running more than one Galaxy server using the same database. |
|---|
| | 31 | #enable_job_recovery = True |
|---|
| 27 | 32 | |
|---|
| 28 | 33 | # Number of concurrent jobs to run (local runner) |
|---|