Test Quarkus migration viability to see if its worth spending real time on#6654
Draft
Frooodle wants to merge 72 commits into
Draft
Test Quarkus migration viability to see if its worth spending real time on#6654Frooodle wants to merge 72 commits into
Frooodle wants to merge 72 commits into
Conversation
added 30 commits
June 12, 2026 15:33
…iClient HttpClient, shims; :common compiles
… redis health, default OIDC off
…andler, auth/config/user controllers
…e, license singleton race
Contributor
There was a problem hiding this comment.
CodeQL found more than 20 potential problems in the proposed changes. Check the Files changed tab for more details.
| errorMessage, | ||
| e); | ||
| return errorResponse(HttpStatus.INTERNAL_SERVER_ERROR, errorMessage); | ||
| return errorResponse(Response.Status.INTERNAL_SERVER_ERROR, errorMessage); |
| errorMessage, | ||
| e); | ||
| return errorResponse(HttpStatus.INTERNAL_SERVER_ERROR, errorMessage); | ||
| return errorResponse(Response.Status.INTERNAL_SERVER_ERROR, errorMessage); |
Comment on lines
+172
to
+174
| return Response.status(Response.Status.INTERNAL_SERVER_ERROR) | ||
| .entity("Error retrieving file: " + e.getMessage()) | ||
| .build(); |
Comment on lines
+340
to
+342
| return Response.status(Response.Status.INTERNAL_SERVER_ERROR) | ||
| .entity("Error retrieving file metadata: " + e.getMessage()) | ||
| .build(); |
Comment on lines
+945
to
+947
| return Response.serverError() | ||
| .entity("Failed to clear audit data: " + e.getMessage()) | ||
| .build(); |
Comment on lines
+368
to
+370
| return Response.status(Response.Status.INTERNAL_SERVER_ERROR) | ||
| .entity("Cannot list sign requests: " + e.getMessage()) | ||
| .build(); |
Comment on lines
+392
to
+394
| return Response.status(Response.Status.FORBIDDEN) | ||
| .entity("Access denied or sign request not found: " + e.getMessage()) | ||
| .build(); |
| } catch (IllegalArgumentException e) { | ||
| log.error("Invalid sign request for session {}", sessionId, e); | ||
| return ResponseEntity.status(HttpStatus.BAD_REQUEST).body(e.getMessage()); | ||
| return Response.status(Response.Status.BAD_REQUEST).entity(e.getMessage()).build(); |
Comment on lines
+447
to
+449
| return Response.status(Response.Status.INTERNAL_SERVER_ERROR) | ||
| .entity("Cannot sign document: " + e.getMessage()) | ||
| .build(); |
Comment on lines
+470
to
+472
| return Response.status(Response.Status.FORBIDDEN) | ||
| .entity("Cannot decline sign request: " + e.getMessage()) | ||
| .build(); |
… audit order, desktop port)
Contributor
✅ Backend License Check PassedAll backend dependencies have valid and allowed licenses. The backend license report has been updated successfully. |
Contributor
🚀 V2 Auto-Deployment Complete!Your V2 PR with embedded architecture has been deployed! 🔗 Direct Test URL (non-SSL) http://54.175.155.236:6654 🔐 Secure HTTPS URL: https://6654.ssl.stirlingpdf.cloud This deployment will be automatically cleaned up when the PR is closed. 🔄 Auto-deployed for approved V2 contributors. |
…to be a separate PR)
… mocks and types to Quarkus shims
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description of Changes
NEVER to be merged... purely for viability testing
Checklist
General
Documentation
Translations (if applicable)
scripts/counter_translation.pyUI Changes (if applicable)
Testing (if applicable)
task checkto verify linters, typechecks, and tests pass