| 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 5c855eb0d067ce0e83a627527fb03e238bb87082..c6c601e187ce03d28bf39fbfdcd8d568104d80fa 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) int {
|
| 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) int {
|
| 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.")
|
|
|