Skip to content

Commit

Permalink
removed odd end date
Browse files Browse the repository at this point in the history
  • Loading branch information
midavadim committed May 9, 2024
1 parent 91c52b3 commit a60dba2
Showing 1 changed file with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -187,10 +187,6 @@ definitions:
type: MinMaxDatetime
datetime: "{{ config.start_date or day_delta(-365, format='%Y-%m-%dT%H:%M:%SZ') }}"
datetime_format: "%Y-%m-%dT%H:%M:%SZ"
end_datetime:
type: MinMaxDatetime
datetime: '{{ config.end_date or day_delta(-1, format="%Y-%m-%dT%H:%M:%SZ") }}'
datetime_format: "%Y-%m-%dT%H:%M:%SZ"
transformations:
- class_name: "source_mixpanel.components.EngageTransformation"
- type: AddFields
Expand Down Expand Up @@ -241,7 +237,7 @@ definitions:
fields:
- path:
- browser_version
value: "{{ record.browser_version | string }}"
value: "{{ record.browser_version | string if record.browser_version else '' }}"

# No API docs! build based on singer source
revenue_stream:
Expand Down

0 comments on commit a60dba2

Please sign in to comment.