Fixes references to populate lists task

This commit is contained in:
Mouse Reeve
2021-12-10 09:34:17 -08:00
parent 94250dab42
commit f7c8a550cf
4 changed files with 7 additions and 5 deletions

View File

@ -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):

View File

@ -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)