commit 96f03df38c0ea34dcc34552a9e9e0d3c8f518c13
parent 6a4c883edf72160289b9c87fb91244bd7324193f
Author: Greg Mierzwinski <gmierz2@outlook.com>
Date: Tue, 21 Oct 2025 22:47:31 +0000
Bug 1995563 - Add a limit to suite/test name length to schema. r=perftest-reviewers,aglavic DONTBUILD
There is currently no limit set in our artifact schema, but there is a limit in the DB. This patch changes the schema to reflect the limit in our DB.
Differential Revision: https://phabricator.services.mozilla.com/D269413
Diffstat:
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/testing/mozharness/external_tools/performance-artifact-schema.json b/testing/mozharness/external_tools/performance-artifact-schema.json
@@ -60,7 +60,8 @@
"properties": {
"name": {
"title": "Subtest name",
- "type": "string"
+ "type": "string",
+ "maxLength": 80
},
"publicName": {
"title": "Public subtest name",
@@ -127,7 +128,8 @@
"properties": {
"name": {
"title": "Suite name",
- "type": "string"
+ "type": "string",
+ "maxLength": 80
},
"publicName": {
"title": "Public suite name",