Skip to content

Commit

Permalink
OpenConceptLab/ocl_issues#725 | parallel import can support custom qu…
Browse files Browse the repository at this point in the history
…eue name
  • Loading branch information
snyaggarwal committed May 3, 2021
1 parent 5956790 commit 26184ea
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions core/importers/urls.py
Expand Up @@ -14,6 +14,11 @@
views.BulkImportParallelInlineView.as_view(),
name='bulk-import-inline'
),
re_path(
r'^bulk-import-parallel-inline/(?P<import_queue>{pattern})/$'.format(pattern=NAMESPACE_PATTERN),
views.BulkImportParallelInlineView.as_view(),
name='bulk-import-inline'
),
re_path(r'^bulk-import/file-url/$', views.BulkImportFileURLView.as_view(), name='bulk-import-file-url'),
re_path(
r"^bulk-import/(?P<import_queue>{pattern})/file-url/$".format(pattern=NAMESPACE_PATTERN),
Expand Down

0 comments on commit 26184ea

Please sign in to comment.