Hello everyone!
I'm having a problem with the "Test Action" functionality of the "Custom Code" action in a ticket workflow.
Even after correctly configuring the "Properties to include in the code" and selecting a test ticket that has all the data, my Python script receives the input object as None.
My code is simply:
def main(event):
print("--- DADOS RECEBIDOS NO TESTE ---")
print(event.get('input'))
print("---------------------------------")
, and the test log shows None. Can anyone tell me why the data isn't printing correctly?
LOG:
--- DADOS RECEBIDOS NO TESTE ---
None
---------------------------------
Memory: 50/128 MB
Runtime: 1.94 ms