Amir Rossert

Results 44 comments of Amir Rossert

@hasanozdem1r This will verify the target host `https://api.myip.com`, what I'm interested in is verifying the proxy server. ``` proxies = {'http': 'https://mp.proxy.com:1234', 'https': 'https://my.proxy.com:1234'} resp = requests.get('https://api.myip.com', proxies=proxies) ``` So...

@hasanozdem1r Maybe I was not clear enough, but I want to verify the proxy server certificate, not that the proxy is working. When working with HTTPS, there is a certificate...

@kazhala thanks for the quick response. even changing the whole choice text will be good, I did tried to look at how fuzzy prompt color part of the text in...

@Preston-Landers Thanks for the reply. I was thinking of using the built-in `TimedRotatingFileHandler` handler for the time rotation handling and your `ConcurrentRotatingFileHandler` for the file locking capabilities. Do you have...

@jh11200 this will not use the ConcurrentRotatingFileHandler locking mechanism.

Did you test it with multiple processes writing to the same file? What is the difference between this and the original time base logger?

Unfortunately I couldn’t solve it. I just pre-complied the problematic modules and uploaded them to internal PYPI repo.

@gmatheu I tried to build this Dockerfile but it seems to hang forever when it gets to the stage when it installs pyinstaller using pip. Any reason why it happens?...

@jameshilliard here is the output of the commands I'm using, you can see that installing `netifaces` is failing, after installing the `VCForPython27.msi` the installation worked ``` root@f4c42631d935:/src# pip install netifaces...

I moved the same command from the `Dockerfile` into the `entrypoint.sh` script and it seems to work that way. I don't really want to do it, it makes the start...