Skip to content

Commit

Permalink
add user_job to jobs list in orchestrator
Browse files Browse the repository at this point in the history
  • Loading branch information
threnjen committed Nov 27, 2024
1 parent 1357fd8 commit c269bea
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions aws_dagster_bgg/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
)

from .assets import assets
from .jobs import bgg_job
from .jobs import bgg_job, user_job
from .resources import (
ConfigResource,
DynamoDBResource,
Expand All @@ -20,8 +20,6 @@

scraper_assets = load_assets_from_modules([assets])

all_jobs = []

REGION = os.environ.get("TF_VAR_REGION", "us-west-2")

defs = Definitions(
Expand All @@ -39,5 +37,5 @@
region_name=REGION, bucket=os.environ.get("S3_SCRAPER_BUCKET")
),
},
jobs=[bgg_job],
jobs=[bgg_job, user_job],
)

0 comments on commit c269bea

Please sign in to comment.