Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dev UI: Fixed errors in log #33787

Merged
merged 1 commit into from
Jun 6, 2023
Merged
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 @@ -203,4 +203,4 @@ private void registerGetResultsMethod(LaunchModeBuildItem launchModeBuildItem) {
private static final String NAMESPACE = "devui-continuous-testing";
private static final String DASH = "-";

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ private void route(JsonRpcRequest jsonRpcRequest, ServerWebSocket s) {
}
uni.subscribe()
.with(item -> {
if (JsonRpcMessage.class.isAssignableFrom(item.getClass())) {
if (item != null && JsonRpcMessage.class.isAssignableFrom(item.getClass())) {
JsonRpcMessage jsonRpcMessage = (JsonRpcMessage) item;
codec.writeResponse(s, jsonRpcRequest.getId(), jsonRpcMessage.getResponse(),
jsonRpcMessage.getMessageType());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ public String lastKnownResults() {
return this.lastKnownResults;
}

@NonBlocking
public boolean start() {
return invokeAction("start");
}
Expand Down