Manish Tomar

Results 18 comments of Manish Tomar

This should be doable with `commit=False` where you just want to tag the current commit.

> I would like to move it all to attr and have a not too complicated path to generate sphynx doc @pombredanne My original intent was exactly this. Also it...

Twisted since 16.5 has [`deferred.addTimeout`](http://twistedmatrix.com/documents/current/api/twisted.internet.defer.Deferred.html#addTimeout) function that can be used instead of above code. For example, I've a [function that wraps getting response that adds timeout to the returned deferred](https://github.com/manishtomar/bloc/blob/9fd4293fc8cb6954c35756e1b072304b7031880e/src/bloc/client.py#L64-L78)....

@docwhat Until the bug is fixed your best option is to clean the cache before the expiry time.

There are no plans on getting this fixed anytime soon. It will be great if someone can root cause this and provide a patch.

@andyxning That is totally acceptable. It will be nice if there can be a PR to make this configurable so that its easy for others have this workaround.

@andyzhangx Please ignore that error. It is initial code to have repo and tag deletion but that is not yet supported.

@andyzhangx It is mentioned in this bug description under step 2: ``` docker build -t registry . docker run -d -p5000:5000 \ -e REGISTRY_PROXY_REMOTEURL=https://registry-1.docker.io \ -e REGISTRY_STORAGE_CACHE_BLOBDESCRIPTOR=inmemory \ --name registry...

@andyxning Schema1 is disabled by default in Registry 2.7. You will need to enable it in config file: ```yaml compatibility: schema1: enabled: true ```

JSON RPC calls over HTTP are made using HTTP POST requests as the method information is stored in HTTP request body. HTTP response body contains JSON RPC response. Hence, any...