I have been seeing another 'qlot issue with the claxiom code base, and it's not really a surprise, since cl-notebook didn't stay current with changes to the APIs of dependencies. I already corrected one that entailed a simple change to the package name for install-quicklisp in main.lisp, and I guessed that there might be other issues that would need to be addressed.
Occasionally, the slime debugger is opening with a complaint about a missing ~/.claxiom/.qlot/ directory. Of course, it's right there in the qlot README. We inherited the initialization process from cl-notebook in [main.lisp], which installs quicklisp in the directory \~/.claxiom/quicklisp/. It looks like we get through the installation without any issues, but the missing '~.claxiom/.qlot/` condition is raised while the server has been running without issue and the server receives a certain API call from the client, which probably happens when the call comes with an error in the content of the POST, though I haven't determined the specifics of the related events.
Of course, I'll have to decipher the proper qlot setup procedure and modify the initialization.
I have been seeing another 'qlot issue with the
claxiom
code base, and it's not really a surprise, sincecl-notebook
didn't stay current with changes to the APIs of dependencies. I already corrected one that entailed a simple change to the package name forinstall-quicklisp
in main.lisp, and I guessed that there might be other issues that would need to be addressed.Occasionally, the
slime
debugger is opening with a complaint about a missing~/.claxiom/.qlot/
directory. Of course, it's right there in theqlot README
. We inherited the initialization process fromcl-notebook
in [main.lisp], which installsquicklisp
in the directory \~/.claxiom/quicklisp/. It looks like we get through the installation without any issues, but the missing '~.claxiom/.qlot/` condition is raised while the server has been running without issue and the server receives a certain API call from the client, which probably happens when the call comes with an error in the content of the POST, though I haven't determined the specifics of the related events.Of course, I'll have to decipher the proper
qlot
setup procedure and modify the initialization.