Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for tlsHandshakeFirst (0.08 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. internal/event/target/nats_tls_contrib_test.go

    			Port:      (xnet.Port(opts.Port)),
    			IsPortSet: true,
    		},
    		Subject:           "test",
    		Secure:            true,
    		CertAuthority:     path.Join("testdata", "contrib", "certs", "root_ca_cert.pem"),
    		TLSHandshakeFirst: true,
    	}
    
    	con, err := clientConfig.connectNats()
    	if err != nil {
    		t.Errorf("Could not connect to nats: %v", err)
    	}
    	defer con.Close()
    }
    
    func TestNatsConnTLSClientAuthorization(t *testing.T) {
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Tue Apr 22 22:12:26 GMT 2025
    - 2.7K bytes
    - Click Count (0)
  2. internal/config/notify/parse.go

    			TLS:               env.Get(tlsEnv, kv.Get(target.NATSTLS)) == config.EnableOn,
    			TLSSkipVerify:     env.Get(tlsSkipVerifyEnv, kv.Get(target.NATSTLSSkipVerify)) == config.EnableOn,
    			TLSHandshakeFirst: env.Get(tlsHandshakeFirstEnv, kv.Get(target.NATSTLSHandshakeFirst)) == config.EnableOn,
    			PingInterval:      pingInterval,
    			QueueDir:          env.Get(queueDirEnv, kv.Get(target.NATSQueueDir)),
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Fri Aug 29 02:39:48 GMT 2025
    - 47.5K bytes
    - Click Count (0)
Back to Top