You are viewing a plain text version of this content. The canonical link for it is here.
Posted to tashi-commits@incubator.apache.org by mr...@apache.org on 2009/05/25 19:31:35 UTC

svn commit: r778477 - /incubator/tashi/trunk/src/tashi/clustermanager/clustermanager.py

Author: mryan3
Date: Mon May 25 19:31:35 2009
New Revision: 778477

URL: http://svn.apache.org/viewvc?rev=778477&view=rev
Log:
Typo fix


Modified:
    incubator/tashi/trunk/src/tashi/clustermanager/clustermanager.py

Modified: incubator/tashi/trunk/src/tashi/clustermanager/clustermanager.py
URL: http://svn.apache.org/viewvc/incubator/tashi/trunk/src/tashi/clustermanager/clustermanager.py?rev=778477&r1=778476&r2=778477&view=diff
==============================================================================
--- incubator/tashi/trunk/src/tashi/clustermanager/clustermanager.py (original)
+++ incubator/tashi/trunk/src/tashi/clustermanager/clustermanager.py Mon May 25 19:31:35 2009
@@ -41,7 +41,7 @@
 	messageHandler = TashiLogHandler(config)
 	log.addHandler(messageHandler)
 
-	dfs = instantiateImplementation(config.get("ClusterManager", "Dfs"), config)
+	dfs = instantiateImplementation(config.get("ClusterManager", "dfs"), config)
 	data = instantiateImplementation(config.get("ClusterManager", "data"), config)
 	service = instantiateImplementation(config.get("ClusterManager", "service"), config, data, dfs)
 	processor = clustermanagerservice.Processor(service)