mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-09-07 17:15:56 +00:00
Allow '' in ID regex
This commit is contained in:
parent
7c37ececfd
commit
65febc37fd
1 changed files with 1 additions and 1 deletions
|
|
@ -25,7 +25,7 @@ import (
|
|||
"github.com/pkg/errors"
|
||||
)
|
||||
|
||||
var txIDRegexp = regexp.MustCompile("^[A-Za-z0-9_-]$")
|
||||
var txIDRegexp = regexp.MustCompile("^[A-Za-z0-9_-]*$")
|
||||
|
||||
// Transaction contains information related to a block of work that
|
||||
// needs to be tracked and spans multiple API calls.
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue