Skip to content

Commit

Permalink
make the service start, fix regression
Browse files Browse the repository at this point in the history
  • Loading branch information
SoundGoof committed Sep 27, 2018
1 parent ca0cea7 commit 837bf7f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion fboss/agent/hw/bcm/oss/BcmControlPlane.cpp
Expand Up @@ -8,11 +8,12 @@
*
*/
#include "fboss/agent/hw/bcm/BcmControlPlane.h"
#include "fboss/agent/hw/bcm/BcmPortQueueManager.h"

namespace facebook { namespace fboss {

BcmControlPlane::BcmControlPlane(BcmSwitch* hw)
: hw_(hw), gport_(0), queue_manager_(hw, "", 0) {}
: hw_(hw), gport_(0), queueManager_(std::make_unique<BcmPortQueueManager>(hw, "", 0)) {}

void BcmControlPlane::setupQueue(const std::shared_ptr<PortQueue>& /*queue*/) {}

Expand Down

0 comments on commit 837bf7f

Please sign in to comment.