Skip to content

Commit

Permalink
fixup ingest
Browse files Browse the repository at this point in the history
  • Loading branch information
MalinAhlberg committed Oct 7, 2024
1 parent 2ec4ab1 commit 2a01818
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion sda/cmd/ingest/ingest.go
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,15 @@ func main() {
panic(err)
}
key, err := config.GetC4GHKey()
pubkey, err := config.GetC4GHPublicKey()
if err != nil {
log.Error(err)
sigc <- syscall.SIGINT
panic(err)
}
pubkey, err := config.GetC4GHPublicKey()
if err != nil {
log.Error(err)
}
archive, err := storage.NewBackend(conf.Archive)
if err != nil {
log.Error(err)
Expand Down

0 comments on commit 2a01818

Please sign in to comment.