mirror of
				https://github.com/redhat-developer/odo.git
				synced 2025-10-19 03:06:19 +03:00 
			
		
		
		
	 682e5176d2
			
		
	
	682e5176d2
	
	
	
		
			
			* Implement GetRunningPodFromSelector for podman * Implement GetPodLogs for podman * Same message in podman/cluster * Integration tests * Return stream of stdout/err
		
			
				
	
	
		
			13 lines
		
	
	
		
			273 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			273 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package platform
 | |
| 
 | |
| import "fmt"
 | |
| 
 | |
| // PodNotFoundError returns an error if no pod is found with the selector
 | |
| type PodNotFoundError struct {
 | |
| 	Selector string
 | |
| }
 | |
| 
 | |
| func (e *PodNotFoundError) Error() string {
 | |
| 	return fmt.Sprintf("pod not found for the selector: %s", e.Selector)
 | |
| }
 |