01_setup_datapusher.sh is broken
Open
- Dominant language
- Shell
- Stars
- 151
- Forks
- 280
- PR merge metrics
- No merged PRs in 30d
Description
The start up script (ckan-docker/ckan/docker-entrypoint.d) for datapusher is broken. It is checking whether the API Token is null, rather than the reverse.
This:
if [ -z "$CKAN__DATAPUSHER__API_TOKEN" ] ; then
Should be this:
if [ -n "$CKAN__DATAPUSHER__API_TOKEN" ] ; then
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.