Aitozi commented on a change in pull request #8236:
[FLINK-12289][flink-runtime]Fix bugs and typos in Memory manager
URL: https://github.com/apache/flink/pull/8236#discussion_r277933794
##########
File path:
flink-runtime/src/main/java/org/apache/flink/runtime/memory/MemoryManager.java
##########
@@ -387,11 +387,11 @@ public void release(MemorySegment segment) {
*
* @param segments The segments to be released.
* @throws NullPointerException Thrown, if the given collection is null.
- * @throws IllegalArgumentException Thrown, id the segments are of an
incompatible type.
+ * @throws IllegalArgumentException Thrown, if the segments are of an
incompatible type.
*/
public void release(Collection<MemorySegment> segments) {
if (segments == null) {
- return;
+ throw new NullPointerException();
Review comment:
It's truly inconsistent, but this fix will change the default behaviour of
the release operation, and the `release(MemorySegment segment)` also skip the
null... I think may be it need @StephanEwen author of the `MemoryManager.java`
to confirm, Thanks.
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services