Skip to content

Commit

Permalink
CB-4270 cancel row count job fix
Browse files Browse the repository at this point in the history
  • Loading branch information
yagudin10 committed Apr 18, 2024
1 parent 6f4482d commit d894010
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -557,7 +557,7 @@ public void run(DBRProgressMonitor monitor) throws InvocationTargetException, In
try {
monitor.beginTask("Get row data count", 1);
WebSQLResultsInfo results = contextInfo.getResults(resultsId);
long rowCount = DBUtils.readRowCount(webSession.getProgressMonitor(), contextInfo.getProcessor().getExecutionContext(), results.getDataContainer(), null, this);
long rowCount = DBUtils.readRowCount(monitor, contextInfo.getProcessor().getExecutionContext(), results.getDataContainer(), null, this);

Check warning on line 560 in server/bundles/io.cloudbeaver.server/src/io/cloudbeaver/service/sql/impl/WebServiceSQL.java

View check run for this annotation

Jenkins-CI-integration / CheckStyle Java Report

server/bundles/io.cloudbeaver.server/src/io/cloudbeaver/service/sql/impl/WebServiceSQL.java#L560

Line is longer than 140 characters (found 156).
this.result = "Row data count completed";
this.extendedResults = rowCount;
} catch (Throwable e) {
Expand Down

0 comments on commit d894010

Please sign in to comment.