Skip to content

Test Quarkus migration viability to see if its worth spending real time on#6654

Draft
Frooodle wants to merge 72 commits into
mainfrom
migration/run-02
Draft

Test Quarkus migration viability to see if its worth spending real time on#6654
Frooodle wants to merge 72 commits into
mainfrom
migration/run-02

Conversation

@Frooodle

@Frooodle Frooodle commented Jun 13, 2026

Copy link
Copy Markdown
Member

Description of Changes

NEVER to be merged... purely for viability testing


Checklist

General

Documentation

Translations (if applicable)

UI Changes (if applicable)

  • Screenshots or videos demonstrating the UI changes are attached (e.g., as comments or direct attachments in the PR)

Testing (if applicable)

  • I have run task check to verify linters, typechecks, and tests pass
  • I have tested my changes locally. Refer to the Testing Guide for more details.

a added 30 commits June 12, 2026 15:33
…iClient HttpClient, shims; :common compiles

@github-advanced-security github-advanced-security AI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

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();
Frooodle added 17 commits June 13, 2026 13:10
@stirlingbot

stirlingbot Bot commented Jun 13, 2026

Copy link
Copy Markdown
Contributor

✅ Backend License Check Passed

All backend dependencies have valid and allowed licenses.

The backend license report has been updated successfully.

@stirlingbot

stirlingbot Bot commented Jun 13, 2026

Copy link
Copy Markdown
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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants