Edit FSM transitions to minimize reset events causing slow loading

This commit is contained in:
Kristóf Tóth 2018-01-31 13:24:38 +01:00
parent 2ad42dbaa7
commit 1b49386da6
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ class SQLInjectionFSM(FSMBase):
{'trigger': 'anchor_webide', 'source': 'commented_code', 'dest': 'sql_with_substitutions'},
{'trigger': 'anchor_logger', 'source': 'sql_with_substitutions', 'dest': 'sql_output'},
{'trigger': 'anchor_logger', 'source': 'sql_output', 'dest': 'end'},
{'trigger': 'reset', 'source': '*', 'dest': 'start'},
{'trigger': 'reset', 'source': 'end', 'dest': 'start'},
]
def __init__(self):