Skip to content

Commit

Permalink
Fix project name and number of projects displayed on the client, fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
gnodet authored and ppalaga committed Dec 8, 2020
1 parent 46a211a commit 234f59e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion daemon/src/main/java/org/mvndaemon/mvnd/daemon/Server.java
Original file line number Diff line number Diff line change
Expand Up @@ -650,7 +650,7 @@ public void fail(Throwable t) throws Exception {

@Override
protected void onStartSession(MavenSession session) {
queue.add(new BuildStarted(session.getTopLevelProject().getName(), session.getAllProjects().size(),
queue.add(new BuildStarted(session.getCurrentProject().getName(), session.getProjects().size(),
session.getRequest().getDegreeOfConcurrency()));
}

Expand Down

0 comments on commit 234f59e

Please sign in to comment.