diff --git a/models/resources/processing/processing.go b/models/resources/processing/processing.go index c789882..4f13ed8 100644 --- a/models/resources/processing/processing.go +++ b/models/resources/processing/processing.go @@ -35,7 +35,7 @@ type ProcessingResource struct { Parallel bool `bson:"parallel,omitempty" json:"parallel,omitempty"` // Parallel is a flag that indicates if the processing is parallel ScalingModel uint `bson:"scaling_model,omitempty" json:"scaling_model,omitempty"` // ScalingModel is the scaling model DiskIO string `bson:"disk_io,omitempty" json:"disk_io,omitempty"` // DiskIO is the disk IO - Container Container `bson:"container,omitempty" json:"container,omitempty"` // Container is the container + Container *Container `bson:"container,omitempty" json:"container,omitempty"` // Container is the container Execute []Execute `bson:"execute,omitempty" json:"execute,omitempty"` // Execute is the execution }