From 460d403cdd72440a386fe99edd6bf54823098987 Mon Sep 17 00:00:00 2001 From: Jedrzej Nowak Date: Tue, 13 Oct 2015 13:57:31 +0200 Subject: [PATCH] Changed torrent tracker to public --- examples/torrent/example.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/examples/torrent/example.py b/examples/torrent/example.py index 6d8dabc4..3719105e 100644 --- a/examples/torrent/example.py +++ b/examples/torrent/example.py @@ -33,12 +33,13 @@ def run(): hosts = vr.create('hosts_file', 'resources/hosts_file', {})[0] - # let's add torrent transport for hosts file deployment (useless in real - # life) + # let's add torrent transport for hosts file deployment (useless in real life) torrent_transport = vr.create('torrent_transport', 'resources/transport_torrent', - {'trackers': ['http://tracker01-bud.infra.mirantis.net:8080']})[0] + {'trackers': ['udp://open.demonii.com:1337', + 'udp://tracker.openbittorrent.com:80']})[0] + # you could use any trackers as you want transports_for_torrent = vr.create( 'transports_for_torrent', 'resources/transports')[0]