Skip to content
Snippets Groups Projects
Commit ce8b0b28 authored by Erik Johnston's avatar Erik Johnston
Browse files

Remove accidentally committed debug hardcode hack

parent 1ccaea5b
No related branches found
No related tags found
No related merge requests found
...@@ -184,10 +184,11 @@ class Porter(object): ...@@ -184,10 +184,11 @@ class Porter(object):
if table == "sent_transactions": if table == "sent_transactions":
# This is a big table, and we really only need some of the recent # This is a big table, and we really only need some of the recent
# data # data
yield self.postgres_store.execute(delete_all) yield self.postgres_store.execute(delete_all)
# Only save things from the last day # Only save things from the last day
yesterday = 1429114568820 #int(time.time()*1000) - 86400000 yesterday = int(time.time()*1000) - 86400000
# And save the max transaction id from each destination # And save the max transaction id from each destination
select = ( select = (
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment