Francesco Frassinelli

Results 309 comments of Francesco Frassinelli

This issue makes impossible to secure GeoServer in production environments. Setting a non-trivial password requires setting it again using the GeoServer web interface, but that lasts until the container is...

Sorry, I lost that issue :) We have geonode/geonode-docker where the main Dockerfile is stored. geonode/geonode contains a Dockerfile which refers to the Docker image produced by geonode/geonode-docker. I think...

I can confirm, I have the same issue on spcgeonode.

I made a new test and run `git bisect`. I think I found the regression: https://github.com/GeoNode/geonode/commit/a18bbd447721a370772ebc030632f4e36a4e4262 ``` a18bbd447721a370772ebc030632f4e36a4e4262 is the first bad commit commit a18bbd447721a370772ebc030632f4e36a4e4262 Author: hisham waleed karam Date:...

Your company is keeping a copy of the packages; those commands are used to avoid using the cache. Use that commands for the moment as workaround.

It seems that the author would like to receive PR instead of patches: https://github.com/hamano/pysmbc/issues/33#issuecomment-538240919

I am not able to apply your patch to the current master branch. Would you please rebase it?

Workaround: ```python class SmbcFileWrapper(object): def __init__(self, obj): self.obj = obj def __getattr__(self, name): return getattr(self.obj, name) def flush(self): pass def tell(self): return self.obj.seek(0, os.SEEK_CUR) ```

I added a custom `read` function to fix another issue: https://github.com/hamano/pysmbc/issues/46#issuecomment-629460520

I did 2 pull requests (flush, tell) + a fix for the read function. Here is a branch with the 3 PR merged together: https://github.com/frafra/pysmbc/tree/nina-fixes