| Index: logdog/common/storage/archive/logdog_archive_test/main.go
|
| diff --git a/logdog/common/storage/archive/logdog_archive_test/main.go b/logdog/common/storage/archive/logdog_archive_test/main.go
|
| index e93c4e1185e10ace3738b0e661bb8b1a230264ea..7717b4a726d06cf136302467da86314c9a5eef1e 100644
|
| --- a/logdog/common/storage/archive/logdog_archive_test/main.go
|
| +++ b/logdog/common/storage/archive/logdog_archive_test/main.go
|
| @@ -317,9 +317,9 @@ func (cmd *cmdRunGet) Run(baseApp subcommands.Application, args []string, _ subc
|
| defer client.Close()
|
|
|
| stClient, err := archive.New(c, archive.Options{
|
| - IndexURL: cmd.indexPath,
|
| - StreamURL: cmd.streamPath,
|
| - Client: client,
|
| + Index: gs.Path(cmd.indexPath),
|
| + Stream: gs.Path(cmd.streamPath),
|
| + Client: client,
|
| })
|
| if err != nil {
|
| log.WithError(err).Errorf(c, "Failed to create storage client.")
|
| @@ -405,9 +405,9 @@ func (cmd *cmdRunTail) Run(baseApp subcommands.Application, args []string, _ sub
|
| defer client.Close()
|
|
|
| stClient, err := archive.New(c, archive.Options{
|
| - IndexURL: cmd.indexPath,
|
| - StreamURL: cmd.streamPath,
|
| - Client: client,
|
| + Index: gs.Path(cmd.indexPath),
|
| + Stream: gs.Path(cmd.streamPath),
|
| + Client: client,
|
| })
|
| if err != nil {
|
| log.WithError(err).Errorf(c, "Failed to create storage client.")
|
|
|