Skip to content

Commit

Permalink
Use newest servicelayer
Browse files Browse the repository at this point in the history
  • Loading branch information
pudo committed Jun 17, 2019
1 parent 1417a44 commit 351f64c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
6 changes: 4 additions & 2 deletions aleph/logic/aggregator.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,7 @@ def get_aggregator(collection):
def drop_aggregator(collection):
"""Clear all the documents from the balkhash dataset."""
aggregator = get_aggregator(collection)
aggregator.delete()
aggregator.close()
try:
aggregator.delete()
finally:
aggregator.close()
4 changes: 2 additions & 2 deletions requirements-toolkit.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ urlnormalizer==1.2.3
followthemoney==1.13.2
followthemoney-util==1.13.2
fingerprints==0.6.5
servicelayer[google]==1.3.1
servicelayer[amazon]==1.3.1
servicelayer[google]==1.3.2
servicelayer[amazon]==1.3.2
normality==1.0.0
pantomime==0.3.3
alephclient==1.1.5
Expand Down
4 changes: 2 additions & 2 deletions services/ingest-file/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
banal>=0.4.2
normality>=1.0.0
pantomime>=0.3.3
servicelayer[google]==1.3.1
servicelayer[amazon]==1.3.1
servicelayer[google]==1.3.2
servicelayer[amazon]==1.3.2
balkhash[leveldb]==0.5.1
balkhash[sql]==0.5.1
followthemoney>=1.13.2
Expand Down

0 comments on commit 351f64c

Please sign in to comment.