Skip to content

Commit

Permalink
utests_system_keyspace_directory - more than 500 tests failing on trunk
Browse files Browse the repository at this point in the history
patch by Berenguer Blasi; reviewed by Sam Tunnicliffe for CASSANDRA-17137
  • Loading branch information
bereng committed Nov 19, 2021
1 parent 10c6852 commit 8d3fd3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/java/org/apache/cassandra/db/ColumnFamilyStore.java
Original file line number Diff line number Diff line change
Expand Up @@ -2941,7 +2941,7 @@ public PerDiskFlushExecutors(int flushWriters,
private static ExecutorPlus[] createPerDiskFlushWriters(int numberOfExecutors, int flushWriters)
{
ExecutorPlus[] flushExecutors = new ExecutorPlus[numberOfExecutors];
for (int i = 0; i < DatabaseDescriptor.getAllDataFileLocations().length; i++)
for (int i = 0; i < numberOfExecutors; i++)
{
flushExecutors[i] = newThreadPool("PerDiskMemtableFlushWriter_"+i, flushWriters);
}
Expand Down

0 comments on commit 8d3fd3a

Please sign in to comment.