embulk-input-hdfs 0.3.1 → 0.3.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: dec45a739bc54382320f93f718a09a911d37478f
4
- data.tar.gz: f88d8b5d97449fdbcbac99c5530c4b6c0a61002a
3
+ metadata.gz: 7ef2cb53b3352612e1c28ea574901cbbb1fed32f
4
+ data.tar.gz: ee29de409507e83a296d3684b8c800ce41c60d99
5
5
  SHA512:
6
- metadata.gz: b5df4306d090727f2517a43b2ff61493f9d8547abf522a73077b9794a162be880207325099ff554501236c8a70bef419dde8fd76ee956a72f91b48c3a8071359
7
- data.tar.gz: 5d2ebf8bd252a39b2a98e5dc5e4f6f0e34e9f70492d85d7deba17b24a062e0ab708de5e551e740f213224e675ac7759f1bf2fffbf74b52c713c235a657b530e1
6
+ metadata.gz: f2a3c60b568ffdf96c38de01e5e6493e9948a8883208e1e4f846922b4c8c097bdcda16c7f342a44f596b3c280d99e070b1d670d54a1ca6119571de5a2d9cacd1
7
+ data.tar.gz: d73293a481181ba56112ef9ae6c4e332a64914d8bf1699dcfb3f764cd2dcf956a82b36eddd606f4e4d135da9ffae3538fd8bc6e04cc398d2c1898f86c479dc6a
data/CHENGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ 0.3.2 (2016-09-22)
2
+ ==================
3
+ - [Change] Change log level for Configuration
4
+ - https://github.com/civitaspo/embulk-input-hdfs/pull/33
5
+
1
6
  0.3.1 (2016-09-22)
2
7
  ==================
3
8
  - [Fix] Trim Double-byte space
data/build.gradle CHANGED
@@ -15,7 +15,7 @@ configurations {
15
15
  provided
16
16
  }
17
17
 
18
- version = "0.3.1"
18
+ version = "0.3.2"
19
19
 
20
20
  sourceCompatibility = 1.7
21
21
  targetCompatibility = 1.7
@@ -36,7 +36,7 @@ public class ConfigurationFactory
36
36
  Configuration c = new Configuration();
37
37
  for (String f : task.getConfigFiles()) {
38
38
  try {
39
- logger.debug("embulk-input-hdfs: load a config file: {}", f);
39
+ logger.trace("embulk-input-hdfs: load a config file: {}", f);
40
40
  c.addResource(new File(f).toURI().toURL());
41
41
  }
42
42
  catch (MalformedURLException e) {
@@ -45,15 +45,15 @@ public class ConfigurationFactory
45
45
  }
46
46
 
47
47
  for (Map.Entry<String, String> entry : task.getConfig().entrySet()) {
48
- logger.debug("embulk-input-hdfs: load a config: {}:{}", entry.getKey(), entry.getValue());
48
+ logger.trace("embulk-input-hdfs: load a config: {}:{}", entry.getKey(), entry.getValue());
49
49
  c.set(entry.getKey(), entry.getValue());
50
50
  }
51
51
 
52
52
  // For logging
53
53
  for (Map.Entry<String, String> entry : c) {
54
- logger.trace("embulk-input-hdfs: {}: {}", entry.getKey(), entry.getValue());
54
+ logger.trace("embulk-input-hdfs: loaded: {}: {}", entry.getKey(), entry.getValue());
55
55
  }
56
- logger.trace("embulk-input-hdfs: Resource Files: {}", c);
56
+ logger.trace("embulk-input-hdfs: loaded files: {}", c);
57
57
 
58
58
  return c;
59
59
  }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: embulk-input-hdfs
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.1
4
+ version: 0.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Civitaspo
@@ -95,7 +95,7 @@ files:
95
95
  - classpath/curator-client-2.6.0.jar
96
96
  - classpath/curator-framework-2.6.0.jar
97
97
  - classpath/curator-recipes-2.6.0.jar
98
- - classpath/embulk-input-hdfs-0.3.1.jar
98
+ - classpath/embulk-input-hdfs-0.3.2.jar
99
99
  - classpath/gson-2.2.4.jar
100
100
  - classpath/hadoop-annotations-2.6.4.jar
101
101
  - classpath/hadoop-auth-2.6.4.jar