Skip to content

Commit

Permalink
Merge pull request #25284 from dmiya3/br-fix-upload-error
Browse files Browse the repository at this point in the history
Improve error messages on deploying apps over upload size limit in Admin Console
  • Loading branch information
dmatej authored Dec 13, 2024
2 parents 71df878 + 5703069 commit 754a59c
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 754a59c

Please sign in to comment.