From 4fb301b5c863927f5500dc72f2235b4363326e39 Mon Sep 17 00:00:00 2001 From: Tim Boring <tjb@google.com> Date: Fri, 8 May 2009 14:10:42 -0400 Subject: [PATCH] Minor patch to rapi documentation Minor patch to clarify the URL necessary for accessing the RAPI. Signed-off-by: Iustin Pop <iustin@google.com> Reviewed-by: Iustin Pop <iustin@google.com> --- doc/rapi.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/rapi.rst b/doc/rapi.rst index c2ed7c459..8dc8f3b72 100644 --- a/doc/rapi.rst +++ b/doc/rapi.rst @@ -49,7 +49,7 @@ Python :: import urllib2 - f = urllib2.urlopen('https://CLUSTERNAME:5080/info') + f = urllib2.urlopen('https://CLUSTERNAME:5080/2/info') print f.read() @@ -63,7 +63,7 @@ JavaScript :: - var url = 'https://CLUSTERNAME:5080/info'; + var url = 'https://CLUSTERNAME:5080/2/info'; var info; var xmlreq = new XMLHttpRequest(); xmlreq.onreadystatechange = function () { -- GitLab