diff --git a/src/lib.rs b/src/lib.rs index 884729e7..9dce2390 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -58,8 +58,8 @@ impl From for BlockStorage { impl From for BlockStage { fn from(c: StagingStorage) -> Self { match c { - StagingStorage::Memory => Self::B(MemoryStaging::default()), - StagingStorage::FileSystem => Self::A(TempFileSystemStage::default()), + StagingStorage::Memory => Self::B(MemoryStaging), + StagingStorage::FileSystem => Self::A(TempFileSystemStage), } } } diff --git a/test/docker-compose.yml b/test/docker-compose.yml index 76214734..134e8aae 100644 --- a/test/docker-compose.yml +++ b/test/docker-compose.yml @@ -18,6 +18,8 @@ services: KEPLER_STORAGE_BLOCKS_TYPE: S3 KEPLER_STORAGE_BLOCKS_ENDPOINT: "http://localstack:4566" KEPLER_STORAGE_DATABASE: "postgres://postgres:postgres@postgres:5432/postgres" + KEPLER_KEYS_TYPE: "Static" + KEPLER_KEYS_SECRET: "U29tZSBsb25nIHBpZWNlIG9mIGVudHJvcHkgd2hpY2ggaXMgYSBzZWNyZXQgYW5kIG1vcmUgdGhhbiAzMiBieXRlcw" AWS_ACCESS_KEY_ID: "test" AWS_SECRET_ACCESS_KEY: "test" AWS_DEFAULT_REGION: "us-east-1"