Skip to content

Commit

Permalink
test: update logging
Browse files Browse the repository at this point in the history
  • Loading branch information
AlvinSchiller committed Apr 17, 2024
1 parent f7c416f commit a9bccc5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions installation/routines/setup_jukebox_core.sh
Original file line number Diff line number Diff line change
Expand Up @@ -120,12 +120,12 @@ _jukebox_core_check() {
local pip_modules=$(get_args_from_file "${INSTALLATION_PATH}/requirements.txt")
verify_pip_modules $pip_modules

log " Verify ZMQ has 'DRAFT-API' activated"
local zmq_hasDraftApi=$(python -c 'import zmq; print(f"{zmq.DRAFT_API}")')
print_lc "has draft API: ${zmq_hasDraftApi}"
if [[ "${zmq_hasDraftApi}" != "True" ]]; then
exit_on_error "ERROR: ZMQ does not have DRAFT-APIs activated!"
exit_on_error "ERROR: ZMQ has 'DRAFT-API' not activated!"
else
print_lc "draft API activ!"
log " CHECK"
fi

verify_files_chmod_chown 644 "${CURRENT_USER}" "${CURRENT_USER_GROUP}" "${JUKEBOX_PULSE_CONFIG}"
Expand Down

0 comments on commit a9bccc5

Please sign in to comment.