Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/develop' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
Apoorva64 committed Jul 13, 2024
2 parents ae62b2c + 15d5d44 commit 2d61ac8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions manifests/overlays/develop/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ resources:
images:
- name: ghcr.io/startupnationlabs/react-flight-tracker-satellite/api
newName: ghcr.io/startupnationlabs/react-flight-tracker-satellite/api
newTag: d20f6c1bb28a20905463405a4a3f7dea70ebb172
newTag: dcfe1a17b31ecee81fe5063f95c841afa0b7b14c
- name: ghcr.io/startupnationlabs/react-flight-tracker-satellite/nginx-cache
newName: ghcr.io/startupnationlabs/react-flight-tracker-satellite/nginx-cache
newTag: d20f6c1bb28a20905463405a4a3f7dea70ebb172
newTag: dcfe1a17b31ecee81fe5063f95c841afa0b7b14c


patches:
Expand Down
3 changes: 2 additions & 1 deletion service/initlization.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,9 @@ func NewSatelliteService() *SatelliteService {
}
// check if the object id is already in the map
if _, ok := calculatedMap[tle.NORAD_CAT_ID]; ok {
log.Fatalf("NORAD_CAT_ID %v is already in the map", tle.OBJECT_ID)
log.Warnf("NORAD_CAT_ID %v is already in the map, latest version taken into account", tle.OBJECT_ID)
}

calculatedMap[tle.NORAD_CAT_ID] = tle

}
Expand Down
5 changes: 2 additions & 3 deletions spacetrack/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,9 @@ import (
"fmt"
"net/url"
"os"
)
import "github.com/go-resty/resty/v2"

import (
"github.com/go-resty/resty/v2"

log "github.com/sirupsen/logrus"
)

Expand Down

0 comments on commit 2d61ac8

Please sign in to comment.