From 180240d40445e0d02aaf5e23a6bc54da33b94596 Mon Sep 17 00:00:00 2001 From: jihaix Date: Fri, 9 Aug 2019 15:14:49 +0800 Subject: [PATCH] fix error that vs test of pull request #957 did not passed --- orchagent/orch.h | 1 + 1 file changed, 1 insertion(+) diff --git a/orchagent/orch.h b/orchagent/orch.h index f89f936ec6..949ff4b0bb 100644 --- a/orchagent/orch.h +++ b/orchagent/orch.h @@ -82,6 +82,7 @@ class Executor : public Selectable // Decorating Selectable int getFd() override { return m_selectable->getFd(); } + int getPri() const override { return m_selectable->getPri(); } void readData() override { m_selectable->readData(); } bool hasCachedData() override { return m_selectable->hasCachedData(); } bool initializedWithData() override { return m_selectable->initializedWithData(); }