Skip to content

Commit

Permalink
Fix error message on deploying apps over upload size limit in Admin C…
Browse files Browse the repository at this point in the history
…onsole

Signed-off-by: dmiya3 <[email protected]>
  • Loading branch information
dmiya3 committed Dec 12, 2024
1 parent 71df878 commit 5703069
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/*
* Copyright (c) 2024 Contributors to the Eclipse Foundation.
* Copyright (c) 1997, 2018 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
Expand Down Expand Up @@ -74,7 +75,7 @@ public static void deploy(HandlerContext handlerCtx) {

if (GuiUtil.isEmpty(origPath)) {
GuiUtil.getLogger().info("deploy(): origPath is NULL");
String mesg = GuiUtil.getMessage("msg.deploy.nullArchiveError");
String mesg = GuiUtil.getMessage("deployment.failure");
GuiUtil.handleError(handlerCtx, mesg);
return;
}
Expand Down

0 comments on commit 5703069

Please sign in to comment.