mirror of
https://github.com/GAM-team/GAM.git
synced 2026-07-04 04:41:35 +00:00
Fixed bug in gam create inboundssoprofile that caused a trap.
This commit is contained in:
@@ -2,6 +2,12 @@
|
|||||||
|
|
||||||
Merged GAM-Team version
|
Merged GAM-Team version
|
||||||
|
|
||||||
|
6.80.19
|
||||||
|
|
||||||
|
Fixed bug in `gam create inboundssoprofile` that caused a trap.
|
||||||
|
|
||||||
|
Upgraded to OpenSSL 3.3.2 where possible.
|
||||||
|
|
||||||
6.80.18
|
6.80.18
|
||||||
|
|
||||||
Updated `gam print|show admins` to handle the following error:
|
Updated `gam print|show admins` to handle the following error:
|
||||||
|
|||||||
@@ -44566,7 +44566,7 @@ def _showInboundSSOProfile(profile, FJQC, i=0, count=0):
|
|||||||
Ind.Decrement()
|
Ind.Decrement()
|
||||||
|
|
||||||
def _processInboundSSOProfileResult(result, returnNameOnly, kvlist, function):
|
def _processInboundSSOProfileResult(result, returnNameOnly, kvlist, function):
|
||||||
if result['done']:
|
if result.get('done', False):
|
||||||
if 'error' not in result:
|
if 'error' not in result:
|
||||||
if 'response' in result:
|
if 'response' in result:
|
||||||
if not returnNameOnly:
|
if not returnNameOnly:
|
||||||
|
|||||||
Reference in New Issue
Block a user