You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What steps will reproduce the problem?
1. Create Service Struct
2. Create custom field in addition to endpoint fields
3. Register service
4. Try to use value of field in end point calls
What is the expected output? What do you see instead?
The field value should be set, the custom field is set to nil
What version of the product are you using? On what operating system?
OSX, go 1.2,
Please provide any additional information below.
See Code:
type DeviceService struct {
Registrar sns.Registrar
//Service level config
gorest.RestService `root:"/rest/device/" consumes:"application/json" produces:"application/json"`
registerDevice gorest.EndPoint `method:"POST" path:"/" postdata:"DeviceRegistration"`
}
func (serv DeviceService) RegisterDevice(device DeviceRegistration) {
//The value of registrar is nil when this method is called even though it was set before
log.Printf("Registering Device %v", serv.Registrar)
return
}
Original issue reported on code.google.com by [email protected] on 30 Dec 2013 at 7:36
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 30 Dec 2013 at 7:36The text was updated successfully, but these errors were encountered: