On 2024-07-26 10:13, Andrew Tropin wrote:
> On 2024-07-25 18:13, Aleksandr Vityazev wrote:>>> Also on the line>> https://git.sr.ht/~abcdw/guile-ares-rs/tree/master/src/guile/ares-extension/ares/extension.scm#L45>> should be (extensions-atom (assoc-ref state 'extensions))>> Thank you for reports, I forgot to commit updates :)> It should be fixed in https://git.sr.ht/~abcdw/guile-ares-rs/commit/ed1d0a2>> Let me know if you find any other problems!
Thanks for the fixes.
In the previous describe version I can get ops, but in the current one I
always get nil. Am I missing something?
#+begin_src elisp
(arei-client-send-sync-request
(arei-nrepl-dict "op" "describe")
(arei--tooling-session-id))
#+end_src
Result: (dict "id" "60" "session" "e83f37c7-3b04-424d-82d3-5e882ffec79f"
"ops" nil "extensions" ("ares.logging" "ares.guile.macroexpansion"
"ares.core" "ares.bencode" "ares.extension" "ares.guile.utils"
"nrepl.completion" "nrepl.evaluation" "nrepl.lookup" "nrepl.session")
"status" ("done"))
If you remove list->vector from ("ops" . ,(list->vector
(get-operations-directory extensions))), everything will be fine
--
Best regards,
Aleksandr Vityazev
On 2024-07-26 15:35, Aleksandr Vityazev wrote:
> On 2024-07-26 10:13, Andrew Tropin wrote:>>> On 2024-07-25 18:13, Aleksandr Vityazev wrote:>>>>> Also on the line>>> https://git.sr.ht/~abcdw/guile-ares-rs/tree/master/src/guile/ares-extension/ares/extension.scm#L45>>> should be (extensions-atom (assoc-ref state 'extensions))>>>> Thank you for reports, I forgot to commit updates :)>> It should be fixed in https://git.sr.ht/~abcdw/guile-ares-rs/commit/ed1d0a2>>>> Let me know if you find any other problems!> Thanks for the fixes.>> In the previous describe version I can get ops, but in the current one I> always get nil. Am I missing something?>> #+begin_src elisp> (arei-client-send-sync-request> (arei-nrepl-dict "op" "describe")> (arei--tooling-session-id))> #+end_src>> Result: (dict "id" "60" "session" "e83f37c7-3b04-424d-82d3-5e882ffec79f"> "ops" nil "extensions" ("ares.logging" "ares.guile.macroexpansion"> "ares.core" "ares.bencode" "ares.extension" "ares.guile.utils"> "nrepl.completion" "nrepl.evaluation" "nrepl.lookup" "nrepl.session")> "status" ("done"))>> If you remove list->vector from ("ops" . ,(list->vector> (get-operations-directory extensions))), everything will be fine
Woops, fixed in https://git.sr.ht/~abcdw/guile-ares-rs/commit/a11f745
--
Best regards,
Andrew Tropin