Skip to content

Commit

Permalink
Merge pull request #6003 from vdesabou/flink-integration
Browse files Browse the repository at this point in the history
  • Loading branch information
vdesabou authored Nov 21, 2024
2 parents f0b01eb + a413be1 commit 5db3f21
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion scripts/flink_download_connectors.sh
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,11 @@ else
done

# Set the environment variable 'connectors'
flink_connectors="wget -P /opt/flink/lib ${connector_urls[*]} && "
if [ -z "${connector_urls[*]}" ]; then
flink_connectors=" "
else
flink_connectors="wget -P /opt/flink/lib ${connector_urls[*]} && "
fi
export flink_connectors

log "Environment variable 'flink_connectors' set with the following URLs which will be downloaded for the containers:"
Expand Down

0 comments on commit 5db3f21

Please sign in to comment.