Skip to content

Commit

Permalink
Fix bug with bts exec command
Browse files Browse the repository at this point in the history
  • Loading branch information
erssebaggala committed Jan 10, 2019
1 parent 3e47b17 commit 6ef8413
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bts.sh
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ do
exec)
if [[ $2 != "" ]]
then
docker-compose stop $*
docker-compose $*
exit 0
fi

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def parse_and_import_huawei_gexport(parent_dag_name, child_dag_name, start_date,

parse_huawei_gexport_cm_files = BashOperator(
task_id='parse_huawei_gexport_cm_files',
bash_command='java -jar /mediation/bin/boda-huaweicmobjectparser.jar /mediation/data/cm/huawei/raw/gexport /mediation/data/cm/huawei/parsed/gexport /mediation/conf/cm/huawei_gexport_parser.cfg',
bash_command='java -jar /mediation/bin/boda-huaweicmobjectparser.jar -i /mediation/data/cm/huawei/raw/gexport -o /mediation/data/cm/huawei/parsed/gexport -c /mediation/conf/cm/huawei_gexport_parser.cfg',
dag=dag)

import_nbi_csv = BashOperator(
Expand Down

0 comments on commit 6ef8413

Please sign in to comment.