cr, err := client.Permission.Check(context.Background(), checkPermissionPayload)
In the above code snippet, let's say that instead of new context context.Background(), I am passing an existing golang context which contains tracing details and I need to propagate the same tracing details to permify such that it comes under the same trace id and does not create a new trace id.
Currently, it is not happening when I just pass the existing context.
In the above code snippet, let's say that instead of new context
context.Background(), I am passing an existing golang context which contains tracing details and I need to propagate the same tracing details to permify such that it comes under the same trace id and does not create a new trace id.Currently, it is not happening when I just pass the existing context.