aviem-naturalint commented on a change in pull request #39:
URL: https://github.com/apache/incubator-liminal/pull/39#discussion_r630008312
##########
File path: liminal/core/environment.py
##########
@@ -24,10 +24,13 @@
DEFAULT_LIMINAL_HOME = os.path.expanduser('~/liminal_home')
DEFAULT_PIPELINES_SUBDIR = "pipelines"
LIMINAL_HOME_PARAM_NAME = "LIMINAL_HOME"
+LIMINAL_HOME_CLOUD_PARAM_NAME = "AIRFLOW__CORE__LIMINAL_HOME"
LIMINAL_VERSION_PARAM_NAME = 'LIMINAL_VERSION'
def get_liminal_home():
+ if os.environ.get(LIMINAL_HOME_CLOUD_PARAM_NAME):
Review comment:
```suggestion
if LIMINAL_HOME_CLOUD_PARAM_NAME in os.environ:
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]