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

Commit 8d31e91

Browse files
author
Yevgeny Pats
committed
backend: bugfix in v2.4.60 new crash path incorrect
1 parent 0af638f commit 8d31e91

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

client/agent.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ func (c *FuzzitClient) uploadCrash(exitCode int) error {
153153
}
154154

155155
if _, err := os.Stat("artifact"); err == nil {
156-
colRef := c.firestoreClient.Collection(fmt.Sprintf("orgs/%s/targets/%s/jobs/%s/crashes", c.Org, c.jobId, c.currentJob.TargetId))
156+
colRef := c.firestoreClient.Collection(fmt.Sprintf("orgs/%s/targets/%s/jobs/%s/crashes", c.Org, c.currentJob.TargetId, c.jobId))
157157
crashRef := colRef.NewDoc()
158158

159159
log.Printf("uploading crash...")

client/client.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
)
1212

1313
const FuzzitEndpoint = "https://app.fuzzit.dev"
14-
const Version = "v2.4.60"
14+
const Version = "v2.4.61"
1515

1616
type Target struct {
1717
Name string `firestore:"target_name"`

0 commit comments

Comments
 (0)