Skip to content

Commit

Permalink
fix project membership rt settings
Browse files Browse the repository at this point in the history
  • Loading branch information
rstijerina committed Oct 31, 2024
1 parent 8685a68 commit cf96f7c
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions designsafe/apps/onboarding/steps/project_membership.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,12 @@ def prepare(self):
def get_tracker(self):
"""Get a RT client"""
return Rt(
settings.RT_HOST,
settings.RT_UN,
settings.RT_PW,
http_auth=HTTPBasicAuth(settings.RT_UN, settings.RT_PW),
settings.DJANGO_RT["RT_HOST"],
settings.DJANGO_RT["RT_UN"],
settings.DJANGO_RT["RT_PW"],
http_auth=HTTPBasicAuth(
settings.DJANGO_RT["RT_UN"], settings.DJANGO_RT["RT_PW"]
),
)

def is_project_member(self):
Expand Down

0 comments on commit cf96f7c

Please sign in to comment.