Mar 27, 2026 - For details about updated CVE-2025-53521 (BIG-IP APM vulnerability), refer to K000156741.

Forum Discussion

karthik_sriniva's avatar
karthik_sriniva
Icon for Nimbostratus rankNimbostratus
Apr 06, 2005

How to Skip bunch of code

Hi,

 

Can any one let me know how to skip or prevent execution of block of code.

 

 

HTTP::release, will this acheive the same.

 

 

 

1 Reply

  • unRuleY_95363's avatar
    unRuleY_95363
    Historic F5 Account
    You pretty much have two choices: 1) comment out the block of code, but do to a Tcl bug, you need to be careful to not leave unbalanced braces as Tcl take a pass at checking the balance of braces without consideration to comments; 2) You can use an if statement to skip code, as in:
    if {0} { ... don't do this stuff ... }