Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions utils/_features.py
Original file line number Diff line number Diff line change
Expand Up @@ -2568,20 +2568,20 @@ def resource_renaming(test_object):
return _mark_test_object(test_object, feature_id=491, owner=_Owner.asm)

@staticmethod
def feature_flag_exposure(test_object):
"""Feature Flag Exposure
def appsec_extended_data_collection(test_object):
"""AppSec supports extended data collection including headers and body

https://feature-parity.us1.prod.dog/#/?feature=492
"""
return _mark_test_object(test_object, feature_id=492, owner=_Owner.feature_flag_exposure)
return _mark_test_object(test_object, feature_id=492, owner=_Owner.asm)

@staticmethod
def appsec_extended_data_collection(test_object):
"""AppSec supports extended data collection including headers and body
def feature_flag_exposure(test_object):
"""Feature Flag Exposure

https://feature-parity.us1.prod.dog/#/?feature=492
https://feature-parity.us1.prod.dog/#/?feature=494
"""
return _mark_test_object(test_object, feature_id=492, owner=_Owner.asm)
return _mark_test_object(test_object, feature_id=494, owner=_Owner.feature_flag_exposure)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

494 is for #494: DD_TRACE_ACTIVITY_LISTENER_ENABLED


@staticmethod
def agent_data_integrity(test_object):
Expand Down
Loading