-
Notifications
You must be signed in to change notification settings - Fork 880
config.standalone is not loaded as True, but as 'True' causing issues #431
Comments
On Tue, Jun 17, 2014 at 04:35:51AM -0700, petarmaric wrote:
Or converting to a subclass of ConfigParser (a subclass so we can add |
I see that you've created 34dea1e which merely migitates this issue somewhat. It would be nice if the developers would reference the relevant issues in ther commit messages. |
This is just intended as a short term fix, we agree that there's a bigger issue at hand, please bear with us. |
Working on it :-) |
So there's now a "phantom" 0.7.3 release with a quick-fix to this issue. Why so secret? |
Phantom? Secret? Here's the tag: /~https://github.com/dotcloud/docker-registry/tree/0.7.3 Here's the CHANGELOG: /~https://github.com/dotcloud/docker-registry/blob/0.7.3/CHANGELOG.md Here's the PR with the change for it : #436 As stated earlier, this is a quick fix to alleviate the problem described here: #432 - which clearly states that 0.7.3 has been released. Now, about this ticket, as I said, I'm working on it for a better fix, and it will be closed when that work will be ready. Hope that addresses your concerns :-) |
Yes, I've seen all of those and thank you for the rapid quick-fix. I was just wondering why aren't the related issues referenced in commits (As in No quarrels with your effort and results, only the issue tracking process. |
I understand your frustration. A start would be to update CONTRIBUTE.md to clearly state said better commit guidelines. |
That was fixed by #444 |
Please observe that
config.load
returned'standalone': 'True'
. Looking at a8016be and other files you can seesomething is True
test are used extensively, however:Also when inspecting the HTTP headers:
We can see
X-Docker-Registry-Standalone
has been set toFalse
, seemingly ignoring theSTANDALONE
env variable.The solution is to properly convert a string into a boolean, as per http://stackoverflow.com/questions/715417/converting-from-a-string-to-boolean-in-python
The text was updated successfully, but these errors were encountered: