Markus Mayer

Results 23 comments of Markus Mayer

Could we at least `chdir` back to where we came from?

@reinaldomaslim I had the same problem. It appears that `python setup.py install` does not _overwrite_ the already installed modules. If you delete the two files in your python module directory...

@georoen For me they are `pyyolo.cpython-36m-x86_64-linux-gnu.so` and `pyyolo-0.1-py3.6.egg-info` in `dist-packages`, but that looks right. If I don't delete these prior to `install`, it doesn't seem to copy anything new. Apart...

Same issue here, this code triggered the problem for me: ```csharp public static string Format(string formatString, params object[] values) => string.Format(CultureInfo.InvariantCulture, formatString, values); ```

Wait, it might be that the issue is that we're using `ErrorProne.NET` when we should really be using `ErrorProne.NET.CoreAnalyzers`. This is at least hinted at in https://github.com/SergeyTeplyakov/ErrorProne.NET/issues/114#issuecomment-469051246.

For curl, you can use the `--http2-prior-knowledge` option, e.g. using ```bash curl --http2-prior-knowledge http://localhost:8000/ ``` This way, curl won't attempt to upgrade the connection.

I just stumbled over the same issue, so I went ahead and added PR #751.

I ended up using [jsPolicy](https://github.com/loft-sh/jspolicy) to inject Reflector `reflector.v1.k8s.emberstack.com/reflection-allowed` annotations into the secret created by Postgres Operator. In this case for the user `keycloak` with secret reflection allowed into the...

I fixed it by using Linux now. :see_no_evil:

There's one little part missing when it comes to Reflector itself (namely the target secret), but that's easily found on the Reflector docs. It I don't forget about it tomorrow...