We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent adbc9ed commit 3ead15cCopy full SHA for 3ead15c
jupyter-rest-api.el
@@ -584,7 +584,9 @@ attempt. If CLIENT could not be authenticated raise an error."
584
jupyter-api-request-headers))
585
(jupyter-api-request-data
586
(concat "password=" (url-hexify-string (funcall passwd)))))
587
- (jupyter-api-login client)))))
+ (unwind-protect
588
+ (jupyter-api-login client)
589
+ (clear-string jupyter-api-request-data))))))
590
(oset client auth t))
591
592
(cl-defmethod jupyter-api-authenticate ((client jupyter-rest-client) (_auth (eql token)))
0 commit comments