summaryrefslogtreecommitdiffstats
path: root/src/test/osd/TestMClockScheduler.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/osd/TestMClockScheduler.cc')
-rw-r--r--src/test/osd/TestMClockScheduler.cc5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/test/osd/TestMClockScheduler.cc b/src/test/osd/TestMClockScheduler.cc
index 8291da268..205ef2f98 100644
--- a/src/test/osd/TestMClockScheduler.cc
+++ b/src/test/osd/TestMClockScheduler.cc
@@ -31,6 +31,7 @@ public:
uint32_t num_shards;
int shard_id;
bool is_rotational;
+ unsigned cutoff_priority;
MonClient *monc;
mClockScheduler q;
@@ -43,8 +44,10 @@ public:
num_shards(1),
shard_id(0),
is_rotational(false),
+ cutoff_priority(12),
monc(nullptr),
- q(g_ceph_context, whoami, num_shards, shard_id, is_rotational, monc),
+ q(g_ceph_context, whoami, num_shards, shard_id, is_rotational,
+ cutoff_priority, monc),
client1(1001),
client2(9999),
client3(100000001)