We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ba0719d + 2484190 commit 525894aCopy full SHA for 525894a
docs/RELEASE-NOTES.rst
@@ -3,6 +3,7 @@ Release Notes for BIG-IP Controller for Kubernetes
3
4
next-release
5
------------
6
+* :issues: `810` - Controller deletes services and recreates during bigip-ctlr pod restart
7
8
v1.7.1
9
------
pkg/appmanager/appManager.go
@@ -765,6 +765,8 @@ func (appMgr *Manager) virtualServerWorker() {
765
func (appMgr *Manager) processNextVirtualServer() bool {
766
key, quit := appMgr.vsQueue.Get()
767
if !appMgr.initialState && appMgr.processedItems == 0 {
768
+ //TODO: Properly handlle queueLen assessment and remove Sleep function
769
+ time.Sleep(1 * time.Second)
770
appMgr.queueLen = appMgr.vsQueue.Len()
771
}
772
if quit {
0 commit comments