Skip to content

Commit

Permalink
fix: remove end_date parameter (#2315)
Browse files Browse the repository at this point in the history
Co-authored-by: Carl Cervone <[email protected]>
  • Loading branch information
Jabolol and ccerv1 authored Oct 5, 2024
1 parent 6f5781d commit 246a75e
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion warehouse/oso_dagster/assets/eas_optimism.py
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,6 @@ def get_optimism_eas(context: AssetExecutionContext, client: Client):
key_prefix="ethereum_attestation_service_optimism",
partitions_def=WeeklyPartitionsDefinition(
start_date=EAS_OPTIMISM_FIRST_ATTESTATION.isoformat().split("T", maxsplit=1)[0],
end_date=(datetime.now()).isoformat().split("T", maxsplit=1)[0],
),
op_tags={
"dagster-k8s/config": K8S_CONFIG,
Expand Down
2 changes: 0 additions & 2 deletions warehouse/oso_dagster/assets/open_collective.py
Original file line number Diff line number Diff line change
Expand Up @@ -592,7 +592,6 @@ def base_open_collective_client(personal_token: str):
key_prefix="open_collective",
partitions_def=WeeklyPartitionsDefinition(
start_date=OPEN_COLLECTIVE_TX_EPOCH.split("T", maxsplit=1)[0],
end_date=(datetime.now()).isoformat().split("T")[0],
),
op_tags={
"dagster-k8s/config": K8S_CONFIG,
Expand Down Expand Up @@ -637,7 +636,6 @@ def expenses(
key_prefix="open_collective",
partitions_def=WeeklyPartitionsDefinition(
start_date=OPEN_COLLECTIVE_TX_EPOCH.split("T", maxsplit=1)[0],
end_date=(datetime.now()).isoformat().split("T")[0],
),
op_tags={
"dagster-k8s/config": K8S_CONFIG,
Expand Down

0 comments on commit 246a75e

Please sign in to comment.