Skip to content

Commit

Permalink
[grid] Session Map status should be value wrapped
Browse files Browse the repository at this point in the history
  • Loading branch information
shs96c committed Jun 1, 2020
1 parent 86f0de1 commit 82b6b12
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,9 @@ protected void execute(Config config) {
new HttpResponse()
.addHeader("Content-Type", JSON_UTF_8)
.setContent(asJson(
ImmutableMap.of("ready", true, "message", "Session map is ready."))))));
ImmutableMap.of("value", ImmutableMap.of(
"ready", true,
"message", "Session map is ready.")))))));
server.start();

BuildInfo info = new BuildInfo();
Expand Down

0 comments on commit 82b6b12

Please sign in to comment.