-
-
Notifications
You must be signed in to change notification settings - Fork 645
Add client-info to clone op #3806
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
Add client-info to clone op #3806
Conversation
@bbatsov I think the tests failing are not related to this PR |
That's weird, the PR just add optional data, any clues @alexander-yakushev ? |
Yeah, it is weird. This works correctly locally. @bbatsov any ideas? |
There's a mocked nREPL server for the integration tests that you'll probably have to update. Guess something's off with it's implementation. |
Looks like the mock expects the clone message to be exactly this, without the extra fields: https://github.com/clojure-emacs/cider/blob/master/test/nrepl-server-mock.el#L46 |
makes sense, just wondering how to get civer-version on that file |
I think I got it :) |
LGTM! |
As discussed on this thread, we want to have client information about the nrepl client, we discussed about adding this extra info in
clone
op as optional information.Related to nrepl/nrepl#370
Before submitting the PR make sure the following things have been done (and denote this
by checking the relevant checkboxes):
eldev test
)eldev lint
) which is based onelisp-lint
and includescheckdoc
, check-declare, packaging metadata, indentation, and trailing whitespace checks.Thanks!
If you're just starting out to hack on CIDER you might find this section of its
manual extremely useful.