Skip to content

Commit

Permalink
Remove unused args
Browse files Browse the repository at this point in the history
  • Loading branch information
ericvolp12 committed Apr 24, 2024
1 parent a80703d commit e2d6d37
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions cmd/graphd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,6 @@ func main() {
Usage: "listen address for http server",
Value: ":1323",
},
&cli.IntFlag{
Name: "expected-node-count",
Usage: "expected number of nodes in the graph",
EnvVars: []string{"GRAPHD_EXPECTED_NODE_COUNT"},
},
&cli.StringFlag{
Name: "follows-csv",
Usage: "path to graph csv file",
Expand All @@ -56,12 +51,6 @@ func main() {
EnvVars: []string{"GRAPHD_SQLITE_PATH"},
Value: "data/graphd/",
},
&cli.DurationFlag{
Name: "sync-interval",
Usage: "interval to flush updates to disk",
EnvVars: []string{"GRAPHD_SYNC_INTERVAL"},
Value: 5 * time.Second,
},
}

app.Action = GraphD
Expand Down

0 comments on commit e2d6d37

Please sign in to comment.