Commit 9cbae5d8 authored by Rami Berman's avatar Rami Berman
Browse files

Update app.go

No related merge requests found
Showing with 2 additions and 2 deletions
+2 -2
...@@ -28,7 +28,7 @@ var ( ...@@ -28,7 +28,7 @@ var (
) )
func RunInApiServerMode(namespace string) *gin.Engine { func RunInApiServerMode(namespace string) *gin.Engine {
//configureBasenineServer(shared.BasenineHost, shared.BaseninePort) configureBasenineServer(shared.BasenineHost, shared.BaseninePort)
startTime = time.Now().UnixNano() / int64(time.Millisecond) startTime = time.Now().UnixNano() / int64(time.Millisecond)
api.StartResolving(namespace) api.StartResolving(namespace)
...@@ -36,7 +36,7 @@ func RunInApiServerMode(namespace string) *gin.Engine { ...@@ -36,7 +36,7 @@ func RunInApiServerMode(namespace string) *gin.Engine {
filteredOutputItemsChannel := make(chan *tapApi.OutputChannelItem) filteredOutputItemsChannel := make(chan *tapApi.OutputChannelItem)
enableExpFeatureIfNeeded() enableExpFeatureIfNeeded()
go FilterItems(outputItemsChannel, filteredOutputItemsChannel) go FilterItems(outputItemsChannel, filteredOutputItemsChannel)
//go api.StartReadingEntries(filteredOutputItemsChannel, nil, ExtensionsMap) go api.StartReadingEntries(filteredOutputItemsChannel, nil, ExtensionsMap)
syncEntriesConfig := getSyncEntriesConfig() syncEntriesConfig := getSyncEntriesConfig()
if syncEntriesConfig != nil { if syncEntriesConfig != nil {
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment