From 8e28930d12b1a94a2c62b827b1ba43b5d31bb013 Mon Sep 17 00:00:00 2001 From: Alex Miller Date: Tue, 25 Jun 2019 10:36:32 -0700 Subject: [PATCH] Fix another hardcoded priority. --- fdbclient/VersionedMap.actor.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fdbclient/VersionedMap.actor.h b/fdbclient/VersionedMap.actor.h index 953c2f4c1f..53ba85097f 100644 --- a/fdbclient/VersionedMap.actor.h +++ b/fdbclient/VersionedMap.actor.h @@ -31,7 +31,7 @@ #include "flow/actorcompiler.h" // This must be the last #include. ACTOR template -Future deferredCleanupActor( std::vector toFree, TaskPriority taskID = 7000 ) { +Future deferredCleanupActor( std::vector toFree, TaskPriority taskID = TaskPriority::DefaultYield ) { state int freeCount = 0; while (!toFree.empty()) { Tree a = std::move( toFree.back() );