From 4b4d602d83f5da2fa7818ff7da11b72306b45307 Mon Sep 17 00:00:00 2001 From: leboiko Date: Thu, 5 Dec 2024 21:08:09 -0300 Subject: [PATCH] Fixing dockerfiles for github action --- .github/workflows/release.yml | 4 ++-- substreams-sink/src/error.rs | 2 -- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0973c48..f37767a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -39,7 +39,7 @@ jobs: uses: docker/build-push-action@v5 with: context: . - file: consumer/Dockerfile.production + file: consumer/Dockerfile push: true platforms: linux/amd64,linux/arm64 tags: | @@ -69,7 +69,7 @@ jobs: uses: docker/build-push-action@v5 with: context: . - file: substreams-sink/Dockerfile.production + file: substreams-sink/Dockerfile push: true platforms: linux/amd64,linux/arm64 tags: | diff --git a/substreams-sink/src/error.rs b/substreams-sink/src/error.rs index 7c8f4f6..d597733 100644 --- a/substreams-sink/src/error.rs +++ b/substreams-sink/src/error.rs @@ -16,8 +16,6 @@ pub enum SubstreamError { BlockNotFound, #[error(transparent)] Envy(#[from] envy::Error), - #[error("Localstack URL not found")] - LocalstackUrlNotFound, #[error(transparent)] Model(#[from] models::error::ModelError), #[error(transparent)]