Error during SESSION activate. I got the message
Got 'database is locked' executing 'select * from rivet_session WHERE 1 = 1 AND ip_address = '192.168.10.136' AND session_id = 'C437D1FA1CC93335C79147D0346A3FC6''
couldn't read file "/enadisk/maison/moumou/ordali/Build/linux-x86_64/lib/tcllib-1.18/modules/uuid.tcl": no such file or directory while executing "source /enadisk/maison/moumou/ordali/Build/linux-x86_64/lib/tcllib-1.18/modules/uuid.tcl" ("uplevel" body line 1) invoked from within "uplevel #0 [list source [file join $path $file]]" (procedure "::tool::pathload" line 26) invoked from within "::tool::pathload $cwd { uuid.tcl ensemble.tcl metaclass.tcl event.tcl } $idxfile" (in namespace eval "::request" script line 52) invoked from within "namespace eval ::request $script" ("::try" body line 12)OUTPUT BUFFER:
package require Tcl 8.6 ;# try in pipeline.tcl. Possibly other things. package require dicttool package require TclOO package require sha1 package require oo::meta 0.4.1 package require oo::dialect ::oo::dialect::create ::tool ::namespace eval ::tool {} set ::tool::trace 0 ### # topic: 27196ce57a9fd09198a0b277aabdb0a96b432cb9 ### proc ::tool::pathload {path {order {}} {skip {}}} { ### # On windows while running under a VFS, the system sometimes # gets confused about the volume we are running under ### if {$::tcl_platform(platform) eq "windows"} { if {[string range $path 1 6] eq ":/zvfs"} { set path [string range $path 2 end] } } set loaded {pkgIndex.tcl index.tcl} foreach item $skip { lappend loaded [file tail $skip] } if {[file exists [file join $path metaclass.tcl]]} { lappend loaded metaclass.tcl uplevel #0 [list source [file join $path metaclass.tcl]] } if {[file exists [file join $path baseclass.tcl]]} { lappend loaded baseclass.tcl uplevel #0 [list source [file join $path baseclass.tcl]] } foreach file $order { set file [file tail $file] if {$file in $loaded} continue uplevel #0 [list source [file join $path $file]] lappend loaded $file } foreach file [lsort -dictionary [glob -nocomplain [file join $path *.tcl]]] { if {[file tail $file] in $loaded} continue uplevel #0 [list source $file] lappend loaded [file tail $file] } } set idxfile [file join [pwd] [info script]] set cwd [file dirname $idxfile] set ::tool::tool_root [file dirname $cwd] ::tool::pathload $cwd { uuid.tcl ensemble.tcl metaclass.tcl event.tcl } $idxfile package provide tool 0.5