Proper name for JSON format of snapshot record
continuous-integration/drone/push Build is failing Details

Sandbox renamed to dev in the deploy pipeline
This commit is contained in:
Adam Štrauch 2021-10-29 01:03:17 +02:00
parent dc478714bf
commit 03eb87d9dd
Signed by: cx
GPG Key ID: 018304FFA8988F8D
2 changed files with 6 additions and 6 deletions

View File

@ -28,12 +28,12 @@ services:
kind: pipeline
type: docker
name: Sandbox deploy
name: Dev deploy
steps:
- name: build
# image: golang:1.17-buster # this one is used in production
image: golang:1.17-bullseye # this one is used in sandbox
image: golang:1.17-bullseye # this one is used in dev
commands:
- go mod tidy
- make build
@ -80,7 +80,7 @@ name: Production deploy
steps:
- name: build
image: golang:1.17-buster # this one is used in production
#image: golang:1.17-bullseye # this one is used in sandbox
#image: golang:1.17-bullseye # this one is used in dev
commands:
- go mod tidy
- make build

View File

@ -21,9 +21,9 @@ const keySplitCharacter = ":"
// Snapshot contains metadata about a single snapshot
type Snapshot struct {
AppName string
TimeStamp int64
Labels []string
AppName string `json:"app_name"`
TimeStamp int64 `json:"ts"`
Labels []string `json:"labels"`
}
// SnapshotIndexLine is struct holding information about a single snapshot