Opened 11 years ago
Closed 11 years ago
#2122 closed defect (done)
Exception appears on multiple refreshes of Hive Job Manager
Reported by: | pfleck | Owned by: | ascheibe |
---|---|---|---|
Priority: | medium | Milestone: | HeuristicLab 3.3.10 |
Component: | Hive.Client | Version: | 3.3.9 |
Keywords: | Cc: |
Description
When refreshing the jobs in Hive Job Manager with incorrect user/password multiple times, a TargetInvocationException appears instead of "username or password is wrong"-message.
Change History (6)
comment:1 Changed 11 years ago by pfleck
- Component changed from ### Undefined ### to Hive.Server
- Status changed from new to accepted
comment:2 Changed 11 years ago by pfleck
- Component changed from Hive.Server to Hive.Client
comment:3 Changed 11 years ago by pfleck
comment:4 Changed 11 years ago by pfleck
- Milestone changed from HeuristicLab 3.3.x Backlog to HeuristicLab 3.3.10
- Owner changed from pfleck to ascheibe
- Status changed from accepted to reviewing
comment:5 Changed 11 years ago by ascheibe
- Status changed from reviewing to readytorelease
comment:6 Changed 11 years ago by ascheibe
- Resolution set to done
- Status changed from readytorelease to closed
Note: See
TracTickets for help on using
tickets.
r10171
Problem occurs when the retry counter in the HiveServiceLocator is exceeded. The retry counter is incremented on all exceptions and therefore is incremented on security exceptions (user/password wrong) as well.
Changed the caught exception to EndpointNotFoundException to avoid increment of the retry counter on wrong user/password.