Skip to content

Commit 3c15e1c

Browse files
committed
Merge branch 'develop' of github.com:unity-sds/unity-sps into 419-reduce-ops-costs
2 parents bdb4234 + 93462b8 commit 3c15e1c

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
- SPS Version 3.1.0 (new)
1111
- OGC API Version 2.1.0 (unchanged)
12-
- OGC Python Client Version 2.0.1 (unchanged)
12+
- OGC Python Client Version 2.1.0 (unchanged)
1313

1414
## Overview
1515

@@ -77,6 +77,7 @@ Additionally, there are a number of small adjustments:
7777
- [[New Feature]: Enhancements to CWL Modularized DAG](https://github.com/unity-sds/unity-sps/issues/276)
7878
- [[New Feature]: Modularize the ASIPS workflows](https://github.com/unity-sds/unity-sps/issues/320)
7979
- [[New Feature]: Increase test coverage for CWL Modular DAG](https://github.com/unity-sds/unity-sps/issues/394)
80+
- [[Bug]: Determine if the use of XCOM to hold successful features is causing failures when running DAGs](https://github.com/unity-sds/unity-sps/issues/439)
8081
- EPIC: Demonstrate Space Use Case
8182
- [[New Feature]: Demonstrate scalability of Space Use Case](https://github.com/unity-sds/unity-sps/issues/285)
8283

airflow/docker/cwl/docker_cwl_entrypoint_modular.sh

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -166,14 +166,15 @@ failed_features=$(cat $failed_features_file | jq '.')
166166
echo Failed features:
167167
echo $failed_features | jq '.'
168168

169-
# Save catalog.json in a location where it will be picked up by Airflow XCOM mechanism
170-
mkdir -p /airflow/xcom/
171-
cp $successful_features_file /airflow/xcom/return.json
169+
# # Save catalog.json in a location where it will be picked up by Airflow XCOM mechanism
170+
# mkdir -p /airflow/xcom/
171+
# cp $successful_features_file /airflow/xcom/return.json
172172

173173
# Optionally, save the requested output file to a location
174174
# where it will be picked up by the Airflow XCOM mechanism
175175
# Note: the content of the file MUST be valid JSON or XCOM will fail.
176176
if [ ! -z "${json_output}" -a "${json_output}" != " " ]; then
177+
mkdir -p /airflow/xcom/
177178
cp ${json_output} /airflow/xcom/return.json
178179
fi
179180

0 commit comments

Comments
 (0)