mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-06-17 11:59:12 -04:00
Log saml assertions rather than the whole response
... since the whole response is huge. We even need to break up the assertions, since kibana otherwise truncates them.
This commit is contained in:
parent
14d8f342d5
commit
acc7820574
3 changed files with 72 additions and 1 deletions
|
@ -33,3 +33,16 @@ def batch_iter(iterable: Iterable[T], size: int) -> Iterator[Tuple[T]]:
|
|||
sourceiter = iter(iterable)
|
||||
# call islice until it returns an empty tuple
|
||||
return iter(lambda: tuple(islice(sourceiter, size)), ())
|
||||
|
||||
|
||||
ISeq = TypeVar("ISeq", bound=Sequence, covariant=True)
|
||||
|
||||
|
||||
def chunk_seq(iseq: ISeq, maxlen: int) -> Iterable[ISeq]:
|
||||
"""Split the given sequence into chunks of the given size
|
||||
|
||||
The last chunk may be shorter than the given size.
|
||||
|
||||
If the input is empty, no chunks are returned.
|
||||
"""
|
||||
return (iseq[i : i + maxlen] for i in range(0, len(iseq), maxlen))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue