Fixes references to populate lists task
This commit is contained in:
parent
94250dab42
commit
f7c8a550cf
4 changed files with 7 additions and 5 deletions
|
@ -13,7 +13,7 @@ def populate_lists_streams():
|
|||
print("This may take a long time! Please be patient.")
|
||||
for user in users:
|
||||
print(".", end="")
|
||||
lists_stream.populate_lists_stream_task.delay(user.id)
|
||||
lists_stream.populate_lists_task.delay(user.id)
|
||||
|
||||
|
||||
class Command(BaseCommand):
|
||||
|
|
|
@ -14,7 +14,7 @@ def populate_streams(stream=None):
|
|||
print("This may take a long time! Please be patient.")
|
||||
for user in users:
|
||||
print(".", end="")
|
||||
lists_stream.populate_lists_stream_task.delay(user.id)
|
||||
lists_stream.populate_lists_task.delay(user.id)
|
||||
for stream_key in streams:
|
||||
print(".", end="")
|
||||
activitystreams.populate_stream_task.delay(stream_key, user.id)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue