Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions vindex/cmd/client/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,15 @@ func run(ctx context.Context) error {
return nil
}

if *inLogBaseURL == "" {
// Support not providing input log in case a tlog-tiles isn't available (e.g. SumDB).
klog.Info("in_log_base_url not provided, so cannot dereference pointers")
for _, idx := range idxes {
fmt.Printf("%d\n", idx)
}
return nil
}

lr := newInputLogClientFromFlags()

klog.V(1).Infof("Dereferencing %d pointers", len(idxes))
Expand Down
Loading