This is an automated email from the ASF dual-hosted git repository.
remm pushed a commit to branch 10.1.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/10.1.x by this push:
new dda712bd0a Add missing quotes to the parameter
dda712bd0a is described below
commit dda712bd0a6fe8f7f1c29129c356a4b8b4c4e0b1
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]