[
https://issues.apache.org/jira/browse/FLINK-6765?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17328764#comment-17328764
]
Flink Jira Bot commented on FLINK-6765:
---------------------------------------
This major issue is unassigned and itself and all of its Sub-Tasks have not
been updated for 30 days. So, it has been labeled "stale-major". If this ticket
is indeed "major", please either assign yourself or give an update. Afterwards,
please remove the label. In 7 days the issue will be deprioritized.
> PojoSerializer returns wrong ConvertDeserializer when migration is required
> ---------------------------------------------------------------------------
>
> Key: FLINK-6765
> URL: https://issues.apache.org/jira/browse/FLINK-6765
> Project: Flink
> Issue Type: Bug
> Components: API / Type Serialization System
> Affects Versions: 1.3.0, 1.4.0
> Reporter: Till Rohrmann
> Priority: Major
> Labels: stale-major
>
> The {{PojoSerializer}} returns the wrong the ConvertDeserializer when
> migration is required. The reason is the following line in
> PojoSerializer.java:698:
> {code}
> if (compatResult.getConvertDeserializer() != null) {
> rebuiltCache.put(previousCachedEntry.getKey(), cachedSerializer);
> } else {
> return CompatibilityResult.requiresMigration();
> }
> {code}
> which should be imo
> {code}
> if (compatResult.getConvertDeserializer() != null) {
> rebuiltCache.put(previousCachedEntry.getKey(),
> compatResult.getConvertDeserializer());
> } else {
> return CompatibilityResult.requiresMigration();
> }
> {code}
--
This message was sent by Atlassian Jira
(v8.3.4#803005)