diff options
| author | 2026-03-31 02:40:34 +0000 | |
|---|---|---|
| committer | 2026-03-31 02:40:34 +0000 | |
| commit | da6764565629b0376f8d505bdd9d5fdc9c567f93 (patch) | |
| tree | 6b855e5e4ba9c740f76016f42c1bb5ebd9fb9447 /network | |
| parent | object/fetch: Remove peel to tag functions (diff) | |
| signature | No signature | |
ref/store: Simplify names v0.1.166
Diffstat (limited to 'network')
| -rw-r--r-- | network/receivepack/hook.go | 2 | ||||
| -rw-r--r-- | network/receivepack/options.go | 6 | ||||
| -rw-r--r-- | network/receivepack/service/hook.go | 2 | ||||
| -rw-r--r-- | network/receivepack/service/options.go | 6 |
4 files changed, 8 insertions, 8 deletions
diff --git a/network/receivepack/hook.go b/network/receivepack/hook.go index 9626b2a3..9c323bcc 100644 --- a/network/receivepack/hook.go +++ b/network/receivepack/hook.go @@ -34,7 +34,7 @@ type UpdateDecision struct { // // Labels: Life-Call. type HookRequest struct { - Refs refstore.ReadingStore + Refs refstore.Reader ExistingObjects objectstore.Reader // QuarantinedObjects exposes quarantined objects for this push. // diff --git a/network/receivepack/options.go b/network/receivepack/options.go index 5806a26b..30792765 100644 --- a/network/receivepack/options.go +++ b/network/receivepack/options.go @@ -22,9 +22,9 @@ type Options struct { Algorithm objectid.Algorithm // Refs is the reference store visible to the push. Refs interface { - refstore.ReadingStore - refstore.TransactionalStore - refstore.BatchStore + refstore.Reader + refstore.Transactioner + refstore.Batcher } // ExistingObjects is the object store visible to the push before any newly // uploaded quarantined objects are promoted. diff --git a/network/receivepack/service/hook.go b/network/receivepack/service/hook.go index 68dc5051..3826e6fb 100644 --- a/network/receivepack/service/hook.go +++ b/network/receivepack/service/hook.go @@ -30,7 +30,7 @@ type UpdateDecision struct { // // Labels: Life-Call. type HookRequest struct { - Refs refstore.ReadingStore + Refs refstore.Reader ExistingObjects objectstore.Reader // QuarantinedObjects exposes quarantined objects for this push. // diff --git a/network/receivepack/service/options.go b/network/receivepack/service/options.go index e183b709..b6e71d64 100644 --- a/network/receivepack/service/options.go +++ b/network/receivepack/service/options.go @@ -18,9 +18,9 @@ import ( // borrowed for the duration of Execute. type Options struct { Refs interface { - refstore.ReadingStore - refstore.TransactionalStore - refstore.BatchStore + refstore.Reader + refstore.Transactioner + refstore.Batcher } ExistingObjects objectstore.Reader ObjectIngress objectstore.Quarantiner |
