tweak host match regex

This commit is contained in:
Massaki Archambault 2024-08-13 22:18:20 -04:00
parent d37b3eb0eb
commit 9009c4b07f
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ func NewClient(logger *slog.Logger, p config.GitClientConfig) (*gitClient, error
logger: logger,
hostnameProg: regexp.MustCompile(`([a-z0-1:\-]+\.)+[a-z0-1:\-]+`),
hostnameProg: regexp.MustCompile(`([a-z0-1\-]+\.)+[a-z0-1\-]+`),
queue: queueFactory.RegisterQueue(&taskq.QueueOptions{
Name: "git-queue",