Why is it that `build_asset_reconciliation_sensor`...
# dagster-feedback
j
Why is it that
build_asset_reconciliation_sensor
needs to be enabled interactively? Shouldn't that be automatic?
dagster bot responded by community 1
c
you can set default running state in the code to RUNNING 🙂
Copy code
reconcile_everything_sensor = build_asset_reconciliation_sensor(
    name="reconciliation_sensor",
    asset_selection=AssetSelection.all(),
    default_status=DefaultSensorStatus.RUNNING,
)
j
Perfect, thank you!