Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: bugs causing failures #676

Merged
merged 1 commit into from
Aug 9, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions data/extract/extractors.meltano.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ plugins:
start_date: '2020-01-01T00:00:00Z'
key_properties: [id]
name: azure_ips
pattern: ServiceTags_Public_20230724.json
pattern: ServiceTags_Public_20230807.json
json_path: values
- name: tap-slack
variant: meltanolabs
Expand Down Expand Up @@ -191,7 +191,7 @@ plugins:
# - issue_comments.*
- name: tap-snowflake
variant: meltanolabs
pip_url: git+https://github.com/MeltanoLabs/[email protected].22
pip_url: git+https://github.com/MeltanoLabs/[email protected].23
config:
account: epa06486
password: ${SNOWFLAKE_PASSWORD}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ WHERE
{% if is_incremental() %}

AND event_unstruct.event_created_at >= (
SELECT DATEADD(days, -1, MAX(event_created_at)) FROM {{ this }}
SELECT DATEADD(days, -2, MAX(event_created_at)) FROM {{ this }}
)
AND event_unstruct.event_id NOT IN (SELECT event_id FROM {{ this }})

Expand Down