Repository: incubator-reef
Updated Branches:
  refs/heads/master 7f2d6ff74 -> 8a3213ba6


[REEF-787] IMRUDriver is not setting TMapOutput Pipeline converter in right 
fashion
This addressed the issue by
* Correcting the typo. MapOutputPipelineDataConverter is now injected instead 
of MapInputPipelineDataConverter in try except statement in driver.
JIRA:
[REEF-787](https://issues.apache.org/jira/browse/REEF-787)

This closes #526


Project: http://git-wip-us.apache.org/repos/asf/incubator-reef/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-reef/commit/8a3213ba
Tree: http://git-wip-us.apache.org/repos/asf/incubator-reef/tree/8a3213ba
Diff: http://git-wip-us.apache.org/repos/asf/incubator-reef/diff/8a3213ba

Branch: refs/heads/master
Commit: 8a3213ba6a189544bcbae0368895e530f1c25ba3
Parents: 7f2d6ff
Author: Dhruv <[email protected]>
Authored: Fri Sep 25 21:28:34 2015 -0700
Committer: Julia Wang <[email protected]>
Committed: Sat Sep 26 23:05:18 2015 -0700

----------------------------------------------------------------------
 lang/cs/Org.Apache.REEF.IMRU/OnREEF/Driver/IMRUDriver.cs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-reef/blob/8a3213ba/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 958364a..5d55878 100644
--- a/lang/cs/Org.Apache.REEF.IMRU/OnREEF/Driver/IMRUDriver.cs
+++ b/lang/cs/Org.Apache.REEF.IMRU/OnREEF/Driver/IMRUDriver.cs
@@ -311,7 +311,7 @@ namespace Org.Apache.REEF.IMRU.OnREEF.Driver
             try
             {
                 TangFactory.GetTang()
-                    .NewInjector(mapInputPipelineDataConverterConfig)
+                    .NewInjector(mapOutputPipelineDataConverterConfig)
                     .GetInstance<IPipelineDataConverter<TMapOutput>>();
             }
             catch (Exception)

Reply via email to