Skip to content

Commit

Permalink
Threaded mode not using place.
Browse files Browse the repository at this point in the history
  • Loading branch information
zaneenders committed Sep 29, 2024
1 parent 3422a3f commit c7e02e9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/api/server.rkt
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,10 @@
(place-channel-put manager (list 'improve b))
(log "Getting improve results.\n")
(place-channel-get a)]
[else #f])) ; TODO Not supported yet
[else
(for/list ([(job-id result) (in-hash single-threaded-cache)]
#:when (equal? (hash-ref result 'command) "improve"))
(get-table-data-from-hash result (make-path job-id)))]))

(define (job-count)
(cond
Expand Down

0 comments on commit c7e02e9

Please sign in to comment.