Created
January 27, 2016 10:51
-
-
Save dsuch/12c489e846e1173a48e4 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from zato.server.service import Service | |
class GetFullSecurityDefinitions(Service): | |
def handle(self): | |
for value in self.worker_store.request_dispatcher.url_data.basic_auth_config.values(): | |
self.logger.info('\n%s', value.config) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment