https://github.com/ome/omero-server/blob/master/src/main/java/ome/services/ThumbnailBean.java#L1141
Looks like this code at line 1141 is not comparing objects of the same type
if (inProgress && !PROGRESS_VERSION.equals(thumbnailMetadata)) {
==================
Should the getVersion() method be added:
if (inProgress && !PROGRESS_VERSION.equals(thumbnailMetadata.getVersion())) {
like it is at line 1042?
https://github.com/ome/omero-server/blob/master/src/main/java/ome/services/ThumbnailBean.java#L1141
Looks like this code at line 1141 is not comparing objects of the same type
if (inProgress && !PROGRESS_VERSION.equals(thumbnailMetadata)) {
==================
Should the getVersion() method be added:
if (inProgress && !PROGRESS_VERSION.equals(thumbnailMetadata.getVersion())) {
like it is at line 1042?