aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTaras Madan <tarasmadan@google.com>2024-11-12 11:17:28 +0100
committerTaras Madan <tarasmadan@google.com>2024-11-12 11:55:16 +0000
commitc819f2276e0861eaf83d155441072013ec914f3c (patch)
tree949d934edeb8c459892347b225d09361beffde83
parent75bb1b32609dc8e20e442a992f648e465c66cdf3 (diff)
dashboard/app: change tool name to db-export
-rw-r--r--dashboard/app/batch_db_export.go (renamed from dashboard/app/batch_reproexport.go)2
1 files changed, 1 insertions, 1 deletions
diff --git a/dashboard/app/batch_reproexport.go b/dashboard/app/batch_db_export.go
index b0361379f..9ca294d70 100644
--- a/dashboard/app/batch_reproexport.go
+++ b/dashboard/app/batch_db_export.go
@@ -22,7 +22,7 @@ func handleBatchDBExport(w http.ResponseWriter, r *http.Request) {
serviceAccount := &batchpb.ServiceAccount{
Scopes: []string{"https://www.googleapis.com/auth/userinfo.email"},
}
- if err := createScriptJob(ctx, "syzkaller", "export-repro",
+ if err := createScriptJob(ctx, "syzkaller", "db-export",
exportDBScript(ns, nsConfig.ReproExportPath), exportTimeoutSeconds, serviceAccount); err != nil {
log.Errorf(ctx, "createScriptJob: %s", err.Error())
}