Overview
Comment: | Turn back on update on db touched. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | v1.80 |
Files: | files | file ages | folders |
SHA1: |
5cad598e0e975b16e0c855ed2ae0cc87 |
User & Date: | matt on 2023-04-13 07:01:20 |
Other Links: | branch diff | manifest | tags |
Context
2023-04-13
| ||
10:51 | Fix for servinffile check-in: f540745977 user: pjhatwal tags: v1.80 | |
07:01 | Turn back on update on db touched. check-in: 5cad598e0e user: matt tags: v1.80 | |
2023-04-12
| ||
18:17 | guarded against non-initialized tt-servinf-file check-in: f971fe9c6c user: mmgraham tags: v1.80 | |
Changes
Modified dashboard.scm from [7114e0e406] to [63dbb0e44d].
︙ | ︙ | |||
671 672 673 674 675 676 677 | (define (dboard:get-tests-for-run-duplicate tabdat run-id run testnamepatt key-vals) (let* ((start-time (current-seconds)) (access-mode (dboard:tabdat-access-mode tabdat)) (num-to-get (string->number (or (configf:lookup *configdat* "setup" "num-tests-to-get") "200"))) (states (hash-table-keys (dboard:tabdat-state-ignore-hash tabdat))) (statuses (hash-table-keys (dboard:tabdat-status-ignore-hash tabdat))) | | | 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 | (define (dboard:get-tests-for-run-duplicate tabdat run-id run testnamepatt key-vals) (let* ((start-time (current-seconds)) (access-mode (dboard:tabdat-access-mode tabdat)) (num-to-get (string->number (or (configf:lookup *configdat* "setup" "num-tests-to-get") "200"))) (states (hash-table-keys (dboard:tabdat-state-ignore-hash tabdat))) (statuses (hash-table-keys (dboard:tabdat-status-ignore-hash tabdat))) (do-not-use-db-file-timestamps #f) ;; (configf:lookup *configdat* "setup" "do-not-use-db-file-timestamps")) ;; this still hosts runs-summary-tab (do-not-use-query-timestamps #t) ;; (configf:lookup *configdat* "setup" "do-not-use-query-timestamps")) ;; this no longer troubles runs-summary-tab (sort-info (get-curr-sort)) (sort-by (vector-ref sort-info 1)) (sort-order (vector-ref sort-info 2)) (bubble-type (if (member sort-order '(testname)) 'testname 'itempath)) |
︙ | ︙ |