Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1517,7 +1517,7 @@ private void configureEncryption(Provider provider, KeyStore keyStore, char[] ke
*
*/
private void generateDefaultCertificate(Provider provider, KeyStore keyStore, char[] keyPassword) throws Exception {
final String certificateAlias = "mirthconnect";
final String certificateAlias = "oiengine";
Copy link

Copilot AI Oct 15, 2025

Choose a reason for hiding this comment

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

The certificate alias should be configurable rather than hardcoded. Consider moving this to a configuration property or constant to allow easier customization without code changes.

Copilot uses AI. Check for mistakes.

if (!keyStore.containsAlias(certificateAlias)) {
// Common CA and SSL cert attributes
Expand Down