Alexandre Quercia
Alexandre Quercia
I found how to add MySQL server on GitHub action. https://github.com/FriendsOfSymfony1/doctrine1/pull/103/commits/e9068b2df92ee8c76fdddf2bd9da5da3c8db68bb Now tests passes. :green_circle:
Hello @anvaya, Problematic ------------ As I understand, you want to use the SSL connection. As you said, currently, Doctrine1 does not support SSL connection. There is the list of [supported...
The point with `configure` is to check whether the user system is able to install `cyg-apt` and use it. Therefore this script checks the Python version (missing to check for...
I freeze the first commit for this PR at b7ac6c9 before cleaning commit history and merge it is almost ready. For one week I work only on it (cf. [travis](https://travis-ci.org/alquerci/cyg-apt/builds)...
I am trying to resolve the executable script problem: - shabang with a Windows Python ``` python #!/usr/bin/env c:/python26/python # /usr/local/bin/cyg-apt ... ``` does not work because it will be...
This change will be merge for the version 2.0 for give us time to prepare users and finalize it.
Hello there, This patch is a nice base for step scaling configuration. For me, the main difference with target tracking is the latency of the alarm. With custom patch. ```yaml...
Indeed thank you.
> I noticed you put a space before the colon in if True : so do we want to document that in the coding standards too? Indeed
For control structures there MUST be one space between the expression and the colon. The `if` structure can like like: - 1a ``` python if True : # if body...