@@ -295,9 +295,9 @@ func handleDirectTranslation(ctx context.Context, user shuffle.User, value shuff
295295 }
296296
297297 // This isn't good but... :)
298- authConfig := fmt .Sprintf ("%s,%s,%s,%s" , baseUrl , authorization , user .ActiveOrg .Id , optionalExecutionId )
298+ authConfig := fmt .Sprintf ("true, %s,%s,%s,%s" , baseUrl , authorization , user .ActiveOrg .Id , optionalExecutionId )
299299 if standalone {
300- authConfig = ""
300+ authConfig = "true "
301301 }
302302
303303
@@ -335,6 +335,7 @@ func handleDirectTranslation(ctx context.Context, user shuffle.User, value shuff
335335 log .Printf ("[DEBUG] Translating label %s with body:\n %s\n \n " , value .Label , string (marshalledFields ))
336336 }
337337
338+
338339 // Is there any way to ingest these as well?
339340 schemalessOutput , err := schemaless .Translate (ctx , value .Label , marshalledFields , authConfig )
340341 if err != nil {
@@ -370,6 +371,7 @@ func handleDirectTranslation(ctx context.Context, user shuffle.User, value shuff
370371 curOrg = fmt .Sprintf ("execution:%s" , newExecutionId )
371372 }
372373
374+ log .Printf ("\n \n \n SINGUL UPLOAD (2)\n \n \n " )
373375 autoUploadSingulOutput (
374376 ctx ,
375377 curOrg ,
@@ -487,7 +489,6 @@ func autoUploadSingulOutput(ctx context.Context, orgId string, curApikey string,
487489 break
488490 } else {
489491 foundIdentifier = fmt .Sprintf ("%x" , md5 .Sum (marshalledItem ))
490- log .Printf ("MARSHALLED OCSF (%s):\n %s\n " , foundIdentifier , string (marshalledItem ))
491492 }
492493 }
493494
@@ -2615,9 +2616,9 @@ func RunActionWrapper(ctx context.Context, user shuffle.User, value shuffle.Cate
26152616 }
26162617
26172618 // No shuffler.io config for standalone runs
2618- authConfig := fmt .Sprintf ("%s,%s,%s,%s" , baseUrl , authorization , orgId , optionalExecutionId )
2619+ authConfig := fmt .Sprintf ("false, %s,%s,%s,%s" , baseUrl , authorization , orgId , optionalExecutionId )
26192620 if standalone {
2620- authConfig = ""
2621+ authConfig = "false "
26212622 }
26222623
26232624 outputmap := make (map [string ]interface {})
0 commit comments