[
https://issues.apache.org/jira/browse/AVRO-3368?focusedWorklogId=723998&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-723998
]
ASF GitHub Bot logged work on AVRO-3368:
----------------------------------------
Author: ASF GitHub Bot
Created on: 09/Feb/22 20:21
Start Date: 09/Feb/22 20:21
Worklog Time Spent: 10m
Work Description: martin-g edited a comment on pull request #1519:
URL: https://github.com/apache/avro/pull/1519#issuecomment-1034158008
> It just seems unncesseray risk to me
I agree! That's why I ask you to review when I am not certain.
The comment by the Kafka people is vague and I doubt their problem was with
the code style, formatting, sorting of variables.
Most probably they meant unresolved bugs like most of
https://issues.apache.org/jira/browse/AVRO-3259?jql=project%20%3D%20AVRO%20AND%20component%20%3D%20csharp%20%20AND%20resolution%20%3D%20Unresolved%20ORDER%20BY%20created%20DESC%2C%20priority%20DESC%2C%20updated%20DESC
> However if something is broken in the future, it can be fixed later I
guess.
The question here is how much time it will take until the next release. At
the moment Avro project is released as a whole, i.e. all modules. I am not sure
whether there was a fix release of a single module in the past.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
Issue Time Tracking
-------------------
Worklog Id: (was: 723998)
Time Spent: 6h (was: 5h 50m)
> Remove accessible field value from GenericFixed
> ------------------------------------------------
>
> Key: AVRO-3368
> URL: https://issues.apache.org/jira/browse/AVRO-3368
> Project: Apache Avro
> Issue Type: Improvement
> Components: csharp
> Affects Versions: 1.11.0
> Reporter: Kyle Schoonover
> Priority: Major
> Labels: pull-request-available
> Time Spent: 6h
> Remaining Estimate: 0h
>
> Update:
> {code:java}
> protected readonly byte[] value; {code}
> to:
> {code:java}
> [Obsolete("Will deprecate in future release use Value property")]
> protected byte[] value
> {
> get { return _value; }
> }
> /// <summary>
> /// Value of this fixed schema.
> /// </summary>
> private readonly byte[] _value; {code}
> Additional changes will need to be made to change everything from value to
> _value
--
This message was sent by Atlassian Jira
(v8.20.1#820001)