Skip to content

Commit

Permalink
fix(api): fix log event warning (#2901)
Browse files Browse the repository at this point in the history
Signed-off-by: Benjamin Coenen <[email protected]>
  • Loading branch information
bnjjj authored and sguiheux committed Jun 15, 2018
1 parent 577d29b commit e598fae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sdk/build.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ type PipelineBuildJob struct {

// SpawnInfo contains an information about spawning
type SpawnInfo struct {
APITime time.Time `json:"api_time,omitempty" db:"-"`
RemoteTime time.Time `json:"remote_time,omitempty" db:"-"`
APITime time.Time `json:"api_time,omitempty" db:"-" mapstructure:"-"`
RemoteTime time.Time `json:"remote_time,omitempty" db:"-" mapstructure:"-"`
Message SpawnMsg `json:"message,omitempty" db:"-"`
// UserMessage contains msg translated for end user
UserMessage string `json:"user_message,omitempty" db:"-"`
Expand Down

0 comments on commit e598fae

Please sign in to comment.