updated the value of ExecutionID in LocalMonitor constructor

This commit is contained in:
pb
2025-05-12 12:35:49 +02:00
parent 6fce8f3aac
commit bcc024caef
3 changed files with 12 additions and 10 deletions

View File

@@ -18,9 +18,9 @@ type LocalMonitor struct {
}
func NewLocalMonitor(executionsId string, peerId string, duration int) (Executor){
func NewLocalMonitor(UUID string, peerId string, duration int) (Executor){
return &LocalMonitor{
ExecutionID: executionsId,
ExecutionID: UUID,
PeerID: peerId,
Duration: duration,
LokiUrl: conf.GetConfig().LokiUrl,