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
2 changes: 1 addition & 1 deletion docker/api/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ SHELL ["/bin/sh", "-exc"]
ENV PATH=/opt/app/bin:$PATH

RUN apt-get update && apt-get install -y --no-install-recommends \
libgeos3.11.1 \
libgeos3.13.1 \
&& rm -rf /var/lib/apt/lists/*

STOPSIGNAL SIGINT
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ async def fetch_and_ingest(
except StacParserException as e:
item_errors.extend(e.indexing_errors)
except Exception as e:
item_errors.extend(
item_errors.append(
new_error(
type=IndexingErrorType.item_fetching,
description=str(e),
Expand Down