set up print

This commit is contained in:
mr
2024-07-29 13:36:25 +02:00
parent c7f65914bb
commit 956af8f5f5
3 changed files with 8 additions and 4 deletions

View File

@@ -18,10 +18,9 @@ type StorageResource struct {
Size uint `bson:"size,omitempty" json:"size,omitempty"`
Url *URL `bson:"url,omitempty" json:"url,omitempty"` // Will allow to select between several protocols
Encryption bool `bson:"encryption,omitempty" json:"encryption,omitempty"`
Redundancy string `bson:"redundancy,omitempty" json:"redundancy,omitempty"`
Throughput string `bson:"throughput,omitempty" json:"throughput,omitempty"`
BookingPrice uint `bson:"booking_price,omitempty" json:"booking_price,omitempty"`
Encryption bool `bson:"encryption,omitempty" json:"encryption,omitempty"`
Redundancy string `bson:"redundancy,omitempty" json:"redundancy,omitempty"`
Throughput string `bson:"throughput,omitempty" json:"throughput,omitempty"`
}
func (dma *StorageResource) Deserialize(j map[string]interface{}) utils.DBObject {

View File

@@ -2,6 +2,7 @@ package oclib
import (
"errors"
"fmt"
"slices"
"cloud.o-forge.io/core/oc-lib/dbs/mongo"
@@ -65,6 +66,7 @@ func (wfa *WorkflowMongoAccessor) UpdateOne(set utils.DBObject, id string) (util
if code, err := wfa.execution(set.(*Workflow), true); err != nil {
return nil, code, err
}
fmt.Println(set.Serialize())
return wfa.GenericUpdateOne(set, id, wfa, &Workflow{})
}