Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
lvca committed May 20, 2024
2 parents 7cf4436 + 152e6a3 commit 39e3278
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion engine/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
<properties>
<javacc-maven-plugin.version>3.1.0</javacc-maven-plugin.version>
<disruptor.version>1.2.21</disruptor.version>
<gson.version>2.10.1</gson.version>
<gson.version>2.11.0</gson.version>
<lz4-java.version>1.8.0</lz4-java.version>
<lucene.version>9.10.0</lucene.version>
<graalvm.version>22.3.5</graalvm.version>
Expand Down
2 changes: 1 addition & 1 deletion network/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
<packaging>jar</packaging>

<properties>
<mockito.version>5.11.0</mockito.version>
<mockito.version>5.12.0</mockito.version>
</properties>
<dependencies>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion postgresw/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@

<properties>
<postgres.version>42.7.3</postgres.version>
<tomcat-jdbc.version>10.1.23</tomcat-jdbc.version>
<tomcat-jdbc.version>10.1.24</tomcat-jdbc.version>
</properties>

<dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,9 @@ public ExecutionResponse execute(final HttpServerExchange exchange, final Server
if (command == null || command.isEmpty())
return new ExecutionResponse(400, "{ \"error\" : \"Command text is null\"}");

if (language == null || language.isEmpty())
return new ExecutionResponse(400, "{ \"error\" : \"Language is null\"}");

command = command.trim();

Map<String, Object> paramMap = (Map<String, Object>) requestMap.get("params");
Expand Down

0 comments on commit 39e3278

Please sign in to comment.