Skip to content

Commit

Permalink
Update harbor __init__ params
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristineTChen committed Aug 1, 2019
1 parent ed568dd commit 3fec271
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions harbor/datadog_checks/harbor/harbor.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@


class HarborCheck(AgentCheck):
def __init__(self, *args, **kwargs):
super(HarborCheck, self).__init__(*args, **kwargs)
def __init__(self, name, init_config, instances):
super(HarborCheck, self).__init__(name, init_config, instances)

# Prevent the use of Basic Auth using `username` and `password` from the config file.
del self.http.options['auth']
Expand Down

0 comments on commit 3fec271

Please sign in to comment.