This is an automated email from the ASF dual-hosted git repository.
kezhenxu94 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/skywalking.git
The following commit(s) were added to refs/heads/master by this push:
new ba5e56f Fix wrong position of arguments (#8548)
ba5e56f is described below
commit ba5e56f41a0ee31bad38c319784e3171b0a51d80
Author: kezhenxu94 <[email protected]>
AuthorDate: Wed Feb 16 15:13:17 2022 +0800
Fix wrong position of arguments (#8548)
---
.../plugin/elasticsearch/StorageModuleElasticsearchProvider.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/oap-server/server-storage-plugin/storage-elasticsearch-plugin/src/main/java/org/apache/skywalking/oap/server/storage/plugin/elasticsearch/StorageModuleElasticsearchProvider.java
b/oap-server/server-storage-plugin/storage-elasticsearch-plugin/src/main/java/org/apache/skywalking/oap/server/storage/plugin/elasticsearch/StorageModuleElasticsearchProvider.java
index d956245..b58d240 100644
---
a/oap-server/server-storage-plugin/storage-elasticsearch-plugin/src/main/java/org/apache/skywalking/oap/server/storage/plugin/elasticsearch/StorageModuleElasticsearchProvider.java
+++
b/oap-server/server-storage-plugin/storage-elasticsearch-plugin/src/main/java/org/apache/skywalking/oap/server/storage/plugin/elasticsearch/StorageModuleElasticsearchProvider.java
@@ -156,8 +156,8 @@ public class StorageModuleElasticsearchProvider extends
ModuleProvider {
config.getClusterNodes(), config.getProtocol(),
config.getTrustStorePath(), config
.getTrustStorePass(), config.getUser(), config.getPassword(),
indexNameConverter(config.getNamespace()),
config.getConnectTimeout(),
- config.getSocketTimeout(), config.getNumHttpClientThread(),
- config.getResponseTimeout()
+ config.getSocketTimeout(), config.getResponseTimeout(),
+ config.getNumHttpClientThread()
);
this.registerServiceImplementation(
IBatchDAO.class,