gustafn
committed
on 05 Nov 24
reduce startup speed by running update_nx_docs in the background
openacs-4/.../acs-bootstrap-installer/tcl/procdoc-init.tcl (+2 -4)
1 1 if {[info commands ::xo::api] ne ""} {   
2       ns_log notice "updating online documentation using xo::api"
3       ::xo::api update_nx_docs
4       ns_log notice "updating online documentation using xo::api DONE"
  2     ad_schedule_proc -thread t -once t 1 ::xo::api update_nx_docs
5 3 } else {
6 4     ns_log warning "INIT: no xo::api available"
7 5 }
8 6
9 7 # Local variables:
10 8 #    mode: tcl
11 9 #    tcl-indent-level: 4
12 10 #    indent-tabs-mode: nil
13 11 # End: