mirror of
https://github.com/valitydev/exporter-limits.git
synced 2024-11-06 00:25:22 +00:00
fix token in LimitConfigRepository
This commit is contained in:
parent
0561fec188
commit
70bdc24440
@ -16,7 +16,7 @@ public interface LimitConfigRepository extends JpaRepository<LimitConfigEntity,
|
|||||||
@Query(value = "select lc " +
|
@Query(value = "select lc " +
|
||||||
"from LimitConfigEntity as lc " +
|
"from LimitConfigEntity as lc " +
|
||||||
"where lc.limit_config_id in :limitConfigIds " +
|
"where lc.limit_config_id in :limitConfigIds " +
|
||||||
"and lc.time_range_type = :time_range_type" +
|
"and lc.time_range_type = :time_range_type " +
|
||||||
"and lc.current = true")
|
"and lc.current = true")
|
||||||
List<LimitConfigEntity> findAllUsingLimitConfigIdsAndTimeRangType(@Param("limitConfigIds") List<String> limitConfigIds, @Param("time_range_type") String timeRangType);
|
List<LimitConfigEntity> findAllUsingLimitConfigIdsAndTimeRangType(@Param("limitConfigIds") List<String> limitConfigIds, @Param("time_range_type") String timeRangType);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user