mirror of
				https://github.com/optim-enterprises-bv/kubernetes.git
				synced 2025-11-04 04:08:16 +00:00 
			
		
		
		
	Merge pull request #50059 from ddysher/local-e2e-bug-fix
Automatic merge from submit-queue Fix pointer bug in local volume e2e test **What this PR does / why we need it**: Fix pointer bug in local volume e2e test **Which issue this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close that issue when PR gets merged)*: fixes https://github.com/kubernetes/kubernetes/issues/50043 **Special notes for your reviewer**: **Release note**: ```release-note NONE ```
This commit is contained in:
		@@ -109,7 +109,7 @@ var _ = SIGDescribe("PersistentVolumes-local [Feature:LocalPersistentVolumes] [S
 | 
			
		||||
		Expect(len(nodes.Items)).NotTo(BeZero(), "No available nodes for scheduling")
 | 
			
		||||
		scName = fmt.Sprintf("%v-%v", testSCPrefix, f.Namespace.Name)
 | 
			
		||||
		// Choose the first node
 | 
			
		||||
		node0 = &config.nodes.Items[0]
 | 
			
		||||
		node0 = &nodes.Items[0]
 | 
			
		||||
 | 
			
		||||
		config = &localTestConfig{
 | 
			
		||||
			ns:     f.Namespace.Name,
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user