Skip to content

Commit 0ecf1d0

Browse files
Merge branch 'devel' into 6731-cb-application-freezes-during-loading-on-heavy-resultsets
2 parents 4d623cf + 0482062 commit 0ecf1d0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

server/bundles/io.cloudbeaver.model/src/io/cloudbeaver/model/cli/CloudBeaverInstanceServer.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
import org.jkiss.code.NotNull;
2121
import org.jkiss.dbeaver.model.cli.ApplicationInstanceController;
2222
import org.jkiss.dbeaver.model.cli.ApplicationInstanceServer;
23-
import org.jkiss.dbeaver.model.cli.CmdProcessResult;
23+
import org.jkiss.dbeaver.model.cli.CliProcessResult;
2424

2525
import java.io.IOException;
2626

@@ -31,7 +31,7 @@ public CloudBeaverInstanceServer() throws IOException {
3131

3232
@NotNull
3333
@Override
34-
public CmdProcessResult handleCommandLine(@NotNull String[] args) {
34+
public CliProcessResult handleCommandLine(@NotNull String[] args) {
3535
CommandLine cmd = CloudBeaverCommandLine.getInstance().getCommandLine(args);
3636
try {
3737
return CloudBeaverCommandLine.getInstance().executeCommandLineCommands(
@@ -40,7 +40,7 @@ public CmdProcessResult handleCommandLine(@NotNull String[] args) {
4040
false
4141
);
4242
} catch (Exception e) {
43-
return new CmdProcessResult(CmdProcessResult.PostAction.ERROR, "Error executing command: " + e.getMessage());
43+
return new CliProcessResult(CliProcessResult.PostAction.ERROR, "Error executing command: " + e.getMessage());
4444
}
4545
}
4646
}

0 commit comments

Comments
 (0)