]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
Change stray "shares_of_happiness" to "servers_of_happiness"
authorKevan Carstensen <kevan@isnotajoke.com>
Mon, 16 Nov 2009 22:24:59 +0000 (15:24 -0700)
committerKevan Carstensen <kevan@isnotajoke.com>
Mon, 16 Nov 2009 22:24:59 +0000 (15:24 -0700)
docs/architecture.txt
src/allmydata/immutable/upload.py
src/allmydata/interfaces.py
src/allmydata/test/test_encode.py

index 3d4d90c017727e66349b0884fdbb313f13fcf6f2..f7f00b4ae8e6a30d78c1c7eb7a67405df0c1479b 100644 (file)
@@ -187,7 +187,7 @@ place a quantity known as "servers of happiness" that each map to a unique
 server, we'll do the upload anyways. If we cannot place at least this many
 in this way, the upload is declared a failure.
 
-The current defaults use k=3, shares_of_happiness=7, and N=10, meaning that
+The current defaults use k=3, servers_of_happiness=7, and N=10, meaning that
 we'll try to place 10 shares, we'll be happy if we can place shares on enough
 servers that there are 7 different servers, the correct functioning of any 3 of
 which guarantee the availability of the file, and we need to get back any 3 to
index 70b7d6d6f018e15d94fc2bd53514ecffe2f25d8a..3477ed5f8b21ee54deeb19271a805c5a051bcb87 100644 (file)
@@ -408,7 +408,7 @@ class Tahoe2PeerSelector:
                 pass
             else:
                 # No more peers, so this upload might fail (it depends upon
-                # whether we've hit shares_of_happiness or not). Log the last
+                # whether we've hit servers_of_happiness or not). Log the last
                 # failure we got: if a coding error causes all peers to fail
                 # in the same way, this allows the common failure to be seen
                 # by the uploader and should help with debugging
index 5b82f8165e5bb234c4f82f2b01e0283d1220aaaa..42a188ccc5f2adcb0b3326fe703001ae2f4f955a 100644 (file)
@@ -806,7 +806,7 @@ class IMutableFileNode(IFileNode):
 
 class NotEnoughSharesError(Exception):
     """Download was unable to get enough shares, or upload was unable to
-    place 'shares_of_happiness' shares."""
+    place 'servers_of_happiness' shares."""
 
 class NoSharesError(Exception):
     """Upload or Download was unable to get any shares at all."""
@@ -1305,7 +1305,7 @@ class IEncoder(Interface):
                          pushed.
 
         'share_counts': return a tuple describing how many shares are used:
-                        (needed_shares, shares_of_happiness, total_shares)
+                        (needed_shares, servers_of_happiness, total_shares)
 
         'num_segments': return an int with the number of segments that
                         will be encoded.
index fb290a00ce97120fbfa8efc5872afe4bcb1b343d..36a854ea9008651736b2ab2be9f5d501335debc1 100644 (file)
@@ -770,7 +770,7 @@ class Roundtrip(unittest.TestCase, testutil.ShouldFailMixin):
     def test_lost_one_shareholder(self):
         # we have enough shareholders when we start, but one segment in we
         # lose one of them. The upload should still succeed, as long as we
-        # still have 'shares_of_happiness' peers left.
+        # still have 'servers_of_happiness' peers left.
         modemap = dict([(i, "good") for i in range(9)] +
                        [(i, "lost") for i in range(9, 10)])
         return self.send_and_recover((4,8,10), bucket_modes=modemap)
@@ -778,7 +778,7 @@ class Roundtrip(unittest.TestCase, testutil.ShouldFailMixin):
     def test_lost_one_shareholder_early(self):
         # we have enough shareholders when we choose peers, but just before
         # we send the 'start' message, we lose one of them. The upload should
-        # still succeed, as long as we still have 'shares_of_happiness' peers
+        # still succeed, as long as we still have 'servers_of_happiness' peers
         # left.
         modemap = dict([(i, "good") for i in range(9)] +
                        [(i, "lost-early") for i in range(9, 10)])