projects
/
skytools.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
285eae6
)
londiste: forgot to set schema for serialconsumer
author
Marko Kreen
<markokr@gmail.com>
Mon, 30 Jul 2007 22:43:27 +0000
(22:43 +0000)
committer
Marko Kreen
<markokr@gmail.com>
Mon, 30 Jul 2007 22:43:27 +0000
(22:43 +0000)
python/londiste/playback.py
patch
|
blob
|
blame
|
history
diff --git
a/python/londiste/playback.py
b/python/londiste/playback.py
index 70617a904bff06a4d722640490463a9b550923eb..82c7d0c03a070f06ac77640c56f738cbbc50ecd5 100644
(file)
--- a/
python/londiste/playback.py
+++ b/
python/londiste/playback.py
@@
-223,8
+223,9
@@
class Replicator(pgq.SerialConsumer):
def __init__(self, args):
pgq.SerialConsumer.__init__(self, 'londiste', 'provider_db', 'subscriber_db', args)
- # tick table in dst for SerialConsumer(). keep londiste stuff under one schema
- self.dst_completed_table = "londiste.completed"
+ # where get/set_last_tick() function reside for SerialConsumer().
+ # default is pgq_ext, but lets keep londiste code under one schema
+ self.dst_schema = "londiste"
self.table_list = []
self.table_map = {}