mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
Added ServiceError (KerberosError) and make rpc.KerbTransport raise it if appropriate
This commit is contained in:
committed by
Rob Crittenden
parent
114b6b8577
commit
0313f03277
@@ -98,11 +98,14 @@ class Command(plugable.Plugin):
|
||||
"""
|
||||
params = self.args_options_2_params(*args, **options)
|
||||
self.info(
|
||||
'%s(%s)', self.name, ', '.join(self._repr_iter(**params))
|
||||
'raw: %s(%s)', self.name, ', '.join(self._repr_iter(**params))
|
||||
)
|
||||
params = self.normalize(**params)
|
||||
params = self.convert(**params)
|
||||
params.update(self.get_default(**params))
|
||||
self.info(
|
||||
'processed: %s(%s)', self.name, ', '.join(self._repr_iter(**params))
|
||||
)
|
||||
self.validate(**params)
|
||||
(args, options) = self.params_2_args_options(**params)
|
||||
result = self.run(*args, **options)
|
||||
|
||||
Reference in New Issue
Block a user