[jira] [Updated] (EAGLE-984) Potential null dereference in SimpleWindowCounter#poll()

2017-10-25 Thread Ted Yu (JIRA)

 [ 
https://issues.apache.org/jira/browse/EAGLE-984?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Ted Yu updated EAGLE-984:
-
Description: 
Here is related code:
{code}
public Tuple2 poll() {
long oldestTimestamp = timeQueue.poll();
Tuple2 pair = new Tuple2<>(oldestTimestamp, 
counter.get(oldestTimestamp));
{code}
We should check the return value from timeQueue.poll() before casting to long.

  was:
Here is related code:

{code}
public Tuple2 poll() {
long oldestTimestamp = timeQueue.poll();
Tuple2 pair = new Tuple2<>(oldestTimestamp, 
counter.get(oldestTimestamp));
{code}
We should check the return value from timeQueue.poll() before casting to long.


> Potential null dereference in SimpleWindowCounter#poll()
> 
>
> Key: EAGLE-984
> URL: https://issues.apache.org/jira/browse/EAGLE-984
> Project: Eagle
>  Issue Type: Bug
>Reporter: Ted Yu
>Priority: Minor
> Fix For: v0.5.1
>
>
> Here is related code:
> {code}
> public Tuple2 poll() {
> long oldestTimestamp = timeQueue.poll();
> Tuple2 pair = new Tuple2<>(oldestTimestamp, 
> counter.get(oldestTimestamp));
> {code}
> We should check the return value from timeQueue.poll() before casting to long.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Updated] (EAGLE-984) Potential null dereference in SimpleWindowCounter#poll()

2017-07-20 Thread Jayesh (JIRA)

 [ 
https://issues.apache.org/jira/browse/EAGLE-984?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jayesh updated EAGLE-984:
-
Fix Version/s: (was: v0.5.0)
   v0.5.1

> Potential null dereference in SimpleWindowCounter#poll()
> 
>
> Key: EAGLE-984
> URL: https://issues.apache.org/jira/browse/EAGLE-984
> Project: Eagle
>  Issue Type: Bug
>Reporter: Ted Yu
>Priority: Minor
> Fix For: v0.5.1
>
>
> Here is related code:
> {code}
> public Tuple2 poll() {
> long oldestTimestamp = timeQueue.poll();
> Tuple2 pair = new Tuple2<>(oldestTimestamp, 
> counter.get(oldestTimestamp));
> {code}
> We should check the return value from timeQueue.poll() before casting to long.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Updated] (EAGLE-984) Potential null dereference in SimpleWindowCounter#poll()

2017-04-17 Thread Jayesh (JIRA)

 [ 
https://issues.apache.org/jira/browse/EAGLE-984?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jayesh updated EAGLE-984:
-
Fix Version/s: v0.5.0

> Potential null dereference in SimpleWindowCounter#poll()
> 
>
> Key: EAGLE-984
> URL: https://issues.apache.org/jira/browse/EAGLE-984
> Project: Eagle
>  Issue Type: Bug
>Reporter: Ted Yu
>Priority: Minor
> Fix For: v0.5.0
>
>
> Here is related code:
> {code}
> public Tuple2 poll() {
> long oldestTimestamp = timeQueue.poll();
> Tuple2 pair = new Tuple2<>(oldestTimestamp, 
> counter.get(oldestTimestamp));
> {code}
> We should check the return value from timeQueue.poll() before casting to long.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)