Skip to content

Commit

Permalink
trivial. change deliminator for domains
Browse files Browse the repository at this point in the history
  • Loading branch information
ktkfree committed Sep 6, 2024
1 parent c6aef44 commit 8d06514
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/usecase/stack.go
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ func (u *StackUsecase) Create(ctx context.Context, dto model.Stack) (stackId dom

domains := make([]string, len(dto.Domains))
for i, domain := range dto.Domains {
domains[i] = domain.DomainType + "_" + domain.Url
domains[i] = domain.DomainType + "|" + domain.Url
}

workflow := "tks-stack-create"
Expand Down Expand Up @@ -319,7 +319,7 @@ func (u *StackUsecase) Import(ctx context.Context, dto model.Stack) (stackId dom

domains := make([]string, len(dto.Domains))
for i, domain := range dto.Domains {
domains[i] = domain.DomainType + "_" + domain.Url
domains[i] = domain.DomainType + "|" + domain.Url
}

workflow := "tks-stack-import"
Expand Down

0 comments on commit 8d06514

Please sign in to comment.