Commit f694e7fe by Carlos Andrés Rocha

Rename local task launcher

Change-Id: Ibd57c3dbd59449666b76583a63f7795bf9418f18
parent 84925186
...@@ -63,3 +63,7 @@ def main(): ...@@ -63,3 +63,7 @@ def main():
# Launch Luigi using the default builder # Launch Luigi using the default builder
luigi.run() luigi.run()
if __name__ == '__main__':
main()
...@@ -126,3 +126,7 @@ def run_ansible(args, verbose, executable='ansible'): ...@@ -126,3 +126,7 @@ def run_ansible(args, verbose, executable='ansible'):
proc.wait() proc.wait()
return proc.returncode return proc.returncode
if __name__ == '__main__':
main()
...@@ -17,7 +17,7 @@ data_files = ...@@ -17,7 +17,7 @@ data_files =
[entry_points] [entry_points]
console_scripts = console_scripts =
launch-task = edx.analytics.tasks.launchers.main:main launch-task = edx.analytics.tasks.launchers.local:main
remote-task = edx.analytics.tasks.launchers.remote:main remote-task = edx.analytics.tasks.launchers.remote:main
edx.analytics.tasks = edx.analytics.tasks =
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment