This is an automated email from the ASF dual-hosted git repository.
ctubbsii pushed a commit to branch 1.8
in repository https://gitbox.apache.org/repos/asf/accumulo.git
The following commit(s) were added to refs/heads/1.8 by this push:
new eb8ea99 ACCUMULO-4639 Relocate NullTserver test class
eb8ea99 is described below
commit eb8ea99f5e37cdcf7e7c9a823ac3a7f8ac05c596
Author: Christopher Tubbs <ctubbsii@apache.org>
AuthorDate: Thu Feb 22 19:16:30 2018 -0500
ACCUMULO-4639 Relocate NullTserver test class
* Relocate NullTserver test class outside of a directory named "thrift"
so that it won't match our build tool excludes targeting thrift
generated files, such as being excluded from formatting during the
build.
---
.../main/java/org/apache/accumulo/test/functional/ZombieTServer.java | 2 +-
.../org/apache/accumulo/test/performance/{thrift => }/NullTserver.java | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/test/src/main/java/org/apache/accumulo/test/functional/ZombieTServer.java b/test/src/main/java/org/apache/accumulo/test/functional/ZombieTServer.java
index bc34b67..65400b8 100644
--- a/test/src/main/java/org/apache/accumulo/test/functional/ZombieTServer.java
+++ b/test/src/main/java/org/apache/accumulo/test/functional/ZombieTServer.java
@@ -56,7 +56,7 @@ import org.slf4j.LoggerFactory;
*/
public class ZombieTServer {
- public static class ThriftClientHandler extends org.apache.accumulo.test.performance.thrift.NullTserver.ThriftClientHandler
{
+ public static class ThriftClientHandler extends org.apache.accumulo.test.performance.NullTserver.ThriftClientHandler
{
int statusCount = 0;
diff --git a/test/src/main/java/org/apache/accumulo/test/performance/thrift/NullTserver.java
b/test/src/main/java/org/apache/accumulo/test/performance/NullTserver.java
similarity index 99%
rename from test/src/main/java/org/apache/accumulo/test/performance/thrift/NullTserver.java
rename to test/src/main/java/org/apache/accumulo/test/performance/NullTserver.java
index c9da60b..c2b6a27 100644
--- a/test/src/main/java/org/apache/accumulo/test/performance/thrift/NullTserver.java
+++ b/test/src/main/java/org/apache/accumulo/test/performance/NullTserver.java
@@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-package org.apache.accumulo.test.performance.thrift;
+package org.apache.accumulo.test.performance;
import static org.apache.accumulo.fate.util.UtilWaitThread.sleepUninterruptibly;
--
To stop receiving notification emails like this one, please contact
ctubbsii@apache.org.
|