Fix _ping endpoint to match the new spec

This commit is contained in:
Joseph Schorr 2014-11-07 10:05:05 -05:00
parent 9d1b6d829a
commit 8548538516

View file

@ -58,5 +58,5 @@ location /v1/_ping {
add_header Content-Type text/plain;
add_header X-Docker-Registry-Version 0.6.0;
add_header X-Docker-Registry-Standalone 0;
return 200 'okay';
return 200 'true';
}