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
version
platform
problem
repro
nbb nrepl-server :port 1337 :host 0.0.0.0
nc localhost 1337
clone
d2:op5:clonee
d2:idle11:new-session36:f612ad84-7f2b-457e-b679-3ce6ed2ac2fb6:statusl4:doneee
info
d2:op4:info3:sym3:foo2:ns8:foo.core7:session36:f612ad84-7f2b-457e-b679-3ce6ed2ac2fbe
d2:ex264:#error {:message "No namespace: foo.core found", :data {:type :sci/error, :line 2, :column 1, :message "No namespace: foo.core found", :sci.impl/callstack #object[cljs.core.Volatile {:val ()}], :file nil}, :cause #object[Error Error: No namespace: foo.core found]}2:idle7:session36:f612ad84-7f2b-457e-b679-3ce6ed2ac2fb6:statuse
6:statuse
expected behavior
The status should contain done like 6:statusl4:doneee.
done
6:statusl4:doneee
The done status is defined as set in the following place.
set
nbb/src/nbb/impl/nrepl_server.cljs
Line 222 in f9ce088
vector
nil
nbb/src/nbb/impl/bencode.cljs
Line 76 in f9ce088
set?
The text was updated successfully, but these errors were encountered:
cd1b4d7
Thanks for pointing that out.
Sorry, something went wrong.
Fix #236: also coerce set to bencode
d7019e8
No branches or pull requests
version
platform
problem
repro
nbb nrepl-server :port 1337 :host 0.0.0.0
nc localhost 1337
clone
opd2:op5:clonee
info
op with unknown nsd2:op4:info3:sym3:foo2:ns8:foo.core7:session36:f612ad84-7f2b-457e-b679-3ce6ed2ac2fbe
6:statuse
expected behavior
The status should contain
done
like6:statusl4:doneee
.The
done
status is defined asset
in the following place.nbb/src/nbb/impl/nrepl_server.cljs
Line 222 in f9ce088
And bencode encoder handles only
vector
andnil
as lists.nbb/src/nbb/impl/bencode.cljs
Line 76 in f9ce088
So
set?
should be added to the above place.The text was updated successfully, but these errors were encountered: