You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@storm.apache.org by zh...@apache.org on 2016/01/28 18:49:56 UTC

[20/23] storm git commit: Add import for Utils

Add import for Utils


Project: http://git-wip-us.apache.org/repos/asf/storm/repo
Commit: http://git-wip-us.apache.org/repos/asf/storm/commit/0e40dbd0
Tree: http://git-wip-us.apache.org/repos/asf/storm/tree/0e40dbd0
Diff: http://git-wip-us.apache.org/repos/asf/storm/diff/0e40dbd0

Branch: refs/heads/master
Commit: 0e40dbd0b1ce88d879636150f7a7a19effd2ec0a
Parents: df51368
Author: zhuol <zh...@yahoo-inc.com>
Authored: Thu Jan 21 13:21:38 2016 -0600
Committer: zhuol <zh...@yahoo-inc.com>
Committed: Thu Jan 21 13:21:38 2016 -0600

----------------------------------------------------------------------
 .../test/clj/org/apache/storm/security/auth/ThriftClient_test.clj  | 1 +
 .../test/clj/org/apache/storm/security/auth/ThriftServer_test.clj  | 1 +
 .../org/apache/storm/serialization/SerializationFactory_test.clj   | 2 +-
 storm-core/test/clj/org/apache/storm/serialization_test.clj        | 1 +
 storm-core/test/clj/org/apache/storm/transactional_test.clj        | 2 +-
 5 files changed, 5 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/storm/blob/0e40dbd0/storm-core/test/clj/org/apache/storm/security/auth/ThriftClient_test.clj
----------------------------------------------------------------------
diff --git a/storm-core/test/clj/org/apache/storm/security/auth/ThriftClient_test.clj b/storm-core/test/clj/org/apache/storm/security/auth/ThriftClient_test.clj
index 049234c..48e8421 100644
--- a/storm-core/test/clj/org/apache/storm/security/auth/ThriftClient_test.clj
+++ b/storm-core/test/clj/org/apache/storm/security/auth/ThriftClient_test.clj
@@ -19,6 +19,7 @@
   (:require [org.apache.storm.security.auth [auth-test :refer [nimbus-timeout]]])
   (:import [org.apache.storm.security.auth ThriftClient ThriftConnectionType])
   (:import [org.apache.thrift.transport TTransportException])
+  (:import [org.apache.storm.utils Utils])
 )
 
 (deftest test-ctor-throws-if-port-invalid

http://git-wip-us.apache.org/repos/asf/storm/blob/0e40dbd0/storm-core/test/clj/org/apache/storm/security/auth/ThriftServer_test.clj
----------------------------------------------------------------------
diff --git a/storm-core/test/clj/org/apache/storm/security/auth/ThriftServer_test.clj b/storm-core/test/clj/org/apache/storm/security/auth/ThriftServer_test.clj
index 5718546..e5ad7e8 100644
--- a/storm-core/test/clj/org/apache/storm/security/auth/ThriftServer_test.clj
+++ b/storm-core/test/clj/org/apache/storm/security/auth/ThriftServer_test.clj
@@ -18,6 +18,7 @@
   (:use [clojure test])
   (:import [org.apache.storm.security.auth ThriftServer ThriftConnectionType])
   (:import [org.apache.thrift.transport TTransportException])
+  (:import [org.apache.storm.utils Utils])
 )
 
 (deftest test-stop-checks-for-null

http://git-wip-us.apache.org/repos/asf/storm/blob/0e40dbd0/storm-core/test/clj/org/apache/storm/serialization/SerializationFactory_test.clj
----------------------------------------------------------------------
diff --git a/storm-core/test/clj/org/apache/storm/serialization/SerializationFactory_test.clj b/storm-core/test/clj/org/apache/storm/serialization/SerializationFactory_test.clj
index 88efddb..64c24ef 100644
--- a/storm-core/test/clj/org/apache/storm/serialization/SerializationFactory_test.clj
+++ b/storm-core/test/clj/org/apache/storm/serialization/SerializationFactory_test.clj
@@ -17,7 +17,7 @@
   (:import [org.apache.storm Config])
   (:import [org.apache.storm.security.serialization BlowfishTupleSerializer])
   (:import [org.apache.storm.serialization SerializationFactory])
-  (:import [org.apache.storm.utils ListDelegate])
+  (:import [org.apache.storm.utils ListDelegate Utils])
   (:use [org.apache.storm util config])
   (:use [clojure test])
 )

http://git-wip-us.apache.org/repos/asf/storm/blob/0e40dbd0/storm-core/test/clj/org/apache/storm/serialization_test.clj
----------------------------------------------------------------------
diff --git a/storm-core/test/clj/org/apache/storm/serialization_test.clj b/storm-core/test/clj/org/apache/storm/serialization_test.clj
index e223ead..f8692d9 100644
--- a/storm-core/test/clj/org/apache/storm/serialization_test.clj
+++ b/storm-core/test/clj/org/apache/storm/serialization_test.clj
@@ -19,6 +19,7 @@
             KryoValuesSerializer KryoValuesDeserializer])
   (:import [org.apache.storm.testing TestSerObject TestKryoDecorator])
   (:import [org.apache.storm.validation ConfigValidation$KryoRegValidator])
+  (:import [org.apache.storm.utils Utils])
   (:use [org.apache.storm util config]))
 
 (defn mk-conf [extra]

http://git-wip-us.apache.org/repos/asf/storm/blob/0e40dbd0/storm-core/test/clj/org/apache/storm/transactional_test.clj
----------------------------------------------------------------------
diff --git a/storm-core/test/clj/org/apache/storm/transactional_test.clj b/storm-core/test/clj/org/apache/storm/transactional_test.clj
index 94030df..255128b 100644
--- a/storm-core/test/clj/org/apache/storm/transactional_test.clj
+++ b/storm-core/test/clj/org/apache/storm/transactional_test.clj
@@ -29,7 +29,7 @@
   (:import [org.apache.storm.testing CountingBatchBolt MemoryTransactionalSpout
             KeyedCountingBatchBolt KeyedCountingCommitterBolt KeyedSummingBatchBolt
             IdentityBolt CountingCommitBolt OpaqueMemoryTransactionalSpout])
-  (:import [org.apache.storm.utils ZookeeperAuthInfo])
+  (:import [org.apache.storm.utils ZookeeperAuthInfo Utils])
   (:import [org.apache.curator.framework CuratorFramework])
   (:import [org.apache.curator.framework.api CreateBuilder ProtectACLCreateModePathAndBytesable])
   (:import [org.apache.zookeeper CreateMode ZooDefs ZooDefs$Ids])