watch.Url renamed to watch.Target
This commit is contained in:
@@ -199,7 +199,7 @@ func TestWatchApi(t *testing.T) {
|
||||
Name: "foo",
|
||||
Uid: "",
|
||||
},
|
||||
Url: "",
|
||||
Target: "",
|
||||
}
|
||||
m, err := g.client.WatchCreate(testWatch)
|
||||
panicIf(err)
|
||||
@@ -208,7 +208,7 @@ func TestWatchApi(t *testing.T) {
|
||||
w, err := g.client.WatchGet(m)
|
||||
panicIf(err)
|
||||
testWatch.Metadata.Uid = m.Uid
|
||||
w.Url = ""
|
||||
w.Target = ""
|
||||
assert(*testWatch == *w, "watch should match after reading")
|
||||
|
||||
testWatch.Metadata.Name = "yyy"
|
||||
|
||||
@@ -56,7 +56,7 @@ func (api *API) WatchApiCreate(w http.ResponseWriter, r *http.Request) {
|
||||
return
|
||||
}
|
||||
|
||||
watch.Url = fission.UrlForFunction(&watch.Function)
|
||||
watch.Target = fission.UrlForFunction(&watch.Function)
|
||||
|
||||
uid, err := api.WatchStore.Create(&watch)
|
||||
if err != nil {
|
||||
|
||||
Reference in New Issue
Block a user