Skip to content

Commit

Permalink
Ensure REPL grid server set content type header (#2841)
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelbey authored May 10, 2024
1 parent 211f600 commit 17f37fc
Show file tree
Hide file tree
Showing 7 changed files with 178 additions and 208 deletions.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,17 @@
<artifactId>commons-lang3</artifactId>
</dependency>

<dependency>
<groupId>org.jline</groupId>
<artifactId>jline-terminal-jansi</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.fusesource.jansi</groupId>
<artifactId>jansi</artifactId>
<scope>runtime</scope>
</dependency>

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,16 @@
<artifactId>legend-engine-shared-core</artifactId>
</dependency>

<dependency>
<groupId>org.jline</groupId>
<artifactId>jline-terminal</artifactId>
</dependency>

<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</dependency>

<dependency>
<groupId>org.eclipse.collections</groupId>
<artifactId>eclipse-collections</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public void initialize(Client client)
}
catch (Exception e)
{
this.client.getTerminal().writer().println(e.getMessage());
throw new RuntimeException(e);
}
}

Expand Down
Loading

0 comments on commit 17f37fc

Please sign in to comment.