streampipes-service-core/src/main/java/org/apache/streampipes/service/core/migrations/v0980/ModifyAssetLinksMigration.java [40:48]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public boolean shouldExecute() {
    try {
      return storage
          .findAll(GenericDocTypes.DOC_ASSET_LINK_TYPE)
          .stream().anyMatch(al -> al.get("linkType").equals("data-view"));
    } catch (IOException e) {
      return false;
    }
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



streampipes-service-core/src/main/java/org/apache/streampipes/service/core/migrations/v0980/ModifyAssetLinkTypesMigration.java [37:45]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public boolean shouldExecute() {
    try {
      return storage
          .findAll(GenericDocTypes.DOC_ASSET_LINK_TYPE)
          .stream().anyMatch(al -> al.get("linkType").equals("data-view"));
    } catch (IOException e) {
      return false;
    }
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



