Skip to content
This repository has been archived by the owner on Apr 30, 2021. It is now read-only.

Commit

Permalink
added queued state
Browse files Browse the repository at this point in the history
  • Loading branch information
Yevgeny Pats committed Aug 19, 2019
1 parent 75c132b commit bb77068
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion client/commands.go
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ func (c *FuzzitClient) CreateJob(jobConfig Job, files []string) (*firestore.Docu
fullJob.Completed = 0
fullJob.OrgId = c.Org
fullJob.Namespace = c.Namespace
fullJob.Status = "in progress"
fullJob.Status = "queued"
fullJob.V2 = true

jobRef := collectionRef.NewDoc()
Expand Down
2 changes: 1 addition & 1 deletion cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ var gFuzzitClient *client.FuzzitClient
var rootCmd = &cobra.Command{
Use: "fuzzit",
Short: "Continuous fuzzing made simple CLI",
Version: "2.4.28",
Version: "2.4.29",
}

func Execute() {
Expand Down

0 comments on commit bb77068

Please sign in to comment.