Skip to content

Commit

Permalink
CompressionFilterFactory
Browse files Browse the repository at this point in the history
Summary: removes const modifier from `FilterParams::compressibleContentTypes` to allow copy via assignment operator

Reviewed By: afrind

Differential Revision: D49109290

fbshipit-source-id: c07eb834b8f0c3dbc8a0bc94130991dad1f0feb1
  • Loading branch information
hanidamlaj authored and facebook-github-bot committed Sep 14, 2023
1 parent ee61533 commit dba965a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion proxygen/lib/utils/CompressionFilterUtils.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class CompressionFilterUtils {
uint32_t minimumCompressionSize;
StreamCompressorFactory compressorFactory;
std::string headerEncoding;
const std::set<std::string> compressibleContentTypes;
std::set<std::string> compressibleContentTypes;
};

static folly::Optional<FilterParams> getFilterParams(
Expand Down

0 comments on commit dba965a

Please sign in to comment.