Skip to content

Commit

Permalink
Fix wrong wait condition
Browse files Browse the repository at this point in the history
* jupyter-env.el (jupyter-session-with-random-ports): Do it.
  • Loading branch information
nnicandro committed Oct 4, 2024
1 parent 018246d commit 674af04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jupyter-env.el
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ The session can be used to write a connection file, see
(jupyter-with-timeout
(nil jupyter-default-timeout
(delete-file conn-file))
(file-exists-p conn-file))
(not (file-exists-p conn-file)))
(delete-process process)
(let ((new-key (jupyter-new-uuid)))
(plist-put conn-info :key new-key)
Expand Down

0 comments on commit 674af04

Please sign in to comment.