jhipster/jhipster-online

Generation Blocked on GitHub and GitLab

SudharakaP opened this issue · 0 comments

We had a issue were generation of applications are blocked on GitHub and GitLab; #184 and #183. These issues seems to be solved when I added the following code snippet;

error = new BufferedReader(
new InputStreamReader(p.getErrorStream()));
while ((line = error.readLine()) != null) {
log.debug(line);
}

As per the documentation the process can be blocked if we don't read input and output continuously; https://docs.oracle.com/javase/7/docs/api/java/lang/Process.html

However after migrating to app engine flex, it seems that this issue has resurfaced. 😢

image