Compare commits
	
		
			1 Commits
		
	
	
		
			827e332e16
			...
			fix/docker
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
|   | 2a64584c5e | 
| @@ -454,9 +454,11 @@ func (sm *SwarmManager) ListAgentServices() ([]swarm.Service, error) { | |||||||
| 	return agentServices, nil | 	return agentServices, nil | ||||||
| } | } | ||||||
|  |  | ||||||
|  | // @goal: WHOOSH-REQ-001 - Fix Docker Client API compilation error | ||||||
|  | // WHY: ContainerLogsOptions moved from types to container package in newer Docker client versions | ||||||
| // GetServiceLogs retrieves logs for a service | // GetServiceLogs retrieves logs for a service | ||||||
| func (sm *SwarmManager) GetServiceLogs(serviceID string, lines int) (string, error) { | func (sm *SwarmManager) GetServiceLogs(serviceID string, lines int) (string, error) { | ||||||
| 	options := types.ContainerLogsOptions{ | 	options := container.LogsOptions{ | ||||||
| 		ShowStdout: true, | 		ShowStdout: true, | ||||||
| 		ShowStderr: true, | 		ShowStderr: true, | ||||||
| 		Tail:       fmt.Sprintf("%d", lines), | 		Tail:       fmt.Sprintf("%d", lines), | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user