inheritedTrafficGroup Can not be modified. Bug?
See original GitHub issueI am trying to change my logging profile
newAppSvc = mgmt.tm.sys.application.services.service.load(name=CURRENT_AS_NAAM, partition="Test")
newAppSvc.lists.append({"name": "sect_AdditionalFeatures__mchc_LoggingProfiles", "value": oldLoggingProfiles})
newAppSvc.update()
After the update the correct logging profile is added but the inheritedTrafficGroup is changed to false. I tried to reset it to true with the following code but had the same result:
newAppSvc.inheritedTrafficGroup='true'
newAppSvc.update()
Is there some way that I can use the update() function for this without it changing the inheritedTrafficGroup value?
Issue Analytics
- State:
- Created 5 years ago
- Comments:5 (3 by maintainers)
Top Results From Across the Web
K14650: When multiple iApps use the same virtual address ...
To work around this issue, you can disable inherited traffic group selection for the affected iApps. To do so, perform the following procedure:....
Read more >Item cannot be modified - Bug Report
Multiple items on my character can no longer be upgraded despite having all the prerequisites. I instead get an error saying ' item...
Read more >bigip_partition does not set description on the sys folder ...
Could the module be modified/augmented to set the "description" value for both of the corresponding configuration objects "auth partition" and " ...
Read more >Deploy an application Service from an iApp template via tmsh
First off Deploying an iApp from tmsh is not like deploying it from the gui. ... Then just tack these modified sections on...
Read more >Unable to modify my Khanjali and buggy vehicle ...
After some trail and error, more problems appear as the tank doesn't even show up on the vehicle management tab. Is there anything...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
modify(inheritedTrafficGroup=‘true’) you would use keyword arguments as a parameter
Please use modify() function instead, update() runs on PUT HTTP method and that causes undefined features to be replaced by default in BIGIP. Let me know if this works with modify()