diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2016-04-29T14·47+0200 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2016-04-29T14·47+0200 |
commit | 8e065c6b3e36e4cd113769575c0045b6d42357ef (patch) | |
tree | 9c1bf94731cdcb7c6b88bb6338379a7dd75d4475 /src/libstore/s3-binary-cache-store.hh | |
parent | f6aee2f4772b2de1943aaa2c40f8fb6dd3185b92 (diff) |
BinaryCacheStore: Make the signing key a parameter
Diffstat (limited to 'src/libstore/s3-binary-cache-store.hh')
-rw-r--r-- | src/libstore/s3-binary-cache-store.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstore/s3-binary-cache-store.hh b/src/libstore/s3-binary-cache-store.hh index 0425f6bb95d9..2751a9d01cdb 100644 --- a/src/libstore/s3-binary-cache-store.hh +++ b/src/libstore/s3-binary-cache-store.hh @@ -11,8 +11,8 @@ class S3BinaryCacheStore : public BinaryCacheStore protected: S3BinaryCacheStore(std::shared_ptr<Store> localStore, - const Path & secretKeyFile) - : BinaryCacheStore(localStore, secretKeyFile) + const StoreParams & params) + : BinaryCacheStore(localStore, params) { } public: |