feat: dont crash if there is a existing source
All checks were successful
Gitea Build Check / Build (push) Successful in 9m47s
All checks were successful
Gitea Build Check / Build (push) Successful in 9m47s
This commit is contained in:
parent
0b800ff423
commit
285ba7f94b
@ -2,7 +2,9 @@ package plug
|
||||
|
||||
import (
|
||||
"context"
|
||||
"errors"
|
||||
"fmt"
|
||||
otterError "git.dragse.it/anthrove/otter-space-sdk/v2/pkg/error"
|
||||
"log"
|
||||
"net"
|
||||
|
||||
@ -41,7 +43,9 @@ func (p *Plug) Listen() error {
|
||||
log.Printf("initilazing source!")
|
||||
err = p.database.CreateSource(p.ctx, &p.source)
|
||||
if err != nil {
|
||||
return err
|
||||
if !errors.Is(err, &otterError.NoDataWritten{}) {
|
||||
log.Panic(err)
|
||||
}
|
||||
}
|
||||
|
||||
lis, err := net.Listen("tcp", fmt.Sprintf("%s:%s", p.address, p.port))
|
||||
|
Reference in New Issue
Block a user