Skip to content

Commit

Permalink
fix: bugs causing failures (#676)
Browse files Browse the repository at this point in the history
  • Loading branch information
pnadolny13 authored Aug 9, 2023
1 parent e98bc42 commit 13d4393
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
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

0 comments on commit 13d4393

Please sign in to comment.