Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -53,20 +53,6 @@ public ExecuteSQLCommand(RDBMSContext<T> rdbmsContext, List<SelectStmt> inputStm
this.inputStmt = inputStmt;
}

/**
* Unwrap hystrix exception
*/
@Override
public Void execute() {
try {
return super.execute();
} catch (HystrixBadRequestException br) {
throw (RuntimeException) br.getCause();
} catch (RuntimeException x) {
throw x;
}
}

@Override
protected Void run() {
try {
Expand Down
6 changes: 6 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,12 @@
<sonar.jdbc.password>sonar</sonar.jdbc.password>
<sonar.host.url>http://127.0.0.1:8080</sonar.host.url>
<sonar.projectName>lightblue-rdbms</sonar.projectName>


<maven.compiler.showWarnings>true</maven.compiler.showWarnings>
<maven.compiler.showDeprecation>true</maven.compiler.showDeprecation>
<maven.compiler.debuglevel>lines,vars,source</maven.compiler.debuglevel>
<maven.compiler.verbose>true</maven.compiler.verbose>
</properties>
<build>
<plugins>
Expand Down