Hello, how can I access backtest run id and tags f...
# ask-community
m
Hello, how can I access backtest run id and tags from within the OpExecutionContext?
dagster bot responded by community 1
z
Hi, you could do the following:
backfill_id = context.get_tag("dagster/backfill")
Where context is passed into the op function as:
context: OpExecutionContext