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

@@ -20,10 +20,10 @@ type ContainerMonitor struct {
KubePort string
}
func NewContainerMonitor(executionsId string, peerId string, duration int) (Executor){
func NewContainerMonitor(UUID string, peerId string, duration int) (Executor){
return &ContainerMonitor{
Monitor: LocalMonitor{
ExecutionID: executionsId,
ExecutionID: UUID,
PeerID: peerId,
Duration: duration,
LokiUrl: conf.GetConfig().LokiUrl,