Skip to content

Commit

Permalink
Merge pull request #748 from butonic/update-reva-to-cdb3d6688da5
Browse files Browse the repository at this point in the history
Update reva to cdb3d66
  • Loading branch information
butonic authored Oct 23, 2020
2 parents 7f1b58d + df9fa95 commit eb47947
Show file tree
Hide file tree
Showing 5 changed files with 52 additions and 77 deletions.
11 changes: 11 additions & 0 deletions accounts/pkg/indexer/test/test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ package test
import (
"context"
"flag"
"net"
"time"

"github.com/micro/cli/v2"
"github.com/owncloud/ocis/storage/pkg/command"
mcfg "github.com/owncloud/ocis/storage/pkg/config"
Expand All @@ -20,4 +23,12 @@ func setupMetadataStorage() {
}

_ = app.Command("storage-metadata").Run(cli.NewContext(&app, &flag.FlagSet{}, &cli.Context{Context: context.Background()}))

// wait until port is open
d := net.Dialer{Timeout: 5 * time.Second}
conn, err := d.Dial("tcp", "localhost:9125")
if err != nil {
panic("timeout waiting for storage")
}
conn.Close()
}
6 changes: 6 additions & 0 deletions changelog/unreleased/update-reva-to-cdb3d6688da5.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Enhancement: Update reva to cdb3d6688da5

* let the gateway filter invalid references

https://github.com/owncloud/ocis/pull/748
https://github.com/cs3org/reva/pull/1274
Loading

0 comments on commit eb47947

Please sign in to comment.