You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
flag.Var(&logURL, "log_url", "Log storage root URL (can be specified multiple times), e.g. https://log.server/and/path/")
43
-
flag.Var(&writeLogURL, "write_log_url", "Root URL for writing to a log (can be specified multiple times), e.g. https://log.server/and/path/ (optional, defaults to log_url)")
44
+
flag.Var(&mirrorURL, "mirror_url", "Root URL for writing to a mirror (can be specified multiple times), e.g. https://log.server/and/path/ (optional, defaults to log_url)")
44
45
}
45
46
46
47
var (
47
-
logURLmultiStringFlag
48
-
writeLogURLmultiStringFlag
48
+
mirrorURLmultiStringFlag
49
49
50
50
storageDir=flag.String("storage_dir", "", "Root directory to store log data")
51
51
logPrivKey=flag.String("log_private_key", "", "Location of private key file")
52
52
53
-
maxReadOpsPerSecond=flag.Int("max_read_ops", 20, "The maximum number of read operations per second")
54
-
numReadersRandom=flag.Int("num_readers_random", 4, "The number of readers looking for random leaves")
55
-
numReadersFull=flag.Int("num_readers_full", 4, "The number of readers downloading the whole log")
56
-
57
53
maxWriteOpsPerSecond=flag.Int("max_write_ops", 0, "The maximum number of write operations per second")
58
54
numWriters=flag.Int("num_writers", 0, "The number of independent write tasks to run")
0 commit comments