Skip to content

Remove LFI remote config product #3028

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all 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
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,7 @@ class engine_listener : public listener_base {

[[nodiscard]] std::unordered_set<product> get_supported_products() override
{
return {known_products::ASM, known_products::ASM_DD,
known_products::ASM_DATA, known_products::ASM_RASP_LFI};
return {known_products::ASM, known_products::ASM_DD, known_products::ASM_DATA};
}

protected:
Expand Down
5 changes: 0 additions & 5 deletions appsec/src/helper/remote_config/product.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,6 @@ struct known_products {
static inline constexpr product ASM_DATA{std::string_view{"ASM_DATA"}};
static inline constexpr product ASM_FEATURES{
std::string_view{"ASM_FEATURES"}};
static inline constexpr product ASM_RASP_LFI{
std::string_view{"ASM_RASP_LFI"}};
static inline constexpr product UNKNOWN{std::string_view{"UNKOWN"}};

static product for_name(std::string_view name)
Expand All @@ -47,9 +45,6 @@ struct known_products {
if (name == ASM_FEATURES.name()) {
return ASM_FEATURES;
}
if (name == ASM_RASP_LFI.name()) {
return ASM_RASP_LFI;
}

return UNKNOWN;
}
Expand Down
Loading