Skip to content

Commit

Permalink
Remove LFI remote config product
Browse files Browse the repository at this point in the history
  • Loading branch information
estringana committed Jan 9, 2025
1 parent 9607a5f commit 219b63e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
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

0 comments on commit 219b63e

Please sign in to comment.