]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
server_version_on_welcome_page.dpatch.txt
authorfreestorm77 <freestorm77@gmail.com>
Sat, 5 Jun 2010 19:17:21 +0000 (12:17 -0700)
committerfreestorm77 <freestorm77@gmail.com>
Sat, 5 Jun 2010 19:17:21 +0000 (12:17 -0700)
- The storage server version is 0 for all storage nodes in the Welcome Page

src/allmydata/web/root.py

index 59ebfbdb55ed84f2712209e65b4681ef823f1bfe..3af15d9273e83d83df292eb6e37748473f16d550 100644 (file)
@@ -273,7 +273,7 @@ class Root(rend.Page):
             since = descriptor.get_last_loss_time()
         announced = descriptor.get_announcement_time()
         announcement = descriptor.get_announcement()
-        version = announcement["version"]
+        version = announcement["my-version"]
         service_name = announcement["service-name"]
 
         TIME_FORMAT = "%H:%M:%S %d-%b-%Y"