Skip to content

Commit f908453

Browse files
committed
fix: add logout argument to ping frontend
1 parent 321be65 commit f908453

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/satosa/frontends/ping.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ class PingFrontend(satosa.frontends.base.FrontendModule):
1515
200 OK, intended to be used as a simple heartbeat monitor.
1616
"""
1717

18-
def __init__(self, auth_req_callback_func, internal_attributes, config, base_url, name):
19-
super().__init__(auth_req_callback_func, internal_attributes, base_url, name)
18+
def __init__(self, auth_req_callback_func, logout_callback_func, internal_attributes, config, base_url, name):
19+
super().__init__(auth_req_callback_func, logout_callback_func, internal_attributes, base_url, name)
2020

2121
self.config = config
2222

0 commit comments

Comments
 (0)