Skip to content

Commit

Permalink
Merge pull request cockroachdb#125 from crowdflux/megatron_integratio…
Browse files Browse the repository at this point in the history
…n_changes

response parsing change string to interface
  • Loading branch information
govindamurali authored Jan 24, 2017
2 parents 7fec457 + c46a3e9 commit 1e2f502
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions app/DAL/clients/megatron.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ type megatronClient struct {
}

type transformationResponse struct {
Output models.JsonF `json:"output"`
Warnings []string `json:"warnings"`
Success bool `json:"success"`
Error interface{} `json:"error"`
Output models.JsonF `json:"output"`
Warnings []interface{} `json:"warnings"`
Success bool `json:"success"`
Error interface{} `json:"error"`
}

type validationResponse struct {
Expand Down

0 comments on commit 1e2f502

Please sign in to comment.