Repository: cassandra Updated Branches: refs/heads/trunk ae837806b -> 6f30902bf
ninja-remove Ignored test file, due to CASSANDRA-13530 Project: http://git-wip-us.apache.org/repos/asf/cassandra/repo Commit: http://git-wip-us.apache.org/repos/asf/cassandra/commit/6f30902b Tree: http://git-wip-us.apache.org/repos/asf/cassandra/tree/6f30902b Diff: http://git-wip-us.apache.org/repos/asf/cassandra/diff/6f30902b Branch: refs/heads/trunk Commit: 6f30902bff7fd063a0dacd08f5adb91ac9e3f084 Parents: ae83780 Author: Jason Brown <[email protected]> Authored: Mon Dec 4 16:41:39 2017 -0800 Committer: Jason Brown <[email protected]> Committed: Mon Dec 4 16:41:39 2017 -0800 ---------------------------------------------------------------------- .../db/commitlog/PeriodicCommitLogTest.java | 45 -------------------- 1 file changed, 45 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cassandra/blob/6f30902b/test/unit/org/apache/cassandra/db/commitlog/PeriodicCommitLogTest.java ---------------------------------------------------------------------- diff --git a/test/unit/org/apache/cassandra/db/commitlog/PeriodicCommitLogTest.java b/test/unit/org/apache/cassandra/db/commitlog/PeriodicCommitLogTest.java deleted file mode 100644 index 475412d..0000000 --- a/test/unit/org/apache/cassandra/db/commitlog/PeriodicCommitLogTest.java +++ /dev/null @@ -1,45 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you under the Apache License, Version 2.0 (the - * "License"); you may not use this file except in compliance - * with the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package org.apache.cassandra.db.commitlog; - -import org.junit.BeforeClass; -import org.junit.Ignore; - -import org.apache.cassandra.config.Config; -import org.apache.cassandra.config.DatabaseDescriptor; -import org.apache.cassandra.config.ParameterizedClass; -import org.apache.cassandra.security.EncryptionContext; - -@Ignore -public class PeriodicCommitLogTest extends CommitLogTest -{ - public PeriodicCommitLogTest(ParameterizedClass commitLogCompression, EncryptionContext encryptionContext) - { - super(commitLogCompression, encryptionContext); - } - - @BeforeClass - public static void setCommitLogModeDetails() - { - DatabaseDescriptor.daemonInitialization(); - DatabaseDescriptor.setCommitLogSync(Config.CommitLogSync.periodic); - DatabaseDescriptor.setCommitLogSyncPeriod(10 * 1000); - beforeClass(); - } -} --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
