Skip to content
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
6 changes: 0 additions & 6 deletions parser/entrypoints/api_pull.py

This file was deleted.

2 changes: 1 addition & 1 deletion scripts/generate_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def _validate(users: list[dict]) -> None:
)
# Validate entrypoint if specified
entrypoint = src.get("entrypoint", "sftp_push")
valid_entrypoints = {"sftp_push", "sftp_pull", "api_pull"}
valid_entrypoints = {"sftp_push", "sftp_pull"}
if entrypoint not in valid_entrypoints:
raise ValueError(
f"Source {src['id']!r} for user {uid!r} has unknown entrypoint "
Expand Down
1 change: 0 additions & 1 deletion users.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@
# entrypoint — Which ingestion loop to run for this source (default: "sftp_push").
# "sftp_push" — watch a local directory fed by SFTP.
# "sftp_pull" — poll a remote SFTP server (not yet implemented).
# "api_pull" — poll an HTTP/JSON API (not yet implemented).
# csv_config — (only for parser: csv_generic) Format configuration:
# read_csv_kwargs — dict of kwargs forwarded to pd.read_csv
# (e.g. sep, encoding, decimal, skiprows).
Expand Down
Loading