Fix tags on structure (#3442)

The comma breaks mapstructure for this actually.
This commit is contained in:
Seth Vargo
2017-10-10 10:53:46 -04:00
committed by Chris Hoffman
parent 022e93f627
commit fab7f3bd9a

View File

@@ -27,7 +27,7 @@ type Request struct {
// If set, the name given to the replication secondary where this request
// originated
ReplicationCluster string `json:"replication_cluster" structs:"replication_cluster", mapstructure:"replication_cluster"`
ReplicationCluster string `json:"replication_cluster" structs:"replication_cluster" mapstructure:"replication_cluster"`
// Operation is the requested operation type
Operation Operation `json:"operation" structs:"operation" mapstructure:"operation"`