Skip to content

Commit b7e39bc

Browse files
committed
fix the finishUpload event
1 parent d6224d0 commit b7e39bc

6 files changed

Lines changed: 7 additions & 5 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,4 +65,5 @@ go.work.sum
6565
.envrc
6666
CLAUDE.md
6767
.claude/
68+
GEMINI.md
6869
.agents/

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ require (
6464
github.com/open-policy-agent/opa v1.12.3
6565
github.com/orcaman/concurrent-map v1.0.0
6666
github.com/owncloud/libre-graph-api-go v1.0.5-0.20260216101009-eeac018af245
67-
github.com/owncloud/reva/v2 v2.0.0-20260324173335-cc6175484320
67+
github.com/owncloud/reva/v2 v2.0.0-20260407153426-798cb4dea6d6
6868
github.com/pkg/errors v0.9.1
6969
github.com/pkg/xattr v0.4.12
7070
github.com/prometheus/client_golang v1.23.2

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -742,8 +742,8 @@ github.com/orcaman/concurrent-map v1.0.0 h1:I/2A2XPCb4IuQWcQhBhSwGfiuybl/J0ev9HD
742742
github.com/orcaman/concurrent-map v1.0.0/go.mod h1:Lu3tH6HLW3feq74c2GC+jIMS/K2CFcDWnWD9XkenwhI=
743743
github.com/owncloud/libre-graph-api-go v1.0.5-0.20260216101009-eeac018af245 h1:JRidLTAKhnvyLMRtVtSF4lhBa0NSAOs6fof+d6JnKII=
744744
github.com/owncloud/libre-graph-api-go v1.0.5-0.20260216101009-eeac018af245/go.mod h1:z61VMGAJRtR1nbgXWiNoCkxUXP1B3Je9rMuJbnGd+Og=
745-
github.com/owncloud/reva/v2 v2.0.0-20260324173335-cc6175484320 h1:UPOCuW88zJx9UYevS3j3dqI9ncjBihcBP7o0Igvl0ZI=
746-
github.com/owncloud/reva/v2 v2.0.0-20260324173335-cc6175484320/go.mod h1:+rCy6oGYb2/qs5gmQa8y/pHARw634vB73MZGDY2SBIQ=
745+
github.com/owncloud/reva/v2 v2.0.0-20260407153426-798cb4dea6d6 h1:fyRgEByRpmjEAEI6aZPPAGinSjvS+U7tsUuBqcNXGgw=
746+
github.com/owncloud/reva/v2 v2.0.0-20260407153426-798cb4dea6d6/go.mod h1:+rCy6oGYb2/qs5gmQa8y/pHARw634vB73MZGDY2SBIQ=
747747
github.com/oxtoacart/bpool v0.0.0-20190530202638-03653db5a59c h1:rp5dCmg/yLR3mgFuSOe4oEnDDmGLROTvMragMUXpTQw=
748748
github.com/oxtoacart/bpool v0.0.0-20190530202638-03653db5a59c/go.mod h1:X07ZCGwUbLaax7L0S3Tw4hpejzu63ZrrQiUe6W0hcy0=
749749
github.com/pablodz/inotifywaitgo v0.0.9 h1:njquRbBU7fuwIe5rEvtaniVBjwWzcpdUVptSgzFqZsw=

services/storage-users/pkg/revaconfig/drivers.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,7 @@ func OwnCloudSQL(cfg *config.Config) map[string]interface{} {
157157
// Ocis is the config mapping for the Ocis storage driver
158158
func Ocis(cfg *config.Config) map[string]interface{} {
159159
return map[string]interface{}{
160+
"mount_id": cfg.MountID,
160161
"metadata_backend": "messagepack",
161162
"propagator": cfg.Drivers.OCIS.Propagator,
162163
"async_propagator_options": map[string]interface{}{

vendor/github.com/owncloud/reva/v2/pkg/storage/utils/decomposedfs/upload/upload.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/modules.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1316,7 +1316,7 @@ github.com/orcaman/concurrent-map
13161316
# github.com/owncloud/libre-graph-api-go v1.0.5-0.20260216101009-eeac018af245
13171317
## explicit; go 1.18
13181318
github.com/owncloud/libre-graph-api-go
1319-
# github.com/owncloud/reva/v2 v2.0.0-20260324173335-cc6175484320
1319+
# github.com/owncloud/reva/v2 v2.0.0-20260407153426-798cb4dea6d6
13201320
## explicit; go 1.24.0
13211321
github.com/owncloud/reva/v2/cmd/revad/internal/grace
13221322
github.com/owncloud/reva/v2/cmd/revad/runtime

0 commit comments

Comments
 (0)