Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/en/changes/changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
* Refactor: simplify the `Accept` http header process.
* [Break Change]Storage: Move `event` from metrics to recods.
* Remove string limitation in Jackson deserializer for ElasticSearch client.
* Fix `disable.oal` does not work.

#### UI

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -405,16 +405,16 @@ public void start() throws ModuleStartException {
moduleConfig.getMaxHttpUrisNumberPerService()
);

// Disable OAL script has higher priority
oalEngineLoaderService.load(DisableOALDefine.INSTANCE);

try {
receiver.scan();
annotationScan.scan();
} catch (IOException | IllegalAccessException | InstantiationException | StorageException e) {
throw new ModuleStartException(e.getMessage(), e);
}

// Disable OAL script has higher priority
oalEngineLoaderService.load(DisableOALDefine.INSTANCE);

Address gRPCServerInstanceAddress = new Address(moduleConfig.getGRPCHost(), moduleConfig.getGRPCPort(), true);
TelemetryRelatedContext.INSTANCE.setId(gRPCServerInstanceAddress.toString());
ClusterCoordinator coordinator = this.getManager()
Expand Down
Loading