aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/kafkacomm/publisher/pdp-heartbeat.go
diff options
context:
space:
mode:
authorShalini Shivam <ss00765416@techmahindra.com>2024-12-13 15:56:10 +0100
committerShalini Shivam <ss00765416@techmahindra.com>2024-12-16 11:09:20 +0100
commit83f8646f702f9cffbd25d8124476465ee8f94af0 (patch)
tree7ff6b73eaf973a16bdbc9f6b5fa33d2a2d9727f5 /pkg/kafkacomm/publisher/pdp-heartbeat.go
parentd2d039fc4525943ea0d16e49e77c830a8e5c0ecc (diff)
Support Output response to OPA query
Description : For details refer https://lf-onap.atlassian.net/wiki/spaces/DW/pages/51150925/OPA+PDP Issue-ID: POLICY-5204 Change-Id: Id6d51fa83957fb560afec2d85cc0d45d6dda6900 Signed-off-by: Shalini Shivam <ss00765416@techmahindra.com>
Diffstat (limited to 'pkg/kafkacomm/publisher/pdp-heartbeat.go')
-rw-r--r--pkg/kafkacomm/publisher/pdp-heartbeat.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkg/kafkacomm/publisher/pdp-heartbeat.go b/pkg/kafkacomm/publisher/pdp-heartbeat.go
index f814992..fbd07d6 100644
--- a/pkg/kafkacomm/publisher/pdp-heartbeat.go
+++ b/pkg/kafkacomm/publisher/pdp-heartbeat.go
@@ -1,6 +1,6 @@
// -
// ========================LICENSE_START=================================
-// Copyright (C) 2024: Deutsche Telecom
+// Copyright (C) 2024: Deutsche Telekom
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -13,6 +13,7 @@
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
+// SPDX-License-Identifier: Apache-2.0
// ========================LICENSE_END===================================
// The publisher package is responsible for managing periodic heartbeat messages for the
@@ -55,7 +56,7 @@ func StartHeartbeatIntervalTimer(intervalMs int64, s PdpStatusSender) {
if ticker != nil {
ticker.Stop()
}
- // StopTicker()
+ // StopTicker()
currentInterval = intervalMs
ticker = time.NewTicker(time.Duration(intervalMs) * time.Millisecond)