Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(1499)

Side by Side Diff: testservices/novaservice/service_http.go

Issue 6948051: Add simple tool for deleting security groups
Patch Set: Add simple tool for deleting security groups Created 12 years, 2 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Nova double testing service - HTTP API implementation 1 // Nova double testing service - HTTP API implementation
2 2
3 package novaservice 3 package novaservice
4 4
5 import ( 5 import (
6 "crypto/rand" 6 "crypto/rand"
7 "encoding/json" 7 "encoding/json"
8 "fmt" 8 "fmt"
9 "io" 9 "io"
10 "io/ioutil" 10 "io/ioutil"
(...skipping 739 matching lines...) Expand 10 before | Expand all | Expand 10 after
750 } 750 }
751 return errNotFound 751 return errNotFound
752 case "DELETE": 752 case "DELETE":
753 if group, err := n.processGroupId(w, r); group != nil { 753 if group, err := n.processGroupId(w, r); group != nil {
754 if err := n.removeSecurityGroup(group.Id); err != nil { 754 if err := n.removeSecurityGroup(group.Id); err != nil {
755 return err 755 return err
756 } 756 }
757 if n.nextGroupId > 0 { 757 if n.nextGroupId > 0 {
758 n.nextGroupId-- 758 n.nextGroupId--
759 } 759 }
760 » » » writeResponse(w, http.StatusNoContent, nil) 760 » » » writeResponse(w, http.StatusAccepted, nil)
wallyworld 2013/01/22 02:03:38 The branch I just landed in goose fixes this alrea
761 return nil 761 return nil
762 } else if err == errNoGroupId { 762 } else if err == errNoGroupId {
763 return errNotFound 763 return errNotFound
764 } else { 764 } else {
765 return err 765 return err
766 } 766 }
767 } 767 }
768 return fmt.Errorf("unknown request method %q for %s", r.Method, r.URL.Pa th) 768 return fmt.Errorf("unknown request method %q for %s", r.Method, r.URL.Pa th)
769 } 769 }
770 770
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
913 } 913 }
914 for path, h := range handlers { 914 for path, h := range handlers {
915 path = strings.Replace(path, "$v", n.versionPath, 1) 915 path = strings.Replace(path, "$v", n.versionPath, 1)
916 path = strings.Replace(path, "$t", n.tenantId, 1) 916 path = strings.Replace(path, "$t", n.tenantId, 1)
917 if !strings.HasSuffix(path, "/") { 917 if !strings.HasSuffix(path, "/") {
918 mux.Handle(path+"/", h) 918 mux.Handle(path+"/", h)
919 } 919 }
920 mux.Handle(path, h) 920 mux.Handle(path, h)
921 } 921 }
922 } 922 }
OLDNEW

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b