Repository: incubator-reef Updated Branches: refs/heads/master 92e50d8f7 -> 160801004
[REEF-804] Garbage collection setting is not passed to update task This passes the garbage collection named parameter to the `UpdateTaskHost` in the driver. JIRA: [REEF-804](https://issues.apache.org/jira/browse/REEF-804) Pull Request: This closes #537 Project: http://git-wip-us.apache.org/repos/asf/incubator-reef/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-reef/commit/16080100 Tree: http://git-wip-us.apache.org/repos/asf/incubator-reef/tree/16080100 Diff: http://git-wip-us.apache.org/repos/asf/incubator-reef/diff/16080100 Branch: refs/heads/master Commit: 1608010049dc9de0c24cbdc70fb35ebd2371708e Parents: 92e50d8 Author: Dhruv <[email protected]> Authored: Sat Oct 3 11:22:48 2015 -0700 Committer: Markus Weimer <[email protected]> Committed: Mon Oct 5 14:15:36 2015 -0700 ---------------------------------------------------------------------- lang/cs/Org.Apache.REEF.IMRU/OnREEF/Driver/IMRUDriver.cs | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-reef/blob/16080100/lang/cs/Org.Apache.REEF.IMRU/OnREEF/Driver/IMRUDriver.cs ---------------------------------------------------------------------- diff --git a/lang/cs/Org.Apache.REEF.IMRU/OnREEF/Driver/IMRUDriver.cs b/lang/cs/Org.Apache.REEF.IMRU/OnREEF/Driver/IMRUDriver.cs index 719533b..93c42f2 100644 --- a/lang/cs/Org.Apache.REEF.IMRU/OnREEF/Driver/IMRUDriver.cs +++ b/lang/cs/Org.Apache.REEF.IMRU/OnREEF/Driver/IMRUDriver.cs @@ -166,6 +166,7 @@ namespace Org.Apache.REEF.IMRU.OnREEF.Driver .Build(), _configurationManager.UpdateFunctionConfiguration }) + .BindNamedParameter(typeof (InvokeGC), _invokeGC.ToString()) .Build(); _commGroup.AddTask(IMRUConstants.UpdateTaskName);
