Skip to content

Commit a7bf724

Browse files
authored
Modify swagger yaml regex for job id (#589)
1 parent f54dba4 commit a7bf724

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Job Manager Change Log
22

3+
## v0.6.1 Release Notes
4+
5+
### Fixed bug where job IDs that started with a number could not be queried for.
6+
7+
### Fixed display bug with error card on job details page.
8+
39
## v0.6.0 Release Notes
410

511
### Applied new look-and-feel

api/jobs.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -398,7 +398,7 @@ definitions:
398398
matches to each of these labels.
399399
id:
400400
type: string
401-
pattern: ^[a-zA-Z][a-zA-Z0-9_-]*$
401+
pattern: ^[a-zA-Z0-9][a-zA-Z0-9_-]+$
402402
description: >
403403
Returns only jobs with the specified id.
404404
name:

0 commit comments

Comments
 (0)