You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@fluo.apache.org by ct...@apache.org on 2019/06/18 23:52:45 UTC

[fluo-muchos] branch master updated: add hadoop 3.2.0 and fix error message (#258)

This is an automated email from the ASF dual-hosted git repository.

ctubbsii pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/fluo-muchos.git


The following commit(s) were added to refs/heads/master by this push:
     new 3c7d95b  add hadoop 3.2.0 and fix error message (#258)
3c7d95b is described below

commit 3c7d95bed5effb651856d58f6a1a5d273bf756a7
Author: Keith Turner <kt...@apache.org>
AuthorDate: Tue Jun 18 19:52:41 2019 -0400

    add hadoop 3.2.0 and fix error message (#258)
---
 conf/checksums       | 1 +
 lib/muchos/config.py | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/conf/checksums b/conf/checksums
index 4f29abc..6154988 100644
--- a/conf/checksums
+++ b/conf/checksums
@@ -8,6 +8,7 @@ accumulo:1.7.4:3776dddbc2a09f4a9d7a2ae4958e212e91eb5067a124a628330edbee4e32e754
 accumulo:1.7.3:294f2f1f3fbc164b68e80cecd5a6ce5c245df804fb35ae5e03ab1c86bc9480da
 fluo:1.2.0:037f89cd2bfdaf76a1368256c52de46d6b9a85c9c1bfc776ec4447d02c813fb2
 fluo_yarn:1.0.0:c6220d35cf23127272f3b5638c44586504dc17a46f5beecdfee5027b5ff874b0
+hadoop:3.2.0:226b6cbdf769467250054b3abdf26df9f05fde44bbb82fe5d12d6993ea848f64
 hadoop:3.1.1:f837fe260587f71629aad1f4fb6719274e948111dc96ffc5a8e26f27deac5602
 hadoop:3.0.2:0d507aa71007b2685e292343c11c2cb90a92ea7625446b57d1fb47c5721e2f82
 hadoop:2.9.2:3d2023c46b1156c1b102461ad08cbc17c8cc53004eae95dab40a1f659839f28a
diff --git a/lib/muchos/config.py b/lib/muchos/config.py
index 8c44645..05a613a 100644
--- a/lib/muchos/config.py
+++ b/lib/muchos/config.py
@@ -182,7 +182,7 @@ class DeployConfig(ConfigParser):
 
         key = "{0}:{1}".format(software, version)
         if key not in self.checksums_d:
-            exit('ERROR - Failed to find checksums for {0} {1} in {2}' % (software, version, self.checksums_path))
+            exit('ERROR - Failed to find checksums for %s %s in %s' % (software, version, self.checksums_path))
         return self.checksums_d[key]
 
     def verify_instance_type(self, instance_type):