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