Compare commits
2 Commits
c917bc62fb
...
13dcb1ec45
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
13dcb1ec45 | ||
|
|
4fa78e786f |
@@ -26,7 +26,7 @@ jobs:
|
||||
BuildAndDeployArm64:
|
||||
runs-on: arm64
|
||||
steps:
|
||||
- uses: actions/checkout@v5
|
||||
- uses: actions/checkout@v4
|
||||
- name: Build arm64 image
|
||||
run: |
|
||||
docker build \
|
||||
|
||||
@@ -39,7 +39,12 @@ func UpsertSubscriptionDetails(g *CartGrain, m *messages.UpsertSubscriptionDetai
|
||||
// Update existing entry.
|
||||
existing, ok := g.SubscriptionDetails[*m.Id]
|
||||
if !ok {
|
||||
return fmt.Errorf("subscription details not found")
|
||||
n := &SubscriptionDetails{
|
||||
Id: *m.Id,
|
||||
Version: 1,
|
||||
}
|
||||
g.SubscriptionDetails[*m.Id] = n
|
||||
existing = n
|
||||
}
|
||||
changed := false
|
||||
if m.OfferingCode != "" {
|
||||
|
||||
Reference in New Issue
Block a user