Skip to content
Snippets Groups Projects

Add redis auth credentials to celery backend config.

Merged Neda Moeini requested to merge feature/DBOARD3-752 into develop

Merge request reports

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
41 42 # assume this means hostname is an ipv6 address
42 43 _broker_hostname = f'[{_broker_hostname}]'
43 44
44 broker_url = result_backend = (f'{_broker_scheme}://{_broker_hostname}'
45 f':{_broker_port}/{_broker_db_index}')
45 broker_url = result_backend = (
46 f'{_broker_scheme}://'
47 f'{"" if not _broker_password else f":{_broker_password}@"}'
48 f'{_broker_hostname}:{_broker_port}/{_broker_db_index}'
49 )
50
46 51 logger.debug('broker_url: %r' % broker_url)
  • Neda Moeini added 1 commit

    added 1 commit

    Compare with previous version

  • Robert Latta mentioned in commit 737df390

    mentioned in commit 737df390

  • merged

  • Please register or sign in to reply
    Loading