Dwaipayan Ray

Results 7 comments of Dwaipayan Ray

Hi @rafaveira3, I think the timeout in [huskydocker.go](https://github.com/globocom/huskyCI/blob/master/api/dockers/huskydocker.go#L37) doesn't work. The waitContainer function in [api.go](https://github.com/globocom/huskyCI/blob/master/api/dockers/api.go#L101) takes the timeOutInSeconds variable, but does nothing with it. Is it perhaps an unimplemented feature?

@rafaveira3 Since the docker api is being called directly by the program, I think we can't use the timeout command after the api server is started. Probably we have to...

@Krlier True I looked into it and it seems doable. I will try to draw something up :)

The timeout seems to be hardcoded in [analysis.go] (https://github.com/globocom/huskyCI/blob/master/client/analysis/analysis.go) ``` timeout := time.After(60 * time.Minute) ``` Changing this should suffice perhaps. I would like to take it up!

Great thanks! I will send in a PR once done.

@rafaveira3 One problem I am facing is that the Timeout times are hardly coupled with security tests currenty. I am looking at using a temporary timeout time which overrides the...