Skip to content

Commit

Permalink
Limiting graph size at 2M by default
Browse files Browse the repository at this point in the history
  • Loading branch information
alterakey committed Nov 26, 2023
1 parent 86462f3 commit da372b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion trueseeing/core/flow/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@

class DataFlows:
_stash: Final[Dict[int, str]] = dict()
_default_max_graph_size: Final[int] = 48 * 1048576
_default_max_graph_size: Final[int] = 2 * 1048576

_max_graph_size: int = _default_max_graph_size

Expand Down

0 comments on commit da372b4

Please sign in to comment.