Skip to content

Commit

Permalink
Fix servlet name for GetApprovalStatus
Browse files Browse the repository at this point in the history
In commit f91fc5c the
GetApprovalStatus was updated to use @WebServlet but the
servlet name was not set correctly and conflicted with
GenerateKeyPairServlet which was causing a problem for
TPS token enrollment with server-side key generation, but
for some reason the CI did not fail until recently.

Now the servlet name has been fixed so the problem should
no longer happen.
  • Loading branch information
edewata committed Aug 14, 2023
1 parent e61817a commit e29314e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
* Check to see if a Key Recovery Request has been approved
*/
@WebServlet(
name = "kraGenerateKeyPair",
name = "kraKRAGetApprovalStatus",
urlPatterns = "/agent/kra/getApprovalStatus",
initParams = {
@WebInitParam(name="GetClientCert", value="true"),
Expand Down

0 comments on commit e29314e

Please sign in to comment.