mirror of
				https://github.com/postgres/postgres.git
				synced 2025-11-03 09:13:20 +03:00 
			
		
		
		
	Remove the last vestiges of Exporter from PostgresNode
Clients wanting to call get_free_port now need to do so via a qualified name: PostgresNode::get_free_port().
This commit is contained in:
		@@ -58,8 +58,8 @@ my $slapd_pidfile = "${TestLib::tmp_check}/slapd.pid";
 | 
			
		||||
my $slapd_logfile = "${TestLib::log_path}/slapd.log";
 | 
			
		||||
my $ldap_conf     = "${TestLib::tmp_check}/ldap.conf";
 | 
			
		||||
my $ldap_server   = 'localhost';
 | 
			
		||||
my $ldap_port     = get_free_port();
 | 
			
		||||
my $ldaps_port    = get_free_port();
 | 
			
		||||
my $ldap_port     = PostgresNode::get_free_port();
 | 
			
		||||
my $ldaps_port    = PostgresNode::get_free_port();
 | 
			
		||||
my $ldap_url      = "ldap://$ldap_server:$ldap_port";
 | 
			
		||||
my $ldaps_url     = "ldaps://$ldap_server:$ldaps_port";
 | 
			
		||||
my $ldap_basedn   = 'dc=example,dc=net';
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user