eventmesh-runtime/src/main/java/org/apache/eventmesh/runtime/meta/MetaStorage.java [58:69]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private static MetaStorage metaStorageBuilder(String metaPluginType) {
        MetaService metaServiceExt = EventMeshExtensionFactory.getExtension(MetaService.class, metaPluginType);
        if (metaServiceExt == null) {
            String errorMsg = "can't load the metaService plugin, please check.";
            log.error(errorMsg);
            throw new RuntimeException(errorMsg);
        }
        MetaStorage metaStorage = new MetaStorage();
        metaStorage.metaService = metaServiceExt;

        return metaStorage;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



eventmesh-runtime-v2/src/main/java/org/apache/eventmesh/runtime/meta/MetaStorage.java [58:69]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private static MetaStorage metaStorageBuilder(String metaPluginType) {
        MetaService metaServiceExt = EventMeshExtensionFactory.getExtension(MetaService.class, metaPluginType);
        if (metaServiceExt == null) {
            String errorMsg = "can't load the metaService plugin, please check.";
            log.error(errorMsg);
            throw new RuntimeException(errorMsg);
        }
        MetaStorage metaStorage = new MetaStorage();
        metaStorage.metaService = metaServiceExt;

        return metaStorage;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



