@@ -116,7 +117,7 @@ var _ = SIGDescribe("Servers with support for API chunking", func() {
...
@@ -116,7 +117,7 @@ var _ = SIGDescribe("Servers with support for API chunking", func() {
opts:=metav1.ListOptions{}
opts:=metav1.ListOptions{}
opts.Limit=oneTenth
opts.Limit=oneTenth
list,err:=client.List(opts)
list,err:=client.List(opts)
Expect(err).ToNot(HaveOccurred())
Expect(err).ToNot(HaveOccurred(),"failed to list pod templates in namespace: %s, given limit: %d",ns,opts.Limit)
firstToken:=list.Continue
firstToken:=list.Continue
firstRV:=list.ResourceVersion
firstRV:=list.ResourceVersion
framework.Logf("Retrieved %d/%d results with rv %s and continue %s",len(list.Items),opts.Limit,list.ResourceVersion,firstToken)
framework.Logf("Retrieved %d/%d results with rv %s and continue %s",len(list.Items),opts.Limit,list.ResourceVersion,firstToken)
...
@@ -149,7 +150,7 @@ var _ = SIGDescribe("Servers with support for API chunking", func() {
...
@@ -149,7 +150,7 @@ var _ = SIGDescribe("Servers with support for API chunking", func() {
By("retrieving the second page again with the token received with the error message")
By("retrieving the second page again with the token received with the error message")
opts.Continue=inconsistentToken
opts.Continue=inconsistentToken
list,err=client.List(opts)
list,err=client.List(opts)
Expect(err).ToNot(HaveOccurred())
Expect(err).ToNot(HaveOccurred(),"failed to list pod templates in namespace: %s, given inconsistent continue token %s and limit: %d",ns,opts.Continue,opts.Limit)
Expect(err).To(HaveOccurred(),"failed to return error when posting self subject access review: %+v, to a backend that does not implement metadata",sar)
Expect(err).To(HaveOccurred(),"update (PUT) admitted configmap %s in namespace %s to a non-compliant one should be rejected by webhook",allowedConfigMapName,f.Namespace.Name)
Expect(err).To(HaveOccurred(),"update admitted configmap %s in namespace %s by strategic merge patch to a non-compliant one should be rejected by webhook. Patch: %+v",allowedConfigMapName,f.Namespace.Name,patch)