Skip to content
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion source/extensions/retry/priority/other_priority/config.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#pragma once

#include "envoy/config/retry/other_priority/other_priority_config.pb.validate.h"
#include "envoy/upstream/retry.h"

#include "common/protobuf/protobuf.h"
Expand All @@ -22,7 +23,8 @@ class OtherPriorityRetryPriorityFactory : public Upstream::RetryPriorityFactory
}

ProtobufTypes::MessagePtr createEmptyConfigProto() override {
return ProtobufTypes::MessagePtr(new ::Envoy::ProtobufWkt::Empty());
return ProtobufTypes::MessagePtr(
new envoy::config::retry::other_priority::OtherPriorityConfig());
}
};

Expand Down