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

Chore: remove unused code #1660

Merged
merged 2 commits into from
Nov 6, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
12 changes: 0 additions & 12 deletions extract/s3_extract/push_proxy_job.py

This file was deleted.

22 changes: 0 additions & 22 deletions extract/s3_extract/stage_import.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,28 +54,6 @@ def diagnostics_import(import_date):
)


def push_proxy_import(log_type, import_date):
"""
Function to load data from a previously set up Snowflake stage
for push proxy data from AWS ELB

@log_type: Str with valid values of US, TEST, or DE
@import_date: Date with format "%Y/%m/%d"
"""
loc = PUSH_PROXY_LOCATIONS[log_type]
aws_account_id = os.getenv('AWS_ACCOUNT_ID')
az = loc['az']

extract_from_stage(
loc['table'],
loc['stage'],
'push_proxy',
get_path(aws_account_id, az),
get_push_proxy_pattern(import_date),
os.environ.copy(),
)


def get_push_proxy_pattern(import_date):
date = import_date.replace('/', '\\/')
return f".*{date}\\/.*"
Expand Down
Loading