| 547 | } |
| 548 | |
| 549 | ACTOR static Future<Void> getCommittedVersion(ConfigNodeImpl* self, ConfigFollowerGetCommittedVersionRequest req) { |
| 550 | state Version lastCompacted = wait(getLastCompactedVersion(self)); |
| 551 | ConfigGeneration generation = wait(getGeneration(self)); |
| 552 | req.reply.send(ConfigFollowerGetCommittedVersionReply{ lastCompacted, generation.committedVersion }); |
| 553 | return Void(); |
| 554 | } |
| 555 | |
| 556 | ACTOR static Future<Void> serve(ConfigNodeImpl* self, ConfigFollowerInterface const* cfi) { |
| 557 | loop { |
nothing calls this directly
no test coverage detected