Changeset 4f717ba in trunk for src/allmydata/test/test_introducer.py
- Timestamp:
- 2016-09-13T00:15:52Z (9 years ago)
- Branches:
- master
- Children:
- 4ae574c
- Parents:
- a8899c8
- git-author:
- David Stainton <dstainton415@…> (2016-09-12 23:01:23)
- git-committer:
- David Stainton <dstainton415@…> (2016-09-13 00:15:52)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified src/allmydata/test/test_introducer.py ¶
ra8899c8 r4f717ba 728 728 fileutil.make_dirs(basedir) 729 729 cache_filepath = FilePath(os.path.join(basedir, "private", 730 "introducer_ cache.yaml"))730 "introducer_default_cache.yaml")) 731 731 732 732 # if storage is enabled, the Client will publish its storage server … … 742 742 743 743 c = TahoeClient(basedir) 744 ic = c.introducer_client 744 ic = c.introducer_clients[0] 745 745 sk_s, vk_s = keyutil.make_keypair() 746 746 sk, _ignored = keyutil.parse_privkey(sk_s) … … 810 810 811 811 c2 = TahoeClient(basedir) 812 c2.introducer_client ._load_announcements()812 c2.introducer_clients[0]._load_announcements() 813 813 yield flushEventualQueue() 814 814 self.assertEqual(c2.storage_broker.get_all_serverids(), … … 831 831 832 832 c = TahoeClient(basedir) 833 ic = c.introducer_client 833 ic = c.introducer_clients[0] 834 834 outbound = ic._outbound_announcements 835 835 published = ic._published_announcements
Note: See TracChangeset
for help on using the changeset viewer.