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
This commit is contained in:
Przemyslaw Gomulka 2023-08-01 17:33:29 +02:00 committed by GitHub
parent 0c308e2246
commit 0aed016215
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;