fix: [Crawler] incorrect config

This commit is contained in:
Terrtia 2019-07-10 09:42:20 +02:00
parent cefe8063e7
commit 26a4c7fd2c
No known key found for this signature in database
GPG key ID: 1E1B1F50D84613D0

View file

@ -316,7 +316,7 @@ if __name__ == '__main__':
# Setup the I/O queues # Setup the I/O queues
p = Process(config_section) p = Process(config_section)
splash_url = '{}:{}'.format( p.config.get("Crawler", "splash_url_onion"), splash_port) splash_url = '{}:{}'.format( p.config.get("Crawler", "splash_url"), splash_port)
print('splash url: {}'.format(splash_url)) print('splash url: {}'.format(splash_url))
PASTES_FOLDER = os.path.join(os.environ['AIL_HOME'], p.config.get("Directories", "pastes")) PASTES_FOLDER = os.path.join(os.environ['AIL_HOME'], p.config.get("Directories", "pastes"))