Hey hello everyone. I’ve changed my jobs selectio...
# ask-community
j
Hey hello everyone. I’ve changed my jobs selection method from
Copy code
third_party_rewards_agoric_claims_job = define_asset_job(
    "third_party_rewards_agoric_claims_job",
    selection=AssetSelection.assets(
        raw_agoric_explorers_guru_claims, agoric_explorers_guru_claims
    ),
    partitions_def=agoric_claims_partitions_def,
)
to
Copy code
third_party_rewards_agoric_claims_job = define_asset_job(
    "third_party_rewards_agoric_claims_job",
    selection="third_party_rewards/raw_agoric_explorers_guru_claims*",
)
And this cause all my schedules status to always be in the
STOPPED
status even if I configure it to be
RUNNING
. Is this a known issue?