浏览代码

Fix qualified export for serverless metering (#98106)

the module name of serverless metering is org.elasticsearch.metering
previously an incorrect name co.elastic.metering was used
Przemyslaw Gomulka 2 年之前
父节点
当前提交
0aed016215
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      server/src/main/java/module-info.java

+ 1 - 1
server/src/main/java/module-info.java

@@ -371,7 +371,7 @@ module org.elasticsearch.server {
 
     exports org.elasticsearch.action.datastreams.lifecycle;
     exports org.elasticsearch.action.downsample;
-    exports org.elasticsearch.plugins.internal to co.elastic.elasticsearch.metering, org.elasticsearch.settings.secure;
+    exports org.elasticsearch.plugins.internal to org.elasticsearch.metering, org.elasticsearch.settings.secure;
 
     provides java.util.spi.CalendarDataProvider with org.elasticsearch.common.time.IsoCalendarDataProvider;
     provides org.elasticsearch.xcontent.ErrorOnUnknown with org.elasticsearch.common.xcontent.SuggestingErrorOnUnknown;