We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I have tested on 2.2.3, 2.2.4, 2.2.6, and 2.2.9, and they all give the same error message:
Recursive lock attempt #<SB-THREAD:MUTEX taken owner=worker {1016D70D03}>.
when running
(with-transaction () (let ((c1 (make-customer :first-name "Joe" :last-name "Blow" :email "[email protected]")) (c2 (make-customer :first-name "Jill" :last-name "Blow" :email "[email protected]")) (m1 (make-merchant :name "Snake Oil, Inc.")) (p1 (make-product :name "Oil of Longevity" :upc "1234567890")) (p2 (make-product :name "Oil of Slipperiness" :upc "abcdefghijk"))) (make-sells :from m1 :to p1) ;; The above is equivalent to ;; (make-edge 'sells m1 p1 1 nil) (make-sells :from m1 :to p2) (make-likes :from c1 :to p1 :weight 100.0) (make-likes :from c1 :to p2 :weight 20.0) (make-likes :from c2 :to p2 :weight 50.0)))
2.2.1 and 2.2.2 are fine.
The text was updated successfully, but these errors were encountered:
To fix, replace sb-thread:*current-thread* with (sb-thread::current-vmthread-id) here: https://github.com/kraison/vivace-graph-v3/blob/master/skip-list.lisp#L375
Sorry, something went wrong.
No branches or pull requests
I have tested on 2.2.3, 2.2.4, 2.2.6, and 2.2.9, and they all give the same error message:
when running
2.2.1 and 2.2.2 are fine.
The text was updated successfully, but these errors were encountered: