Skip to content

Commit

Permalink
Fix leaked keys issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
tomkraljevic committed May 13, 2014
1 parent 0132608 commit 7efcc4c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ public void frame_001() {
Log.info("frame : " + fr);
//logThisH2OInstanceWebBrowserAddress();
//sleepForever();

Frame.delete(okey);
}
public static class FillNasWithMean extends MRTask2<FillNasWithMean>{
final double _meanX;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@ public void frame_001() {

//logThisH2OInstanceWebBrowserAddress();
//sleepForever();
}
Frame.delete(okey);
}
public static class FillNasWithMean extends MRTask2<FillNasWithMean> {
final double[] _meanX;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,10 @@ public void frame_001() {
Log.info(" new output frame : " + outputFrame);
//logThisH2OInstanceWebBrowserAddress();
//sleepForever();

}

Frame.delete(okey);
outputFrame.delete();
}
public static class FillNasWithMean extends MRTask2<FillNasWithMean> {
final double[] _meanX;

Expand Down

0 comments on commit 7efcc4c

Please sign in to comment.