[Bug 65776] New: "Duplicate accept detected" error from a subsequent request with the same local port
https://bz.apache.org/bugzilla/show_bug.cgi?id=65776 Bug ID: 65776 Summary: "Duplicate accept detected" error from a subsequent request with the same local port Product: Tomcat 9 Version: 9.0.56 Hardware: All OS: All Status: NEW Severity: normal Priority: P2 Component: Connectors Assignee: dev@tomcat.apache.org Reporter: iz...@naver.com Target Milestone: - "Duplicate accept detected" error might happen if a client reuses its local port somehow. This is a synthetic test to demonstrate it: https://github.com/izeye/spring-boot-throwaway-branches/blob/tomcat-duplicate-accept-detected/src/test/java/com/izeye/throwaway/DuplicateAcceptDetectedTests.java This is happening in my production environment that is running on CentOS in a Kubernetes cluster. Although I didn't get to the bottom of the reason why the same local port is being used yet, it seems that it might prevent from accepting valid requests from a client. -- You are receiving this mail because: You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[Bug 65179] HTTP2:WINDOW_UPDATE not sent when receiving http2 requests over unknown url
https://bz.apache.org/bugzilla/show_bug.cgi?id=65179 Mark Thomas changed: What|Removed |Added CC||arshiyaashar...@gmail.com --- Comment #4 from Mark Thomas --- *** Bug 65773 has been marked as a duplicate of this bug. *** -- You are receiving this mail because: You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[Bug 65773] WINDOW_UPDATE NOT SENT
https://bz.apache.org/bugzilla/show_bug.cgi?id=65773 Mark Thomas changed: What|Removed |Added Status|NEEDINFO|RESOLVED Resolution|--- |DUPLICATE --- Comment #6 from Mark Thomas --- Absent any evidence to the contrary, this issue is assumed to be a duplicate. It should only be re-opened if: - the issue can be produced with the latest 9.0.x release - the steps to reproduce the issue can be provided *** This bug has been marked as a duplicate of bug 65179 *** -- You are receiving this mail because: You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[Bug 65775] fgets_unlocked crash on CentOS 7 (and Ubuntu 14.04) in Tomcat 9.0.12 through 9.0.54 (and others)
https://bz.apache.org/bugzilla/show_bug.cgi?id=65775 Mark Thomas changed: What|Removed |Added Status|NEW |RESOLVED Resolution|--- |INVALID --- Comment #1 from Mark Thomas --- The calls to getLocalName() are triggered by the use of the RemoteIpFilter. Assuming you need the filter, there isn't a way to avoid those calls. This looks like a JVM bug rather than a Tomcat bug. You should raise this issue with your JVM vendor. -- You are receiving this mail because: You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[Bug 65776] "Duplicate accept detected" error from a subsequent request with the same local port
https://bz.apache.org/bugzilla/show_bug.cgi?id=65776 --- Comment #1 from Mark Thomas --- This scenario was considered when designing the protection for the OS bug. The solution considered was to add a timing check for the re-use as in the OS bug case the re-use is near enough instant. However, we didn't add the check as we could not see a scenario where: - a client connected to Tomcat - no other clients connected - the same client reconnected using the same local port and we wanted to avoid the performance overhead of the check. It appears that there is something about your production environment where the above sequence is happening. Are you sure the client is genuinely re-using the local port rather than the server hitting the OS bug? We believe the bug affects multiple Linux distributions. -- You are receiving this mail because: You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[Bug 65773] WINDOW_UPDATE NOT SENT
https://bz.apache.org/bugzilla/show_bug.cgi?id=65773 --- Comment #7 from Arshiya --- Created attachment 38151 --> https://bz.apache.org/bugzilla/attachment.cgi?id=38151&action=edit PCAP where requests are not processed with default overhead params -- You are receiving this mail because: You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[Bug 65773] WINDOW_UPDATE NOT SENT
https://bz.apache.org/bugzilla/show_bug.cgi?id=65773 --- Comment #8 from Arshiya --- Created attachment 38152 --> https://bz.apache.org/bugzilla/attachment.cgi?id=38152&action=edit Sample JMX file -- You are receiving this mail because: You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[Bug 65773] WINDOW_UPDATE NOT SENT
https://bz.apache.org/bugzilla/show_bug.cgi?id=65773 --- Comment #9 from Arshiya --- Created attachment 38153 --> https://bz.apache.org/bugzilla/attachment.cgi?id=38153&action=edit Reproducer -- You are receiving this mail because: You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[Bug 65773] WINDOW_UPDATE NOT SENT
https://bz.apache.org/bugzilla/show_bug.cgi?id=65773 --- Comment #10 from Arshiya --- We are trying to reproduce the issue with version 9.0.56 . Observation : With window size of 1000 and default values for all other params , we see that few requests are not being processed (PCAP attached) . But on changing overheadContinuationThreshold , overheadCountFactor , overheadDataThreshold , overheadWindowUpdateThreshold to "0" all requests process fine . Will changing the 4 overhead params from the default values to zero solve the issue ? Will there be any side effects because of this? I have attached the JMX , source code used to reproduce the issue where few requests are not processed, though it is not the exact reproducer for the WINDOW_UPDATE issue . -- You are receiving this mail because: You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[Bug 65776] "Duplicate accept detected" error from a subsequent request with the same local port
https://bz.apache.org/bugzilla/show_bug.cgi?id=65776 --- Comment #2 from Johnny Lim --- Thanks for the quick feedback! I just assumed that it's a Ubuntu-specific bug as it's reported against the Ubuntu issue tracker. I haven't had time looking into it closely yet, so it was just one of possible guesses based on the assumption. I'll let you know if anything meaningful is identified. -- You are receiving this mail because: You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[Bug 65776] "Duplicate accept detected" error from a subsequent request with the same local port
https://bz.apache.org/bugzilla/show_bug.cgi?id=65776 Mark Thomas changed: What|Removed |Added Status|NEW |NEEDINFO --- Comment #3 from Mark Thomas --- Moving to NEEDINFO pending further updates. -- You are receiving this mail because: You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[tomcat] branch main updated: Remove unused translations
This is an automated email from the ASF dual-hosted git repository. markt 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 2492195 Remove unused translations 2492195 is described below commit 2492195e2b899472ab958e24acd9fbbe54d62011 Author: Mark Thomas AuthorDate: Fri Dec 31 14:47:02 2021 + Remove unused translations --- .../apache/tomcat/util/descriptor/web/LocalStrings_fr.properties| 6 -- .../apache/tomcat/util/descriptor/web/LocalStrings_ja.properties| 6 -- .../apache/tomcat/util/descriptor/web/LocalStrings_ko.properties| 6 -- .../apache/tomcat/util/descriptor/web/LocalStrings_zh_CN.properties | 6 -- 4 files changed, 24 deletions(-) diff --git a/java/org/apache/tomcat/util/descriptor/web/LocalStrings_fr.properties b/java/org/apache/tomcat/util/descriptor/web/LocalStrings_fr.properties index 74560c3..9f668cba 100644 --- a/java/org/apache/tomcat/util/descriptor/web/LocalStrings_fr.properties +++ b/java/org/apache/tomcat/util/descriptor/web/LocalStrings_fr.properties @@ -45,13 +45,7 @@ webXml.mergeConflictLoginConfig=Le LoginConfig a été défini de manière incon webXml.mergeConflictOrder=L'ordre relatif des fragments contient des références circulaires, cela peut être résolu en utilisant un ordre absolu dans web.xml webXml.mergeConflictResource=La Resource [{0}] a été définie de manière inconsistante entre différents fragments dont le fragment [{1}] situé à [{2}] webXml.mergeConflictServlet=Le Servlet [{0}] a été défini de manière inconsistante entre différents fragments dont le fragment [{1}] situé à [{2}] -webXml.mergeConflictSessionCookieComment=Le commentaire de cookie de session a été défini de manière inconsistante avec des valeurs différentes entre différents fragments dont le fragment [{0}] situé à [{1}] -webXml.mergeConflictSessionCookieDomain=Le domaine de cookie de session a été défini de manière inconsistante avec des valeurs différentes entre différents fragments dont le fragment [{0}] situé à [{1}] -webXml.mergeConflictSessionCookieHttpOnly=L''indicateur http-only du cookie de session a été défini de manière inconsistante avec des valeurs différentes entre différents fragments dont le fragment [{0}] situé à [{1}] -webXml.mergeConflictSessionCookieMaxAge=Le max-age du cookie de session a été défini de manière inconsistante avec des valeurs différentes entre différents fragments dont le fragment [{0}] situé à [{1}] webXml.mergeConflictSessionCookieName=Le nom de cookie de session a été défini de manière inconsistante avec des valeurs différentes entre différents fragments dont le fragment [{0}] situé à [{1}] -webXml.mergeConflictSessionCookiePath=Le chemin du cookie de session a été défini de manière inconsistante avec des valeurs différentes entre différents fragments dont le fragment [{0}] situé à [{1}] -webXml.mergeConflictSessionCookieSecure=L''indicateur secure du cookie de session a été défini de manière inconsistante avec des valeurs différentes entre différents fragments dont le fragment [{0}] situé à [{1}] webXml.mergeConflictSessionTimeout=Le timeout de la session a été défini de manière inconsistante avec des valeurs différentes entre différents fragments dont le fragment [{0}] situé à [{1}] webXml.mergeConflictSessionTrackingMode=Les modes de gestion de la session ont été déclarés de manière inconsistante entre plusieurs fragments nommés [{0}] et localisés à [{1}] webXml.mergeConflictString=Le [{0}] avec comme nom [{1}] a été défini de manière inconsistante entre différents fragments dont le fragment [{2}] situé à [{3}] diff --git a/java/org/apache/tomcat/util/descriptor/web/LocalStrings_ja.properties b/java/org/apache/tomcat/util/descriptor/web/LocalStrings_ja.properties index 8cd2579..f2fd3f4 100644 --- a/java/org/apache/tomcat/util/descriptor/web/LocalStrings_ja.properties +++ b/java/org/apache/tomcat/util/descriptor/web/LocalStrings_ja.properties @@ -45,13 +45,7 @@ webXml.mergeConflictLoginConfig=[{1}] に配置されたフラグメント [{0}] webXml.mergeConflictOrder=フラグメントの相対順序には循環参照が含まれます。 これは、web.xmlで絶対順序を使用することで解決できます。 webXml.mergeConflictResource=[{2}] に配置されたフラグメント [{1}] のリソース [{0}] の値は、他のフラグメントと異なります。 webXml.mergeConflictServlet=[{2}] に配置されたフラグメント [{1}] の Servlet [{0}] の値は、他のフラグメントと異なります。 -webXml.mergeConflictSessionCookieComment=[{1}] に配置されたフラグメント [{0}] のセッションCookieコメントの値は、他のフラグメントと異なります。 -webXml.mergeConflictSessionCookieDomain=[{1}] に配置されたフラグメント [{0}] のセッションCookieドメインの値は、他のフラグメントと異なります。 -webXml.mergeConflictSessionCookieHttpOnly=[{1}] に配置されたフラグメント [{0}] のセッションクッキー http-only フラグの値は、他のフラグメントと異なります。 -webXml.mergeConflictSessionCookieMaxAge=[{1}] に配置されたフラグメント [{0}] のセッションクッキー max-age の値は、他のフラグメントと異なります。 webXml.mergeConflictSessionCookieName=[{1}] に配置されたフラグメント [{0}] のセッションCookie名の値は、他のフラグメントと異なります。 -webXml.mergeConflictSessionCookiePath=[{1}] に配置されたフラグメント [{0}] のセッションクッキー path は、他のフ
[tomcat] branch main updated (2492195 -> f2e57c9)
This is an automated email from the ASF dual-hosted git repository. markt pushed a change to branch main in repository https://gitbox.apache.org/repos/asf/tomcat.git. from 2492195 Remove unused translations new 973ca05 Improve Chinese translations. Contributed zhnnn new e223bad Improvements to French translatrions (remm) new 432c5fc Improvements to Japanese translations new a92cd82 Improvements to Korean translations. (woonsan) new f2e57c9 Improvements to Spanish translations contributed by Israel The 5 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: java/jakarta/el/LocalStrings_ja.properties | 30 +++--- .../servlet/http/LocalStrings_ja.properties| 2 +- .../authenticator/LocalStrings_ja.properties | 22 ++-- .../jaspic/LocalStrings_fr.properties | 1 + .../jaspic/LocalStrings_ja.properties | 11 +- .../jaspic/LocalStrings_ko.properties | 1 + .../catalina/connector/LocalStrings_ja.properties | 4 +- .../catalina/core/LocalStrings_ja.properties | 84 +++ .../catalina/deploy/LocalStrings_ja.properties | 14 +-- .../catalina/filters/LocalStrings_ja.properties| 48 - .../catalina/ha/backend/LocalStrings_ja.properties | 2 +- .../catalina/ha/deploy/LocalStrings_ja.properties | 16 +-- .../catalina/ha/session/LocalStrings_ja.properties | 18 ++-- .../catalina/ha/tcp/LocalStrings_ja.properties | 12 +-- .../catalina/loader/LocalStrings_es.properties | 1 + .../catalina/loader/LocalStrings_fr.properties | 1 + .../catalina/loader/LocalStrings_ja.properties | 15 +-- .../catalina/loader/LocalStrings_ko.properties | 1 + .../catalina/loader/LocalStrings_zh_CN.properties | 1 + .../catalina/manager/LocalStrings_ja.properties| 28 ++--- .../manager/host/LocalStrings_ja.properties| 18 ++-- .../catalina/mapper/LocalStrings_ja.properties | 20 ++-- .../catalina/mbeans/LocalStrings_fr.properties | 1 + .../catalina/mbeans/LocalStrings_ja.properties | 21 ++-- .../catalina/mbeans/LocalStrings_ko.properties | 1 + .../catalina/realm/LocalStrings_ja.properties | 22 ++-- .../catalina/security/LocalStrings_ja.properties | 4 +- .../catalina/servlets/LocalStrings_ja.properties | 18 ++-- .../catalina/session/LocalStrings_ja.properties| 8 +- .../apache/catalina/ssi/LocalStrings_ja.properties | 14 +-- .../catalina/startup/LocalStrings_ja.properties| 36 +++ .../storeconfig/LocalStrings_ja.properties | 12 +-- .../tribes/group/LocalStrings_ja.properties| 4 +- .../group/interceptors/LocalStrings_ja.properties | 2 +- .../catalina/tribes/io/LocalStrings_ja.properties | 6 +- .../catalina/tribes/jmx/LocalStrings_ja.properties | 2 +- .../tribes/membership/LocalStrings_ja.properties | 14 +-- .../membership/cloud/LocalStrings_ja.properties| 6 +- .../tribes/tipis/LocalStrings_ja.properties| 10 +- .../tribes/transport/LocalStrings_ja.properties| 2 +- .../transport/nio/LocalStrings_ja.properties | 8 +- .../catalina/users/LocalStrings_fr.properties | 2 + .../catalina/users/LocalStrings_ja.properties | 6 +- .../catalina/users/LocalStrings_ko.properties | 2 + .../catalina/util/LocalStrings_ja.properties | 20 ++-- .../catalina/valves/LocalStrings_ja.properties | 18 ++-- .../valves/rewrite/LocalStrings_ja.properties | 2 +- .../webresources/LocalStrings_ja.properties| 16 +-- java/org/apache/coyote/LocalStrings_ja.properties | 10 +- .../apache/coyote/ajp/LocalStrings_ja.properties | 2 +- .../coyote/http11/LocalStrings_ja.properties | 14 +-- .../http11/upgrade/LocalStrings_ja.properties | 2 +- .../apache/coyote/http2/LocalStrings_ja.properties | 102 +- .../coyote/http2/LocalStrings_zh_CN.properties | 2 +- java/org/apache/el/LocalStrings_ja.properties | 14 +-- .../jasper/resources/LocalStrings_ja.properties| 120 ++--- java/org/apache/naming/LocalStrings_ja.properties | 2 +- .../naming/factory/LocalStrings_ja.properties | 4 +- .../factory/webservices/LocalStrings_ja.properties | 2 +- .../tomcat/dbcp/dbcp2/LocalStrings_ja.properties | 2 +- .../tomcat/util/buf/LocalStrings_ja.properties | 2 +- .../util/codec/binary/LocalStrings_ja.properties | 2 +- .../util/descriptor/LocalStrings_ja.properties | 4 +- .../util/descriptor/web/LocalStrings_ja.properties | 12 +-- .../util/digester/LocalStrings_ja.properties | 2 +- .../tomcat/util/http/LocalStrings_ja.properties| 4 +- .../util/http/parser/LocalStrings_ja.properties| 4 +- .../tomcat/util/modeler/LocalSt
[tomcat] 01/05: Improve Chinese translations. Contributed zhnnn
This is an automated email from the ASF dual-hosted git repository. markt pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/tomcat.git commit 973ca05455a699474bd57970a804d723a6ad5f7d Author: Mark Thomas AuthorDate: Fri Dec 31 16:49:29 2021 + Improve Chinese translations. Contributed zhnnn --- java/org/apache/catalina/loader/LocalStrings_zh_CN.properties | 1 + java/org/apache/coyote/http2/LocalStrings_zh_CN.properties| 2 +- webapps/docs/changelog.xml| 3 +++ 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/java/org/apache/catalina/loader/LocalStrings_zh_CN.properties b/java/org/apache/catalina/loader/LocalStrings_zh_CN.properties index a7834ac..4661de7 100644 --- a/java/org/apache/catalina/loader/LocalStrings_zh_CN.properties +++ b/java/org/apache/catalina/loader/LocalStrings_zh_CN.properties @@ -15,6 +15,7 @@ webappClassLoader.addExportsJavaIo=在Java 9或更高版本上运行时,需要向JVM命令行参数中添加"--add opens=Java.base/Java.io={0}",以启用ObjectStream缓存内存泄漏保护.或者,可以通过禁用ObjectStream类缓存内存泄漏保护来抑制此警告. webappClassLoader.addExportsRmi=在Java 9上运行时,需要在JVM命令行参数中添加“-add opens=Java.rmi/sun.rmi.transport=ALL-UNNAMED”,以启用rmi目标内存泄漏检测。或者,可以通过禁用RMI目标内存泄漏检测来抑制此警告。 +webappClassLoader.addExportsThreadLocal=你需要在JVM的命令行参数中添加"--add-opens=java.base/java.lang={0}",以开启对ThreadLocal内存泄漏的监测。或者你可以禁用ThreadLocal内存泄漏监测,以便取消警告信息 webappClassLoader.addPermissionNoCanonicalFile=无法从URL[{0}]获取规范文件路径 webappClassLoader.addPermissionNoProtocol=不支持URL[{1}]中的协议[{0}],因此未授予位于此URL的资源的读取权限 webappClassLoader.addTransformer=将类文件转换器[{0}]添加到Web应用程序[{1}]。 diff --git a/java/org/apache/coyote/http2/LocalStrings_zh_CN.properties b/java/org/apache/coyote/http2/LocalStrings_zh_CN.properties index b53acbc..0a79c8f 100644 --- a/java/org/apache/coyote/http2/LocalStrings_zh_CN.properties +++ b/java/org/apache/coyote/http2/LocalStrings_zh_CN.properties @@ -147,7 +147,7 @@ upgradeHandler.sendPrefaceFail=连接[{0}],给客户端发送前言失败 upgradeHandler.socketCloseFailed=关闭 socket 错误 upgradeHandler.startRequestBodyFrame.result=连接[{0}],流[{1}]startRequestBodyFrame返回[{2}] upgradeHandler.stream.closed=流[{0}]已经关闭了一段时间 -upgradeHandler.stream.even=\ 请求了新的远程流ID[{0}],但所有远程流都必须使用奇数标识符 +upgradeHandler.stream.even=请求了新的远程流ID[{0}],但所有远程流都必须使用奇数标识符 upgradeHandler.stream.notWritable=连接{0},流{1},此流不可写。 upgradeHandler.stream.old=请求了新的远程流ID [{0}],但最近的流是[{1}] upgradeHandler.tooManyRemoteStreams=客户端试图使用超过[{0}]个活动流。 diff --git a/webapps/docs/changelog.xml b/webapps/docs/changelog.xml index 1e3a153..64668a5 100644 --- a/webapps/docs/changelog.xml +++ b/webapps/docs/changelog.xml @@ -177,6 +177,9 @@ Update the CXF module to Apache CXF 3.5.0. (remm) + +Improvements to Chinese translations contributed by zhnnn. (markt) + - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[tomcat] 04/05: Improvements to Korean translations. (woonsan)
This is an automated email from the ASF dual-hosted git repository. markt pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/tomcat.git commit a92cd821994787d3667aca77f329ff778068f343 Author: Mark Thomas AuthorDate: Fri Dec 31 17:07:06 2021 + Improvements to Korean translations. (woonsan) --- .../apache/catalina/authenticator/jaspic/LocalStrings_ko.properties| 1 + java/org/apache/catalina/loader/LocalStrings_ko.properties | 1 + java/org/apache/catalina/mbeans/LocalStrings_ko.properties | 1 + java/org/apache/catalina/users/LocalStrings_ko.properties | 2 ++ java/org/apache/tomcat/websocket/LocalStrings_ko.properties| 1 + webapps/docs/changelog.xml | 3 +++ 6 files changed, 9 insertions(+) diff --git a/java/org/apache/catalina/authenticator/jaspic/LocalStrings_ko.properties b/java/org/apache/catalina/authenticator/jaspic/LocalStrings_ko.properties index 01678ec..ddc7792 100644 --- a/java/org/apache/catalina/authenticator/jaspic/LocalStrings_ko.properties +++ b/java/org/apache/catalina/authenticator/jaspic/LocalStrings_ko.properties @@ -28,5 +28,6 @@ jaspicAuthenticator.authenticate=[{0}]을(를) 위한 요청을 JASPIC를 통하 persistentProviderRegistrations.deleteFail=임시 파일 [{0}]을(를) 삭제할 수 없습니다. persistentProviderRegistrations.existsDeleteFail=임시 파일 [{0}]이(가) 이미 존재하며 삭제될 수 없습니다. persistentProviderRegistrations.moveFail=[{0}]을(를) [{1}](으)로 이동시키지 못했습니다. +persistentProviderRegistrations.xmlFeatureEncoding=JASPIC가 XML 설정 파일들에서 자바 인코딩 명칭들을 허용하도록 설정하는 중 예외 발생. IANA 인코딩 명칭들만 지원될 것입니다. simpleServerAuthConfig.noModules="ServerAuthModule이 설정되지 않음" diff --git a/java/org/apache/catalina/loader/LocalStrings_ko.properties b/java/org/apache/catalina/loader/LocalStrings_ko.properties index 2f650e4..438086b 100644 --- a/java/org/apache/catalina/loader/LocalStrings_ko.properties +++ b/java/org/apache/catalina/loader/LocalStrings_ko.properties @@ -15,6 +15,7 @@ webappClassLoader.addExportsJavaIo=Java 9 또는 이후 버전을 사용할 때에는, "--add-opens=java.base/java.io={0}" 을(를) JVM 명령행 아규먼트들에 추가해서, ObjectStream 캐시 메모리 릭 방지 옵션을 활성화할 필요가 있습니다. 또는 원하시는 경우, ObjectStream 클래스 캐시 메모리 릭 방지 옵션을 비활성화해서 이 경고 메시지를 없앨 수도 있습니다. webappClassLoader.addExportsRmi=Java 9에서 실행하면서 RMI Target 메모리 누수 탐지를 사용 가능하게 하려면, "--add-opens=java.rmi/sun.rmi.transport=ALL-UNNAMED"를 JVM 명령 행 아규먼트에 추가해야 합니다. 또는, RMI Target 메모리 누수 탐지를 사용불능 상태로 설정함으로써, 이 경고를 없앨 수도 있습니다. +webappClassLoader.addExportsThreadLocal=ThreadLocal 메모리 누수 탐지를 위해서는 "--add-opens=java.base/java.lang={0}" 자바 명령 행 아규먼트를 추가하십시오. 또는 이 경고 메시지를 없애고 싶다면 ThreadLocal 메모리 누수 탐지 옵션을 비활성화 시키십시오. webappClassLoader.addPermissionNoCanonicalFile=URL [{0}](으)로부터 canonical 파일 경로를 얻을 수 없습니다. webappClassLoader.addPermissionNoProtocol=URL [{1}] 내의 프로토콜 [{0}]은(는) 지원되지 않으므로, 이 URL의 리소스에 대한 읽기가 승인되지 않았습니다. webappClassLoader.addTransformer=클래스 파일 Transformer [{0}]을(를) 웹 애플리케이션 [{1}]에 추가했습니다. diff --git a/java/org/apache/catalina/mbeans/LocalStrings_ko.properties b/java/org/apache/catalina/mbeans/LocalStrings_ko.properties index 7d62698..c882873 100644 --- a/java/org/apache/catalina/mbeans/LocalStrings_ko.properties +++ b/java/org/apache/catalina/mbeans/LocalStrings_ko.properties @@ -60,3 +60,4 @@ userMBean.destroyError.role=역할 [{0}] MBean을 소멸시키는 중 예외 발 userMBean.destroyError.user=사용자 [{0}] MBean을 소멸시키는 중 예외 발생 userMBean.invalidGroup=유효하지 않은 그룹 이름 [{0}] userMBean.invalidRole=유효하지 않은 역할 이름 [{0}] +userMBean.saveError=저장 오퍼레이션에서 오류 발생 diff --git a/java/org/apache/catalina/users/LocalStrings_ko.properties b/java/org/apache/catalina/users/LocalStrings_ko.properties index 0ac2f1a..d026164 100644 --- a/java/org/apache/catalina/users/LocalStrings_ko.properties +++ b/java/org/apache/catalina/users/LocalStrings_ko.properties @@ -13,6 +13,8 @@ # See the License for the specific language governing permissions and # limitations under the License. +dataSourceUserDatabase.exception=데이터베이스 접근 과정에서 예외 발생 + memoryUserDatabase.fileClose=[{0}]을(를) 닫지 못했습니다. memoryUserDatabase.fileDelete=[{0}]을(를) 삭제하지 못했습니다. memoryUserDatabase.fileNotFound=지정된 사용자 데이터베이스 [{0}]을(를) 찾을 수 없었습니다. diff --git a/java/org/apache/tomcat/websocket/LocalStrings_ko.properties b/java/org/apache/tomcat/websocket/LocalStrings_ko.properties index 2297888..8b2ff98 100644 --- a/java/org/apache/tomcat/websocket/LocalStrings_ko.properties +++ b/java/org/apache/tomcat/websocket/LocalStrings_ko.properties @@ -25,6 +25,7 @@ asyncChannelWrapperSecure.eof=예기치 않은 스트림의 끝 asyncChannelWrapperSecure.statusUnwrap=unwrap() 오퍼레이션 후에, SSLEngineResult의 예기치 않은 상태입니다. asyncChannelWrapperSecure.statusWrap=wrap() 오퍼레이션 수행 이후, SSLEngineResult의 예기치 않은 상태입니다. asyncChannelWrapperSecure.tooBig=결과 [{0}]이(가) 너무 커서, 정수로서 표현될 수 없습니다. +asyncChannelWrapperSecure.unexpectedHandshakeState=TLS handshake 도중 예기치 않은 상태 [{0}] asyncChannelWrapperSecure.wrongStateRead=읽기 오퍼레이션을 완료하려 시도할 때에, 읽기 진행 중임을 표시하는 플래그가 false인 것으로 (true였어만 했음에도) 밝혀졌습니다. asyncChannel
[tomcat] 05/05: Improvements to Spanish translations contributed by Israel
This is an automated email from the ASF dual-hosted git repository. markt pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/tomcat.git commit f2e57c94034d515e340eae275c1fa4f05804228e Author: Mark Thomas AuthorDate: Fri Dec 31 17:11:33 2021 + Improvements to Spanish translations contributed by Israel --- java/org/apache/catalina/loader/LocalStrings_es.properties | 1 + webapps/docs/changelog.xml | 3 +++ 2 files changed, 4 insertions(+) diff --git a/java/org/apache/catalina/loader/LocalStrings_es.properties b/java/org/apache/catalina/loader/LocalStrings_es.properties index db9f329..5f11dea 100644 --- a/java/org/apache/catalina/loader/LocalStrings_es.properties +++ b/java/org/apache/catalina/loader/LocalStrings_es.properties @@ -13,6 +13,7 @@ # See the License for the specific language governing permissions and # limitations under the License. +webappClassLoader.addExportsThreadLocal=Necesitas agregar "--add-opens=java.base/java.lang={0}" a los argumentos JVM en la línea de comandos, para habilitar la detección de fuga de memoria ThreadLocal. Alternativamente, puedes suprimir esta advertencia, deshabilitando la detección de fuga de memoria ThreadLocal. webappClassLoader.checkThreadLocalsForLeaks=La aplicación web [{0}] creó un ThreadLocal con clave del tipo [{1}] (valor [{2}]) y un valor del tipo [{3}] (valor [{4}]) pero no pudo quitarlo cuando la aplicación web se paró. Los hilos se van a renovar con el tiempo para intentar evitar in posible fallo de memoria. webappClassLoader.checkThreadLocalsForLeaks.badKey=No puedo determinar la representación de cadena de la clave del tipo [{0}] webappClassLoader.checkThreadLocalsForLeaks.badValue=No puedo determinar la representación de cadena del valor del tipo [{0}] diff --git a/webapps/docs/changelog.xml b/webapps/docs/changelog.xml index b0a6924..aa83ff9 100644 --- a/webapps/docs/changelog.xml +++ b/webapps/docs/changelog.xml @@ -190,6 +190,9 @@ Improvements to Korean translations. (woonsan) + +Improvements to Spanish translations contributed by Israel. (markt) + - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[tomcat] 02/05: Improvements to French translatrions (remm)
This is an automated email from the ASF dual-hosted git repository. markt pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/tomcat.git commit e223badb2b5e3cc9e31022951cda1ee4737b4197 Author: Mark Thomas AuthorDate: Fri Dec 31 16:55:58 2021 + Improvements to French translatrions (remm) --- .../apache/catalina/authenticator/jaspic/LocalStrings_fr.properties| 1 + java/org/apache/catalina/loader/LocalStrings_fr.properties | 1 + java/org/apache/catalina/mbeans/LocalStrings_fr.properties | 1 + java/org/apache/catalina/users/LocalStrings_fr.properties | 2 ++ java/org/apache/tomcat/websocket/LocalStrings_fr.properties| 1 + webapps/docs/changelog.xml | 3 +++ 6 files changed, 9 insertions(+) diff --git a/java/org/apache/catalina/authenticator/jaspic/LocalStrings_fr.properties b/java/org/apache/catalina/authenticator/jaspic/LocalStrings_fr.properties index 0b3335d..e6aecb4 100644 --- a/java/org/apache/catalina/authenticator/jaspic/LocalStrings_fr.properties +++ b/java/org/apache/catalina/authenticator/jaspic/LocalStrings_fr.properties @@ -28,5 +28,6 @@ jaspicAuthenticator.authenticate=Authentification de la requête pour [{0}] avec persistentProviderRegistrations.deleteFail=Le fichier temporaire [{0}] n''a pas pu être effacé persistentProviderRegistrations.existsDeleteFail=Le fichier temporaire [{0}] existe déjà et ne peut être effacé persistentProviderRegistrations.moveFail=Echec de déplacement de [{0}] vers [{1}] +persistentProviderRegistrations.xmlFeatureEncoding=Exception lors de la configuration de JASPIC pour permettre des nom d'encodage Java dans les fichiers de configuration XML, seuls les noms d'encodage IANA seront supportés simpleServerAuthConfig.noModules=Aucun ServerAuthModules n'est configuré diff --git a/java/org/apache/catalina/loader/LocalStrings_fr.properties b/java/org/apache/catalina/loader/LocalStrings_fr.properties index 86de581..3a685ee 100644 --- a/java/org/apache/catalina/loader/LocalStrings_fr.properties +++ b/java/org/apache/catalina/loader/LocalStrings_fr.properties @@ -15,6 +15,7 @@ webappClassLoader.addExportsJavaIo=Lorsque Java 9 ou ultérieur est utilisé, "--add-opens=java.base/java.io={0}" doit être ajouté aux arguments de la ligne de commande de la JVM pour activer la protection contre les fuites de mémoire du cache de ObjectStream; cet avertissement peut aussi être supprimé en désactivant cette protection webappClassLoader.addExportsRmi=Quand Java 9 est utilisé, il faut utiliser "--add-opens=java.rmi/sun.rmi.transport=ALL-UNNAMED" sur la ligne de commande de la JVM pour activer la détection de fuites de mémoire des cibles RMI ; sinon cet avertissement peut être supprimé en désactivant cette détection +webappClassLoader.addExportsThreadLocal=Il est nécessaire d''ajouter "--add-opens=java.base/java.lang={0}" aux arguments de la ligne de commande de la JVM pour activer la détection des fuites de mémoire des ThreadLocal; il est aussi possible d''éviter cet avertissement en désactivant cette détection webappClassLoader.addPermissionNoCanonicalFile=Impossible d’obtenir le chemin de fichier canonique pour l''URL [{0}] webappClassLoader.addPermissionNoProtocol=Le protocole [{0}] dans l''URL [{1}] n''est pas supporté donc aucune permission de lecture n''a été assignée pour les ressources situées à cette URL webappClassLoader.addTransformer=Ajout d''un transformateur de fichier de class [{0}] pour l''application web [{1}] diff --git a/java/org/apache/catalina/mbeans/LocalStrings_fr.properties b/java/org/apache/catalina/mbeans/LocalStrings_fr.properties index 3863e77..37a47f5 100644 --- a/java/org/apache/catalina/mbeans/LocalStrings_fr.properties +++ b/java/org/apache/catalina/mbeans/LocalStrings_fr.properties @@ -60,3 +60,4 @@ userMBean.destroyError.role=Erreur lors de la destruction du MBean du rôle [{0} userMBean.destroyError.user=Erreur lors de la destruction du MBean de l''utilisateur [{0}] userMBean.invalidGroup=Nom de groupe [{0}] invalide userMBean.invalidRole=Nom de rôle [{0}] invalide +userMBean.saveError=Erreur lors de l'opération de sauvegarde diff --git a/java/org/apache/catalina/users/LocalStrings_fr.properties b/java/org/apache/catalina/users/LocalStrings_fr.properties index e31177a..a602458 100644 --- a/java/org/apache/catalina/users/LocalStrings_fr.properties +++ b/java/org/apache/catalina/users/LocalStrings_fr.properties @@ -13,6 +13,8 @@ # See the License for the specific language governing permissions and # limitations under the License. +dataSourceUserDatabase.exception=Exception lors de l'accès à la base de données + memoryUserDatabase.fileClose=Echec de fermeture [{0}] memoryUserDatabase.fileDelete=Impossible d''effacer [{0}] memoryUserDatabase.fileNotFound=La base d''utilisateurs spécifiée [{0}] n''a pas été trouvée diff --git a/java/org/apache/tomcat/websocket/LocalStrings_fr
[tomcat] branch 9.0.x updated (3abafc7 -> bb0bb33)
This is an automated email from the ASF dual-hosted git repository. markt pushed a change to branch 9.0.x in repository https://gitbox.apache.org/repos/asf/tomcat.git. from 3abafc7 Update OWB and CXF example modules version numbers new 8b52655 Fix alphabetical order new bb0bb33 Back-port translation improvements The 2 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: java/javax/el/LocalStrings_ja.properties | 24 ++--- java/javax/servlet/http/LocalStrings_ja.properties | 2 +- .../authenticator/LocalStrings_ja.properties | 22 ++-- .../jaspic/LocalStrings_fr.properties | 1 + .../jaspic/LocalStrings_ja.properties | 11 +- .../jaspic/LocalStrings_ko.properties | 1 + .../catalina/connector/LocalStrings_ja.properties | 4 +- .../catalina/core/LocalStrings_ja.properties | 82 +++--- .../catalina/deploy/LocalStrings_ja.properties | 14 +-- .../catalina/filters/LocalStrings_ja.properties| 48 - .../catalina/ha/backend/LocalStrings_ja.properties | 2 +- .../catalina/ha/deploy/LocalStrings_ja.properties | 16 +-- .../catalina/ha/session/LocalStrings_ja.properties | 18 ++-- .../catalina/ha/tcp/LocalStrings_ja.properties | 12 +-- .../catalina/loader/LocalStrings_ja.properties | 14 +-- .../catalina/manager/LocalStrings_ja.properties| 28 ++--- .../manager/host/LocalStrings_ja.properties| 18 ++-- .../catalina/mapper/LocalStrings_ja.properties | 20 ++-- .../apache/catalina/mbeans/LocalStrings.properties | 2 +- .../catalina/mbeans/LocalStrings_fr.properties | 1 + .../catalina/mbeans/LocalStrings_ja.properties | 21 ++-- .../catalina/mbeans/LocalStrings_ko.properties | 1 + .../catalina/realm/LocalStrings_ja.properties | 22 ++-- .../catalina/security/LocalStrings.properties | 4 +- .../catalina/security/LocalStrings_ja.properties | 4 +- .../catalina/servlets/LocalStrings_ja.properties | 18 ++-- .../catalina/session/LocalStrings_ja.properties| 6 +- .../apache/catalina/ssi/LocalStrings_ja.properties | 14 +-- .../catalina/startup/LocalStrings_ja.properties| 36 +++ .../storeconfig/LocalStrings_ja.properties | 12 +-- .../tribes/group/LocalStrings_ja.properties| 4 +- .../group/interceptors/LocalStrings_ja.properties | 2 +- .../catalina/tribes/io/LocalStrings_ja.properties | 6 +- .../catalina/tribes/jmx/LocalStrings_ja.properties | 2 +- .../tribes/membership/LocalStrings_ja.properties | 14 +-- .../membership/cloud/LocalStrings_ja.properties| 6 +- .../tribes/tipis/LocalStrings_ja.properties| 10 +- .../tribes/transport/LocalStrings_ja.properties| 2 +- .../transport/nio/LocalStrings_ja.properties | 8 +- .../catalina/users/LocalStrings_fr.properties | 2 + .../catalina/users/LocalStrings_ja.properties | 6 +- .../catalina/users/LocalStrings_ko.properties | 2 + .../catalina/util/LocalStrings_ja.properties | 20 ++-- .../catalina/valves/LocalStrings_ja.properties | 18 ++-- .../valves/rewrite/LocalStrings_ja.properties | 2 +- .../webresources/LocalStrings_ja.properties| 16 +-- java/org/apache/coyote/LocalStrings_ja.properties | 10 +- .../apache/coyote/ajp/LocalStrings_ja.properties | 2 +- .../coyote/http11/LocalStrings_ja.properties | 14 +-- .../http11/upgrade/LocalStrings_ja.properties | 2 +- .../apache/coyote/http2/LocalStrings.properties| 2 +- .../apache/coyote/http2/LocalStrings_ja.properties | 102 +- .../coyote/http2/LocalStrings_zh_CN.properties | 2 +- .../jasper/resources/LocalStrings_ja.properties| 120 ++--- java/org/apache/naming/LocalStrings_ja.properties | 2 +- .../naming/factory/LocalStrings_ja.properties | 4 +- .../factory/webservices/LocalStrings_ja.properties | 2 +- .../tomcat/dbcp/dbcp2/LocalStrings_ja.properties | 2 +- .../tomcat/util/buf/LocalStrings_ja.properties | 2 +- .../util/codec/binary/LocalStrings_ja.properties | 2 +- .../util/descriptor/LocalStrings_ja.properties | 4 +- .../util/descriptor/web/LocalStrings_ja.properties | 12 +-- .../util/digester/LocalStrings_ja.properties | 2 +- .../tomcat/util/http/LocalStrings_ja.properties| 4 +- .../util/http/parser/LocalStrings_ja.properties| 4 +- .../tomcat/util/modeler/LocalStrings_ja.properties | 2 +- .../tomcat/util/net/LocalStrings_ja.properties | 56 +- .../util/net/jsse/LocalStrings_ja.properties | 2 +- .../util/net/openssl/LocalStrings_ja.properties| 6 +- .../tomcat/util/scan/LocalStrings_ja.properties| 4 +- .../tomcat/util/threads/LocalStrings_ja.proper
[tomcat] 01/02: Fix alphabetical order
This is an automated email from the ASF dual-hosted git repository. markt pushed a commit to branch 9.0.x in repository https://gitbox.apache.org/repos/asf/tomcat.git commit 8b52655e760078a53f624e7fb885a24a09b95283 Author: Mark Thomas AuthorDate: Fri Dec 31 17:55:39 2021 + Fix alphabetical order --- java/org/apache/catalina/mbeans/LocalStrings.properties | 2 +- java/org/apache/catalina/security/LocalStrings.properties | 4 ++-- java/org/apache/coyote/http2/LocalStrings.properties | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/java/org/apache/catalina/mbeans/LocalStrings.properties b/java/org/apache/catalina/mbeans/LocalStrings.properties index 529a941..fb63a26 100644 --- a/java/org/apache/catalina/mbeans/LocalStrings.properties +++ b/java/org/apache/catalina/mbeans/LocalStrings.properties @@ -20,8 +20,8 @@ globalResources.createError.userDatabase=Cannot create UserDatabase MBean for re globalResources.createError.userDatabase.group=Cannot create Group MBean for group [{0}] globalResources.createError.userDatabase.role=Cannot create Role MBean for role [{0}] globalResources.createError.userDatabase.user=Cannot create User MBean for user [{0}] -globalResources.notServer=This listener must only be nested within Server elements, but is in [{0}]. globalResources.noNamingContext=No global naming context defined for server +globalResources.notServer=This listener must only be nested within Server elements, but is in [{0}]. globalResources.userDatabaseCreateError=Exception creating UserDatabase MBeans for [{0}] jmxRemoteLifecycleListener.createRegistryFailed=Unable to create the RMI registry for the [{0}] server using port [{1}] diff --git a/java/org/apache/catalina/security/LocalStrings.properties b/java/org/apache/catalina/security/LocalStrings.properties index 1c604fd..f1e1aa6 100644 --- a/java/org/apache/catalina/security/LocalStrings.properties +++ b/java/org/apache/catalina/security/LocalStrings.properties @@ -13,8 +13,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -listener.notServer=This listener must only be nested within Server elements, but is in [{0}]. - SecurityListener.checkUmaskFail=Start attempted with umask setting of [{0}]. Running Tomcat without a umask at least as restrictive as [{1}] has been blocked by the Lifecycle listener org.apache.catalina.security.SecurityListener (usually configured in CATALINA_BASE/conf/server.xml) SecurityListener.checkUmaskNone=No umask setting was found in system property [{0}]. However, it appears Tomcat is running on a platform that supports umask. The system property is typically set in CATALINA_HOME/bin/catalina.sh. The Lifecycle listener org.apache.catalina.security.SecurityListener (usually configured in CATALINA_BASE/conf/server.xml) expects a umask at least as restrictive as [{1}] SecurityListener.checkUmaskParseFail=Failed to parse value [{0}] as a valid umask. @@ -22,3 +20,5 @@ SecurityListener.checkUmaskSkip=Unable to determine umask. It appears Tomcat is SecurityListener.checkUserWarning=Start attempted while running as user [{0}]. Running Tomcat as this user has been blocked by the Lifecycle listener org.apache.catalina.security.SecurityListener (usually configured in CATALINA_BASE/conf/server.xml) SecurityUtil.doAsPrivilege=An exception occurs when running the PrivilegedExceptionAction block. + +listener.notServer=This listener must only be nested within Server elements, but is in [{0}]. diff --git a/java/org/apache/coyote/http2/LocalStrings.properties b/java/org/apache/coyote/http2/LocalStrings.properties index 999a8d6..6151d96 100644 --- a/java/org/apache/coyote/http2/LocalStrings.properties +++ b/java/org/apache/coyote/http2/LocalStrings.properties @@ -13,8 +13,8 @@ # See the License for the specific language governing permissions and # limitations under the License. -abstractStream.setConnectionAllocationRequested=Connection [{0}], Stream [{1}], connection allocation requested changed from [{2}] to [{3}] abstractStream.setConnectionAllocationMade=Connection [{0}], Stream [{1}], connection allocation made changed from [{2}] to [{3}] +abstractStream.setConnectionAllocationRequested=Connection [{0}], Stream [{1}], connection allocation requested changed from [{2}] to [{3}] abstractStream.windowSizeDec=Connection [{0}], Stream [{1}], reduce flow control window by [{2}] to [{3}] abstractStream.windowSizeInc=Connection [{0}], Stream [{1}], increase flow control window by [{2}] to [{3}] abstractStream.windowSizeTooBig=Connection [{0}], Stream [{1}], increased window size by [{2}] to [{3}] which exceeded permitted maximum - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[tomcat] branch 8.5.x updated (3907bba -> 6e87bba)
This is an automated email from the ASF dual-hosted git repository. markt pushed a change to branch 8.5.x in repository https://gitbox.apache.org/repos/asf/tomcat.git. from 3907bba Fix typo new e22c523 Correct alphabetical order new 6e87bba Back-port improvements to translations The 2 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: java/javax/el/LocalStrings_ja.properties | 24 ++--- java/javax/servlet/http/LocalStrings_ja.properties | 2 +- .../authenticator/LocalStrings_ja.properties | 22 ++--- .../jaspic/LocalStrings_fr.properties | 1 + .../jaspic/LocalStrings_ja.properties | 11 ++- .../jaspic/LocalStrings_ko.properties | 1 + .../catalina/connector/LocalStrings_ja.properties | 4 +- .../catalina/core/LocalStrings_ja.properties | 82 .../catalina/deploy/LocalStrings_ja.properties | 14 +-- .../catalina/filters/LocalStrings_ja.properties| 48 - .../catalina/ha/backend/LocalStrings_ja.properties | 2 +- .../catalina/ha/deploy/LocalStrings_ja.properties | 16 +-- .../catalina/ha/session/LocalStrings_ja.properties | 18 ++-- .../catalina/ha/tcp/LocalStrings_ja.properties | 12 +-- .../catalina/loader/LocalStrings_ja.properties | 14 +-- .../catalina/manager/LocalStrings_ja.properties| 18 ++-- .../manager/host/LocalStrings_ja.properties| 18 ++-- .../catalina/mapper/LocalStrings_ja.properties | 18 ++-- .../catalina/mbeans/LocalStrings_ja.properties | 4 +- .../catalina/realm/LocalStrings_ja.properties | 16 +-- .../catalina/security/LocalStrings.properties | 4 +- .../catalina/security/LocalStrings_ja.properties | 4 +- .../catalina/servlets/LocalStrings_ja.properties | 18 ++-- .../catalina/session/LocalStrings_ja.properties| 6 +- .../catalina/startup/LocalStrings_ja.properties| 28 +++--- .../storeconfig/LocalStrings_ja.properties | 6 +- .../tribes/group/LocalStrings_ja.properties| 4 +- .../group/interceptors/LocalStrings_ja.properties | 2 +- .../catalina/tribes/io/LocalStrings_ja.properties | 6 +- .../catalina/tribes/jmx/LocalStrings_ja.properties | 2 +- .../tribes/membership/LocalStrings_ja.properties | 12 +-- .../tribes/tipis/LocalStrings_ja.properties| 10 +- .../tribes/transport/LocalStrings_ja.properties| 2 +- .../transport/nio/LocalStrings_ja.properties | 8 +- .../catalina/users/LocalStrings_ja.properties | 4 +- .../catalina/util/LocalStrings_ja.properties | 20 ++-- .../catalina/valves/LocalStrings_ja.properties | 16 +-- .../valves/rewrite/LocalStrings_ja.properties | 2 +- .../webresources/LocalStrings_ja.properties| 16 +-- java/org/apache/coyote/LocalStrings_ja.properties | 8 +- .../apache/coyote/ajp/LocalStrings_ja.properties | 2 +- .../coyote/http11/LocalStrings_ja.properties | 14 +-- .../http11/upgrade/LocalStrings_ja.properties | 2 +- .../apache/coyote/http2/LocalStrings.properties| 2 +- .../apache/coyote/http2/LocalStrings_ja.properties | 100 +-- .../coyote/http2/LocalStrings_zh_CN.properties | 2 +- .../jasper/resources/LocalStrings_ja.properties| 108 ++--- java/org/apache/naming/LocalStrings_ja.properties | 2 +- .../naming/factory/LocalStrings_ja.properties | 4 +- .../factory/webservices/LocalStrings_ja.properties | 2 +- .../tomcat/dbcp/dbcp2/LocalStrings_ja.properties | 2 +- .../apache/tomcat/util/buf/LocalStrings.properties | 4 +- .../tomcat/util/buf/LocalStrings_fr.properties | 2 + .../tomcat/util/buf/LocalStrings_ja.properties | 4 +- .../tomcat/util/buf/LocalStrings_ko.properties | 2 + .../tomcat/util/buf/LocalStrings_zh_CN.properties | 2 + .../util/codec/binary/LocalStrings_ja.properties | 2 +- .../util/descriptor/LocalStrings_ja.properties | 4 +- .../util/descriptor/web/LocalStrings_ja.properties | 12 +-- .../tomcat/util/http/LocalStrings_ja.properties| 4 +- .../util/http/parser/LocalStrings_ja.properties| 4 +- .../tomcat/util/net/LocalStrings_de.properties | 1 + .../tomcat/util/net/LocalStrings_es.properties | 1 + .../tomcat/util/net/LocalStrings_fr.properties | 2 + .../tomcat/util/net/LocalStrings_ja.properties | 50 +- .../tomcat/util/net/LocalStrings_ko.properties | 2 + .../tomcat/util/net/LocalStrings_zh_CN.properties | 2 + .../util/net/jsse/LocalStrings_ja.properties | 2 +- .../util/net/openssl/LocalStrings_ja.properties| 6 +- .../tomcat/util/scan/LocalStrings_ja.properties| 2 +- .../tomcat/util/threads/LocalStrings_ja.properties | 2 +- .../tomcat/websocket/Local
[tomcat] 01/02: Correct alphabetical order
This is an automated email from the ASF dual-hosted git repository. markt pushed a commit to branch 8.5.x in repository https://gitbox.apache.org/repos/asf/tomcat.git commit e22c5237d823f10be1c418aa3ad46d8085934cbe Author: Mark Thomas AuthorDate: Fri Dec 31 18:06:39 2021 + Correct alphabetical order --- java/org/apache/catalina/security/LocalStrings.properties | 4 ++-- java/org/apache/coyote/http2/LocalStrings.properties | 2 +- java/org/apache/tomcat/util/buf/LocalStrings.properties | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/java/org/apache/catalina/security/LocalStrings.properties b/java/org/apache/catalina/security/LocalStrings.properties index 1c604fd..f1e1aa6 100644 --- a/java/org/apache/catalina/security/LocalStrings.properties +++ b/java/org/apache/catalina/security/LocalStrings.properties @@ -13,8 +13,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -listener.notServer=This listener must only be nested within Server elements, but is in [{0}]. - SecurityListener.checkUmaskFail=Start attempted with umask setting of [{0}]. Running Tomcat without a umask at least as restrictive as [{1}] has been blocked by the Lifecycle listener org.apache.catalina.security.SecurityListener (usually configured in CATALINA_BASE/conf/server.xml) SecurityListener.checkUmaskNone=No umask setting was found in system property [{0}]. However, it appears Tomcat is running on a platform that supports umask. The system property is typically set in CATALINA_HOME/bin/catalina.sh. The Lifecycle listener org.apache.catalina.security.SecurityListener (usually configured in CATALINA_BASE/conf/server.xml) expects a umask at least as restrictive as [{1}] SecurityListener.checkUmaskParseFail=Failed to parse value [{0}] as a valid umask. @@ -22,3 +20,5 @@ SecurityListener.checkUmaskSkip=Unable to determine umask. It appears Tomcat is SecurityListener.checkUserWarning=Start attempted while running as user [{0}]. Running Tomcat as this user has been blocked by the Lifecycle listener org.apache.catalina.security.SecurityListener (usually configured in CATALINA_BASE/conf/server.xml) SecurityUtil.doAsPrivilege=An exception occurs when running the PrivilegedExceptionAction block. + +listener.notServer=This listener must only be nested within Server elements, but is in [{0}]. diff --git a/java/org/apache/coyote/http2/LocalStrings.properties b/java/org/apache/coyote/http2/LocalStrings.properties index b6e1347..eaaa9c2 100644 --- a/java/org/apache/coyote/http2/LocalStrings.properties +++ b/java/org/apache/coyote/http2/LocalStrings.properties @@ -13,8 +13,8 @@ # See the License for the specific language governing permissions and # limitations under the License. -abstractStream.setConnectionAllocationRequested=Connection [{0}], Stream [{1}], connection allocation requested changed from [{2}] to [{3}] abstractStream.setConnectionAllocationMade=Connection [{0}], Stream [{1}], connection allocation made changed from [{2}] to [{3}] +abstractStream.setConnectionAllocationRequested=Connection [{0}], Stream [{1}], connection allocation requested changed from [{2}] to [{3}] abstractStream.windowSizeDec=Connection [{0}], Stream [{1}], reduce flow control window by [{2}] to [{3}] abstractStream.windowSizeInc=Connection [{0}], Stream [{1}], increase flow control window by [{2}] to [{3}] abstractStream.windowSizeTooBig=Connection [{0}], Stream [{1}], increased window size by [{2}] to [{3}] which exceeded permitted maximum diff --git a/java/org/apache/tomcat/util/buf/LocalStrings.properties b/java/org/apache/tomcat/util/buf/LocalStrings.properties index 0f14806..d7eace5 100644 --- a/java/org/apache/tomcat/util/buf/LocalStrings.properties +++ b/java/org/apache/tomcat/util/buf/LocalStrings.properties @@ -20,10 +20,10 @@ b2cConverter.unknownEncoding=The character encoding [{0}] is not supported byteBufferUtils.cleaner=Cannot use direct ByteBuffer cleaner, memory leaking may occur -chunk.overflow=Buffer overflow and no sink is set, limit [{0}] and buffer length [{1}] - c2bConverter.recycleFailed=Failed to recycle the C2B Converter. Creating new BufferedWriter, WriteConvertor and IntermediateOutputStream. +chunk.overflow=Buffer overflow and no sink is set, limit [{0}] and buffer length [{1}] + encodedSolidusHandling.invalid=The value [{0}] is not recognised hexUtils.fromHex.nonHex=The input must consist only of hex digits - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org