fast-nail-55400
07/07/2022, 1:16 AME ValueError: Encountered 3 rule graph errors:
E No installed rules return the type WrappedTargetRequest, and it was not provided by potential callers of @rule(pants.engine.internals.graph:327:resolve_target(WrappedTargetRequest, TargetTypesToGenerateTargetsRequests) -> WrappedTarget, gets=[Get(_TargetParametrizations, _TargetParametrizationsRequest)]).
E If that type should be computed by a rule, ensure that that rule is installed.
E If it should be provided by a caller, ensure that it is included in any relevant Query or Get.
E No source of dependency Get(_TargetParametrizations, _TargetParametrizationsRequest) for @rule(pants.engine.internals.graph:327:resolve_target(WrappedTargetRequest, TargetTypesToGenerateTargetsRequests) -> WrappedTarget, gets=[Get(_TargetParametrizations, _TargetParametrizationsRequest)]). All potential sources were eliminated: []
E No source of dependency TargetTypesToGenerateTargetsRequests for @rule(pants.engine.internals.graph:327:resolve_target(WrappedTargetRequest, TargetTypesToGenerateTargetsRequests) -> WrappedTarget, gets=[Get(_TargetParametrizations, _TargetParametrizationsRequest)]). All potential sources were eliminated: []
any ideas on what rule need to be put into RuleRunner to satisfy this rule graph error? pants.engine.internals.graph
is already listed.careful-address-89803
07/07/2022, 1:39 AMfast-nail-55400
07/07/2022, 1:40 AMfast-nail-55400
07/07/2022, 1:40 AMQueryRule(_TargetParametrizations, (_TargetParametrizationsRequest,)),
— no change in errorcareful-address-89803
07/07/2022, 1:45 AMQueryRule(???, (WrappedTargetRequest,))
?curved-television-6568
07/07/2022, 5:08 AMfast-nail-55400
07/07/2022, 2:47 PMwrapped_target = await Get(WrappedTarget, Address, addr)
became wrapped_target = await Get(WrappedTarget, WrappedTargetRequest(addr, description_of_origin="…"))
fast-nail-55400
07/07/2022, 2:48 PM