Skip to content
This repository has been archived by the owner on May 1, 2024. It is now read-only.

Commit

Permalink
percolate python_version down to the python-executable hadoop config
Browse files Browse the repository at this point in the history
  • Loading branch information
pwnage101 committed Jul 26, 2019
1 parent 62dbed0 commit 3daf46d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
2 changes: 2 additions & 0 deletions edx/analytics/tasks/launchers/remote.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,8 @@ def run_task_playbook(inventory, arguments, uid):
if arguments.workflow_profiler:
env_vars['WORKFLOW_PROFILER'] = arguments.workflow_profiler
env_vars['WORKFLOW_PROFILER_PATH'] = log_dir
if arguments.python_version:
env_vars['HADOOP_PYTHON_EXECUTABLE'] = python_version

env_var_string = ' '.join('{0}={1}'.format(k, v) for k, v in env_vars.iteritems())

Expand Down
3 changes: 3 additions & 0 deletions edx/analytics/tasks/tests/acceptance/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,9 @@ def setUp(self):
self.warehouse_path = url_path_join(self.test_root, 'warehouse')
self.edx_rest_api_cache_root = url_path_join(self.test_src, 'edx-rest-api-cache')
task_config_override = {
'hadoop': {
'python-executable': os.environ('HADOOP_PYTHON_EXECUTABLE', '/usr/bin/python')
}
'hive': {
'database': database_name,
'warehouse_path': self.warehouse_path
Expand Down

0 comments on commit 3daf46d

Please sign in to comment.