This is an automated email from the ASF dual-hosted git repository.
xiaoyu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/shenyu.git
The following commit(s) were added to refs/heads/master by this push:
new 118f8de790 fix shenyu-plugin-logging-elasticsearch : modify
setIndexName of ElasticSearchLogConfig (#5830)
118f8de790 is described below
commit 118f8de790abbd086281c090b5957e832800bba9
Author: mmengLong <[email protected]>
AuthorDate: Tue Dec 3 17:16:02 2024 +0800
fix shenyu-plugin-logging-elasticsearch : modify setIndexName of
ElasticSearchLogConfig (#5830)
---
.../logging/elasticsearch/config/ElasticSearchLogCollectConfig.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/shenyu-plugin/shenyu-plugin-logging/shenyu-plugin-logging-elasticsearch/src/main/java/org/apache/shenyu/plugin/logging/elasticsearch/config/ElasticSearchLogCollectConfig.java
b/shenyu-plugin/shenyu-plugin-logging/shenyu-plugin-logging-elasticsearch/src/main/java/org/apache/shenyu/plugin/logging/elasticsearch/config/ElasticSearchLogCollectConfig.java
index 7997476f60..ab124cba7d 100644
---
a/shenyu-plugin/shenyu-plugin-logging/shenyu-plugin-logging-elasticsearch/src/main/java/org/apache/shenyu/plugin/logging/elasticsearch/config/ElasticSearchLogCollectConfig.java
+++
b/shenyu-plugin/shenyu-plugin-logging/shenyu-plugin-logging-elasticsearch/src/main/java/org/apache/shenyu/plugin/logging/elasticsearch/config/ElasticSearchLogCollectConfig.java
@@ -82,7 +82,7 @@ public class ElasticSearchLogCollectConfig {
* setIndexName.
* @param indexName indexName
*/
- public void setIndeName(final String indexName) {
+ public void setIndexName(final String indexName) {
this.indexName = indexName;
}