Overview
Comment: | caught a bug |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | v1.65-telemetry |
Files: | files | file ages | folders |
SHA1: |
589e316b300ba53abd4c61730283ec7a |
User & Date: | bjbarcla on 2019-02-27 19:22:29 |
Other Links: | branch diff | manifest | tags |
Context
2019-02-27
| ||
19:46 | fixes for: stuck in running; stuck in remotehoststart; marking running test as dead; kill-run/kill-rerun not catching PREQ_FAIL, PREQ_DISCARD check-in: d9ba150235 user: bjbarcla tags: v1.65 | |
19:22 | caught a bug Closed-Leaf check-in: 589e316b30 user: bjbarcla tags: v1.65-telemetry | |
18:58 | bugfixes check-in: 1a51a582df user: bjbarcla tags: v1.65-telemetry | |
Changes
Modified launch.scm from [09bab695d5] to [8c6f051622].
︙ | ︙ | |||
408 409 410 411 412 413 414 | (kill-job? #f)) (common:telemetry-log "zombie" (conc "launch:monitor-job - decision time encountered at "(current-seconds)" with last-sync="last-sync" do-sync="do-sync" over-time="over-time" update-period="update-period)) (cond ((test-get-kill-request run-id test-id) (set! kill-reason "KILLING TEST since received kill request (KILLREQ)") (set! kill-job? #t)) ((and runtlim (> (- (current-seconds) start-seconds) runtlim)) | | | 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 | (kill-job? #f)) (common:telemetry-log "zombie" (conc "launch:monitor-job - decision time encountered at "(current-seconds)" with last-sync="last-sync" do-sync="do-sync" over-time="over-time" update-period="update-period)) (cond ((test-get-kill-request run-id test-id) (set! kill-reason "KILLING TEST since received kill request (KILLREQ)") (set! kill-job? #t)) ((and runtlim (> (- (current-seconds) start-seconds) runtlim)) (set! kill-reason (conc "KILLING TEST DUE TO TIME LIMIT EXCEEDED! Runtime=" (- (current-seconds) start-seconds) " seconds, limit=" runtlim)) (set! kill-job? #t)) ((equal? status "DEAD") (set! kill-reason "KILLING TEST because it was marked as DEAD by launch:handle-zombie-tests (might indicate really overloaded server or else overzealous setup.deadtime)") (set! kill-job? #t))) (debug:print 4 *default-log-port* "cpu: " new-cpu-load " disk: " new-disk-free " last-sync: " last-sync " do-sync: " do-sync) (launch:handle-zombie-tests run-id) |
︙ | ︙ |