Skip to content

Commit

Permalink
temporarily drop checkQueue to allow merge safely
Browse files Browse the repository at this point in the history
  • Loading branch information
bpeng committed Dec 19, 2024
1 parent c62f9ea commit 07e167a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions cmd/fdsn-holdings-consumer/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@ func initAwsClient() {
if err != nil {
log.Fatalf("error creating SQS client: %s", err)
}
if err = sqsClient.CheckQueue(queueURL); err != nil {
log.Fatalf("error checking queueURL %s: %s", queueURL, err.Error())
}
// if err = sqsClient.CheckQueue(queueURL); err != nil {
// log.Fatalf("error checking queueURL %s: %s", queueURL, err.Error())
// }

s3Client, err = s3.NewWithMaxRetries(3)
if err != nil {
Expand Down
6 changes: 3 additions & 3 deletions cmd/fdsn-quake-consumer/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@ func initAwsClients() {
if err != nil {
log.Fatalf("creating SQS client: %s", err)
}
if err = sqsClient.CheckQueue(queueURL); err != nil {
log.Fatalf("error checking queueURL %s: %s", queueURL, err.Error())
}
// if err = sqsClient.CheckQueue(queueURL); err != nil {
// log.Fatalf("error checking queueURL %s: %s", queueURL, err.Error())
// }
}

func main() {
Expand Down

0 comments on commit 07e167a

Please sign in to comment.