mirror of
https://github.com/internetarchive/brozzler.git
synced 2025-05-02 22:55:04 -04:00
Inccognito messes with currently running chromium instances, disable it
This commit is contained in:
parent
0c25bbb4c3
commit
bd0183058d
4 changed files with 7 additions and 7 deletions
|
@ -9,8 +9,8 @@ import threading
|
|||
from kombu import Connection, Exchange, Queue
|
||||
logging.basicConfig(level=logging.INFO)
|
||||
umbra_exchange = Exchange('umbra', 'direct', durable=True)
|
||||
with Connection('amqp://guest:guest@localhost:5672//') as conn:
|
||||
with Connection(sys.argv[1]) as conn:
|
||||
producer = conn.Producer(serializer='json')
|
||||
for url in sys.argv[1:]:
|
||||
for url in sys.argv[2:]:
|
||||
producer.publish({'url': url}, 'url', exchange=umbra_exchange)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue