06 Jul 2022 02:25 PM - last edited on 02 May 2023 02:47 PM by educampver
Solved! Go to Solution.
06 Jul 2022 02:27 PM - last edited on 02 May 2023 02:29 PM by educampver
If you want to reuse logic across function, please have a look at following article: https://developer.dynatrace.com/learn/reuse-code/
10 Jan 2023 07:48 AM
Calling your own functions from your own functions is an anti-pattern: You trigger a new invocation with all the HTTP overhead plus you pay for invocations. Sharing code across functions is the right way to do it.