IOException - Leiningen REPL crashing while typing












2















I'm coding in Clojure and have been using Lein's REPL thoroughly. But recently it's been crashing while I'm typing, especially while opening or closing maps or parenthesis, with the following error message:



    IOException Recurso temporariamente indisponível
java.io.FileInputStream.readBytes (FileInputStream.java:-2)
java.io.FileInputStream.read (FileInputStream.java:255)
java.io.BufferedInputStream.fill (BufferedInputStream.java:246)
java.io.BufferedInputStream.read (BufferedInputStream.java:265)
jline.internal.NonBlockingInputStream.run (NonBlockingInputStream.java:294)
java.lang.Thread.run (Thread.java:748)
Bye for now!


"Recurso temporariamente indisponível" means "Resource temporarily unavailable" in English. This message is dumped right at stdout, no line feed is printed. Also, notice that the stack trace points to the line "-2" at FileInputStream.java, which is really weird. I haven't found a single comment about an error like this online.



I'm using Leiningen v2.7.1 from SDKMAN package manager. I was using 2.8.1 and 2.9.0 before, but changing didn't change anything. I'm using Java 8.0.202-amzn from SDKMAN too.










share|improve this question























  • I'm having the same problema with Leiningen 2.8.1 on Java 1.8.0_201 Java HotSpot(TM) 64-Bit Server VM

    – squiter
    Feb 15 at 16:10











  • Same here. You can work around this by simply running the command "clojure" to get a REPL. It's a bit disturbing, though. Bottom line is Leiningen is crashing while attempting to read keyboard input.

    – user1172763
    Feb 15 at 23:47






  • 1





    We released Leiningen 2.9.0 on sdkman just yesterday, could you maybe try if that fixes it? We also have 2.9.1 in the pipeline because of github.com/technomancy/leiningen/issues/2530

    – wink
    Feb 16 at 12:49











  • @wink nice! I'll try that and let you know :)

    – Yago Dórea
    Feb 16 at 13:38











  • Well, it seems fine now. But I'll keep using it for a day or two before calling it off! Thanks!

    – Yago Dórea
    Feb 16 at 13:43
















2















I'm coding in Clojure and have been using Lein's REPL thoroughly. But recently it's been crashing while I'm typing, especially while opening or closing maps or parenthesis, with the following error message:



    IOException Recurso temporariamente indisponível
java.io.FileInputStream.readBytes (FileInputStream.java:-2)
java.io.FileInputStream.read (FileInputStream.java:255)
java.io.BufferedInputStream.fill (BufferedInputStream.java:246)
java.io.BufferedInputStream.read (BufferedInputStream.java:265)
jline.internal.NonBlockingInputStream.run (NonBlockingInputStream.java:294)
java.lang.Thread.run (Thread.java:748)
Bye for now!


"Recurso temporariamente indisponível" means "Resource temporarily unavailable" in English. This message is dumped right at stdout, no line feed is printed. Also, notice that the stack trace points to the line "-2" at FileInputStream.java, which is really weird. I haven't found a single comment about an error like this online.



I'm using Leiningen v2.7.1 from SDKMAN package manager. I was using 2.8.1 and 2.9.0 before, but changing didn't change anything. I'm using Java 8.0.202-amzn from SDKMAN too.










share|improve this question























  • I'm having the same problema with Leiningen 2.8.1 on Java 1.8.0_201 Java HotSpot(TM) 64-Bit Server VM

    – squiter
    Feb 15 at 16:10











  • Same here. You can work around this by simply running the command "clojure" to get a REPL. It's a bit disturbing, though. Bottom line is Leiningen is crashing while attempting to read keyboard input.

    – user1172763
    Feb 15 at 23:47






  • 1





    We released Leiningen 2.9.0 on sdkman just yesterday, could you maybe try if that fixes it? We also have 2.9.1 in the pipeline because of github.com/technomancy/leiningen/issues/2530

    – wink
    Feb 16 at 12:49











  • @wink nice! I'll try that and let you know :)

    – Yago Dórea
    Feb 16 at 13:38











  • Well, it seems fine now. But I'll keep using it for a day or two before calling it off! Thanks!

    – Yago Dórea
    Feb 16 at 13:43














2












2








2








I'm coding in Clojure and have been using Lein's REPL thoroughly. But recently it's been crashing while I'm typing, especially while opening or closing maps or parenthesis, with the following error message:



    IOException Recurso temporariamente indisponível
java.io.FileInputStream.readBytes (FileInputStream.java:-2)
java.io.FileInputStream.read (FileInputStream.java:255)
java.io.BufferedInputStream.fill (BufferedInputStream.java:246)
java.io.BufferedInputStream.read (BufferedInputStream.java:265)
jline.internal.NonBlockingInputStream.run (NonBlockingInputStream.java:294)
java.lang.Thread.run (Thread.java:748)
Bye for now!


"Recurso temporariamente indisponível" means "Resource temporarily unavailable" in English. This message is dumped right at stdout, no line feed is printed. Also, notice that the stack trace points to the line "-2" at FileInputStream.java, which is really weird. I haven't found a single comment about an error like this online.



I'm using Leiningen v2.7.1 from SDKMAN package manager. I was using 2.8.1 and 2.9.0 before, but changing didn't change anything. I'm using Java 8.0.202-amzn from SDKMAN too.










share|improve this question














I'm coding in Clojure and have been using Lein's REPL thoroughly. But recently it's been crashing while I'm typing, especially while opening or closing maps or parenthesis, with the following error message:



    IOException Recurso temporariamente indisponível
java.io.FileInputStream.readBytes (FileInputStream.java:-2)
java.io.FileInputStream.read (FileInputStream.java:255)
java.io.BufferedInputStream.fill (BufferedInputStream.java:246)
java.io.BufferedInputStream.read (BufferedInputStream.java:265)
jline.internal.NonBlockingInputStream.run (NonBlockingInputStream.java:294)
java.lang.Thread.run (Thread.java:748)
Bye for now!


"Recurso temporariamente indisponível" means "Resource temporarily unavailable" in English. This message is dumped right at stdout, no line feed is printed. Also, notice that the stack trace points to the line "-2" at FileInputStream.java, which is really weird. I haven't found a single comment about an error like this online.



I'm using Leiningen v2.7.1 from SDKMAN package manager. I was using 2.8.1 and 2.9.0 before, but changing didn't change anything. I'm using Java 8.0.202-amzn from SDKMAN too.







java io clojure






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Feb 14 at 22:39









Yago DóreaYago Dórea

113




113













  • I'm having the same problema with Leiningen 2.8.1 on Java 1.8.0_201 Java HotSpot(TM) 64-Bit Server VM

    – squiter
    Feb 15 at 16:10











  • Same here. You can work around this by simply running the command "clojure" to get a REPL. It's a bit disturbing, though. Bottom line is Leiningen is crashing while attempting to read keyboard input.

    – user1172763
    Feb 15 at 23:47






  • 1





    We released Leiningen 2.9.0 on sdkman just yesterday, could you maybe try if that fixes it? We also have 2.9.1 in the pipeline because of github.com/technomancy/leiningen/issues/2530

    – wink
    Feb 16 at 12:49











  • @wink nice! I'll try that and let you know :)

    – Yago Dórea
    Feb 16 at 13:38











  • Well, it seems fine now. But I'll keep using it for a day or two before calling it off! Thanks!

    – Yago Dórea
    Feb 16 at 13:43



















  • I'm having the same problema with Leiningen 2.8.1 on Java 1.8.0_201 Java HotSpot(TM) 64-Bit Server VM

    – squiter
    Feb 15 at 16:10











  • Same here. You can work around this by simply running the command "clojure" to get a REPL. It's a bit disturbing, though. Bottom line is Leiningen is crashing while attempting to read keyboard input.

    – user1172763
    Feb 15 at 23:47






  • 1





    We released Leiningen 2.9.0 on sdkman just yesterday, could you maybe try if that fixes it? We also have 2.9.1 in the pipeline because of github.com/technomancy/leiningen/issues/2530

    – wink
    Feb 16 at 12:49











  • @wink nice! I'll try that and let you know :)

    – Yago Dórea
    Feb 16 at 13:38











  • Well, it seems fine now. But I'll keep using it for a day or two before calling it off! Thanks!

    – Yago Dórea
    Feb 16 at 13:43

















I'm having the same problema with Leiningen 2.8.1 on Java 1.8.0_201 Java HotSpot(TM) 64-Bit Server VM

– squiter
Feb 15 at 16:10





I'm having the same problema with Leiningen 2.8.1 on Java 1.8.0_201 Java HotSpot(TM) 64-Bit Server VM

– squiter
Feb 15 at 16:10













Same here. You can work around this by simply running the command "clojure" to get a REPL. It's a bit disturbing, though. Bottom line is Leiningen is crashing while attempting to read keyboard input.

– user1172763
Feb 15 at 23:47





Same here. You can work around this by simply running the command "clojure" to get a REPL. It's a bit disturbing, though. Bottom line is Leiningen is crashing while attempting to read keyboard input.

– user1172763
Feb 15 at 23:47




1




1





We released Leiningen 2.9.0 on sdkman just yesterday, could you maybe try if that fixes it? We also have 2.9.1 in the pipeline because of github.com/technomancy/leiningen/issues/2530

– wink
Feb 16 at 12:49





We released Leiningen 2.9.0 on sdkman just yesterday, could you maybe try if that fixes it? We also have 2.9.1 in the pipeline because of github.com/technomancy/leiningen/issues/2530

– wink
Feb 16 at 12:49













@wink nice! I'll try that and let you know :)

– Yago Dórea
Feb 16 at 13:38





@wink nice! I'll try that and let you know :)

– Yago Dórea
Feb 16 at 13:38













Well, it seems fine now. But I'll keep using it for a day or two before calling it off! Thanks!

– Yago Dórea
Feb 16 at 13:43





Well, it seems fine now. But I'll keep using it for a day or two before calling it off! Thanks!

– Yago Dórea
Feb 16 at 13:43










0






active

oldest

votes












Your Answer








StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1405886%2fioexception-leiningen-repl-crashing-while-typing%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded




















































Thanks for contributing an answer to Super User!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1405886%2fioexception-leiningen-repl-crashing-while-typing%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Mouse cursor on multiple screens with different PPI

Agildo Ribeiro

Sometime when accessing a menu: “Ubuntu 16.04 has experienced an internal error”