TD-775: Add host and port to options (#45)

This commit is contained in:
Rinat Arsaev 2023-10-10 18:40:32 +07:00 committed by GitHub
parent 50900306e7
commit d405f67f9a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 0 deletions

View File

@ -18,6 +18,8 @@ export const __exportName__ = async (
service,
headers: options.headers,
deadlineConfig: options.deadlineConfig,
hostname: options.hostname,
port: options.port,
};
const clientSettings = {
namespace,

View File

@ -8,4 +8,6 @@ export interface ConnectOptions {
deadlineConfig?: DeadlineConfig;
logging?: boolean;
i64SafeRangeCheck?: boolean;
hostname?: string;
port?: string;
}