From 1fe2f32ecaa04aee5fa847c30cdc251e8f19571c Mon Sep 17 00:00:00 2001 From: Shinsuke Sugaya Date: Thu, 10 Sep 2026 21:15:02 +0900 Subject: [PATCH] docs: use the jcifs 3.x property names in the JVM options defaults The documented defaults for jvm.crawler.options and jvm.thumbnail.options listed seven jcifs system properties under names no supported jcifs version reads. jcifs 3.0.0 dropped the .smb segment from every key and folded the legacy SMB1 stack onto the same keys, so both jcifs.smb.client.* and jcifs.smb1.smb.client.* are ignored. Match the corrected defaults in codelibs/fess#3433: four properties under jcifs.client.*, and the three jcifs.smb1.smb.client.* duplicates removed because the legacy stack now reads the same keys. Only en/15.9 documents these options; no other language tree in the development version lists them. --- en/15.9/config/properties.rst | 22 ++++++++-------------- 1 file changed, 8 insertions(+), 14 deletions(-) diff --git a/en/15.9/config/properties.rst b/en/15.9/config/properties.rst index 635c258e..8f3b87f2 100644 --- a/en/15.9/config/properties.rst +++ b/en/15.9/config/properties.rst @@ -98,13 +98,10 @@ Core | -XX:MaxGCPauseMillis=60000\n\ | -XX:G1NewSizePercent=5\n\ | -XX:G1MaxNewSizePercent=5\n\ - | -Djcifs.smb.client.responseTimeout=30000\n\ - | -Djcifs.smb.client.soTimeout=35000\n\ - | -Djcifs.smb.client.connTimeout=60000\n\ - | -Djcifs.smb.client.sessionTimeout=60000\n\ - | -Djcifs.smb1.smb.client.connTimeout=60000\n\ - | -Djcifs.smb1.smb.client.soTimeout=35000\n\ - | -Djcifs.smb1.smb.client.responseTimeout=30000\n\ + | -Djcifs.client.responseTimeout=30000\n\ + | -Djcifs.client.soTimeout=35000\n\ + | -Djcifs.client.connTimeout=60000\n\ + | -Djcifs.client.sessionTimeout=60000\n\ | -Dio.netty.noUnsafe=true\n\ | -Dio.netty.noKeySetOptimization=true\n\ | -Dio.netty.recycler.maxCapacityPerThread=0\n\ @@ -168,13 +165,10 @@ Core | -XX:MaxGCPauseMillis=60000\n\ | -XX:G1NewSizePercent=5\n\ | -XX:G1MaxNewSizePercent=50\n\ - | -Djcifs.smb.client.responseTimeout=30000\n\ - | -Djcifs.smb.client.soTimeout=35000\n\ - | -Djcifs.smb.client.connTimeout=60000\n\ - | -Djcifs.smb.client.sessionTimeout=60000\n\ - | -Djcifs.smb1.smb.client.connTimeout=60000\n\ - | -Djcifs.smb1.smb.client.soTimeout=35000\n\ - | -Djcifs.smb1.smb.client.responseTimeout=30000\n\ + | -Djcifs.client.responseTimeout=30000\n\ + | -Djcifs.client.soTimeout=35000\n\ + | -Djcifs.client.connTimeout=60000\n\ + | -Djcifs.client.sessionTimeout=60000\n\ | -Dio.netty.noUnsafe=true\n\ | -Dio.netty.noKeySetOptimization=true\n\ | -Dio.netty.recycler.maxCapacityPerThread=0\n\