-
-
Notifications
You must be signed in to change notification settings - Fork 87
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
clack:stop doesn't work with cl-dbi in my environment #118
Comments
I could reproduce the issue. ;( |
Actually, I found the same problem when starting it with Shelly like a year On Mon, Jul 6, 2015 at 11:10 AM, Rudolph Miller [email protected]
|
Okay, it seems to be the issue of cl-mysql (ql:quickload '(:cl-mysql ))
(let ((thread (sb-thread:make-thread (lambda () (loop)))))
(print (sb-thread:thread-alive-p thread))
(sb-thread:destroy-thread thread)
(sleep 1)
(print (sb-thread:thread-alive-p thread)))
;; T
;; NIL
(cl-mysql:connect :database "test" :user "root")
(let ((thread (sb-thread:make-thread (lambda () (loop)))))
(print (sb-thread:thread-alive-p thread))
(sb-thread:destroy-thread thread)
(sleep 1)
(print (sb-thread:thread-alive-p thread)))
;; T
;; T . |
I understand. I use ccl for now and wait for cl-mysql fixed. |
:) |
Hi, I have a problem with using clack and integral.
In my environment (Ubuntu 12.04 64-bit, sbcl 1.2.13, mysql 5.5.43), clack:stop doesn't work with integral.
I have found that it occurs after executing query via cl-dbi.
This is the code.
After this, localhost:5000 still returns "hello".
(But ccl 1.10 x86-64 stops the server correctly...)
Though it is perhaps caused by my environment, does anyone have same problem?
The text was updated successfully, but these errors were encountered: