We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents cc73dc3 + be2cbd0 commit 665715bCopy full SHA for 665715b
1 file changed
client.go
@@ -622,6 +622,13 @@ func (c *Client) VersionService() versionservice.VersionClient {
622
return versionservice.NewVersionClient(c.conn)
623
}
624
625
+// Conn returns the underlying GRPC connection object
626
+func (c *Client) Conn() *grpc.ClientConn {
627
+ c.connMu.Lock()
628
+ defer c.connMu.Unlock()
629
+ return c.conn
630
+}
631
+
632
// Version of containerd
633
type Version struct {
634
// Version number
0 commit comments