gvdutra opened a new pull request, #7503: URL: https://github.com/apache/hop/pull/7503
## Summary - preserve equals signs contained in Hop Server system property values - add a regression test covering a JDBC-style URL with a query parameter ## Problem Hop Server split each `KEY=VALUE` system property at every equals sign and used only the second segment. Values containing additional equals signs, including JDBC URLs, query strings, signed tokens, and encoded configuration, were silently truncated. ## Fix Limit the split to two parts so only the first equals sign separates the property name from its value. Fixes #7502. ## Validation ```text ./mvnw -pl engine -Dtest=org.apache.hop.www.HopServerTest test Tests run: 1, Failures: 0, Errors: 0, Skipped: 0 ``` `git diff --check` also passes. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
