This is an automated email from the ASF dual-hosted git repository.
remm pushed a commit to branch 9.0.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/9.0.x by this push:
new 0180ed9962 Add missing quotes to the parameter
0180ed9962 is described below
commit 0180ed9962e7bed66e6df46d5d6f63325cf49c87
Author: remm <[email protected]>
AuthorDate: Thu Nov 14 12:41:18 2024 +0100
Add missing quotes to the parameter
---
java/org/apache/catalina/startup/ConnectorCreateRule.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/java/org/apache/catalina/startup/ConnectorCreateRule.java
b/java/org/apache/catalina/startup/ConnectorCreateRule.java
index 91aa97d24c..3ddb8b985a 100644
--- a/java/org/apache/catalina/startup/ConnectorCreateRule.java
+++ b/java/org/apache/catalina/startup/ConnectorCreateRule.java
@@ -69,8 +69,8 @@ public class ConnectorCreateRule extends Rule {
code.append(System.lineSeparator());
if (ex != null) {
code.append(digester.toVariableName(con)).append(".getProtocolHandler().setExecutor(");
-
code.append(digester.toVariableName(svc)).append(".getExecutor(").append(executorName);
- code.append("));");
+
code.append(digester.toVariableName(svc)).append(".getExecutor(\"").append(executorName);
+ code.append("\"));");
code.append(System.lineSeparator());
}
if (sslImplementationName != null) {
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]