@hatchet-dev/typescript-sdk 0.1.15 → 0.1.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,7 @@
1
1
  import { Channel, ClientFactory } from 'nice-grpc';
2
2
  import { CreateWorkflowVersionOpts, WorkflowServiceClient } from '../../protoc/workflows';
3
3
  import { ClientConfig } from '../hatchet-client/client-config';
4
+ import { Logger } from '../../util/logger';
4
5
  import { Api } from '../rest';
5
6
  /**
6
7
  * AdminClient is a client for interacting with the Hatchet Admin API. This allows you to configure, trigger,
@@ -23,6 +24,7 @@ export declare class AdminClient {
23
24
  client: WorkflowServiceClient;
24
25
  api: Api;
25
26
  tenantId: string;
27
+ logger: Logger;
26
28
  constructor(config: ClientConfig, channel: Channel, factory: ClientFactory, api: Api, tenantId: string);
27
29
  /**
28
30
  * Creates a new workflow or updates an existing workflow. If the workflow already exists, Hatchet will automatically
@@ -15,6 +15,8 @@ Object.defineProperty(exports, "__esModule", { value: true });
15
15
  exports.AdminClient = void 0;
16
16
  const workflows_1 = require("../../protoc/workflows");
17
17
  const hatchet_error_1 = __importDefault(require("../../util/errors/hatchet-error"));
18
+ const logger_1 = require("../../util/logger");
19
+ const retrier_1 = require("../../util/retrier");
18
20
  /**
19
21
  * AdminClient is a client for interacting with the Hatchet Admin API. This allows you to configure, trigger,
20
22
  * and monitor workflows.
@@ -37,6 +39,7 @@ class AdminClient {
37
39
  this.client = factory.create(workflows_1.WorkflowServiceDefinition, channel);
38
40
  this.api = api;
39
41
  this.tenantId = tenantId;
42
+ this.logger = new logger_1.Logger(`Admin`, config.log_level);
40
43
  }
41
44
  /**
42
45
  * Creates a new workflow or updates an existing workflow. If the workflow already exists, Hatchet will automatically
@@ -46,9 +49,7 @@ class AdminClient {
46
49
  put_workflow(workflow) {
47
50
  return __awaiter(this, void 0, void 0, function* () {
48
51
  try {
49
- yield this.client.putWorkflow({
50
- opts: workflow,
51
- });
52
+ yield (0, retrier_1.retrier)(() => __awaiter(this, void 0, void 0, function* () { return this.client.putWorkflow({ opts: workflow }); }), this.logger);
52
53
  }
53
54
  catch (e) {
54
55
  throw new hatchet_error_1.default(e.message);
@@ -1,5 +1,6 @@
1
1
  import { DispatcherClient as PbDispatcherClient, AssignedAction } from '../../protoc/dispatcher';
2
2
  import { ClientConfig } from '../hatchet-client/client-config';
3
+ import { Logger } from '../../util/logger';
3
4
  import { DispatcherClient } from './dispatcher-client';
4
5
  export interface Action {
5
6
  tenantId: string;
@@ -17,10 +18,15 @@ export interface Action {
17
18
  export declare class ActionListener {
18
19
  config: ClientConfig;
19
20
  client: PbDispatcherClient;
20
- listener: AsyncIterable<AssignedAction>;
21
21
  workerId: string;
22
- constructor(client: DispatcherClient, listener: AsyncIterable<AssignedAction>, workerId: string);
22
+ logger: Logger;
23
+ lastConnectionAttempt: number;
24
+ retries: number;
25
+ retryInterval: number;
26
+ retryCount: number;
27
+ constructor(client: DispatcherClient, workerId: string, retryInterval?: number, retryCount?: number);
23
28
  actions: () => AsyncGenerator<Action, void, unknown>;
24
- retrySubscribe(): Promise<void>;
29
+ incrementRetries(): Promise<void>;
30
+ getListenClient(): Promise<AsyncIterable<AssignedAction>>;
25
31
  unregister(): Promise<import("../../protoc/dispatcher").WorkerUnsubscribeResponse>;
26
32
  }
@@ -8,6 +8,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
8
8
  step((generator = generator.apply(thisArg, _arguments || [])).next());
9
9
  });
10
10
  };
11
+ var __await = (this && this.__await) || function (v) { return this instanceof __await ? (this.v = v, this) : new __await(v); }
11
12
  var __asyncValues = (this && this.__asyncValues) || function (o) {
12
13
  if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined.");
13
14
  var m = o[Symbol.asyncIterator], i;
@@ -15,7 +16,6 @@ var __asyncValues = (this && this.__asyncValues) || function (o) {
15
16
  function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }
16
17
  function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }
17
18
  };
18
- var __await = (this && this.__await) || function (v) { return this instanceof __await ? (this.v = v, this) : new __await(v); }
19
19
  var __asyncGenerator = (this && this.__asyncGenerator) || function (thisArg, _arguments, generator) {
20
20
  if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined.");
21
21
  var g = generator.apply(thisArg, _arguments || []), i, q = [];
@@ -36,17 +36,22 @@ exports.ActionListener = void 0;
36
36
  const nice_grpc_1 = require("nice-grpc");
37
37
  const sleep_1 = __importDefault(require("../../util/sleep"));
38
38
  const hatchet_error_1 = __importDefault(require("../../util/errors/hatchet-error"));
39
- const DEFAULT_ACTION_LISTENER_RETRY_INTERVAL = 5; // seconds
39
+ const logger_1 = require("../../util/logger");
40
+ const DEFAULT_ACTION_LISTENER_RETRY_INTERVAL = 5000; // milliseconds
40
41
  const DEFAULT_ACTION_LISTENER_RETRY_COUNT = 5;
41
42
  class ActionListener {
42
- constructor(client, listener, workerId) {
43
+ constructor(client, workerId, retryInterval = DEFAULT_ACTION_LISTENER_RETRY_INTERVAL, retryCount = DEFAULT_ACTION_LISTENER_RETRY_COUNT) {
44
+ this.lastConnectionAttempt = 0;
45
+ this.retries = 0;
46
+ this.retryInterval = DEFAULT_ACTION_LISTENER_RETRY_INTERVAL;
47
+ this.retryCount = DEFAULT_ACTION_LISTENER_RETRY_COUNT;
43
48
  this.actions = () => (function gen(client) {
44
49
  return __asyncGenerator(this, arguments, function* gen_1() {
45
50
  var _a, e_1, _b, _c;
46
51
  while (true) {
47
52
  try {
48
53
  try {
49
- for (var _d = true, _e = (e_1 = void 0, __asyncValues(client.listener)), _f; _f = yield __await(_e.next()), _a = _f.done, !_a; _d = true) {
54
+ for (var _d = true, _e = (e_1 = void 0, __asyncValues(yield __await(client.getListenClient()))), _f; _f = yield __await(_e.next()), _a = _f.done, !_a; _d = true) {
50
55
  _c = _f.value;
51
56
  _d = false;
52
57
  const assignedAction = _c;
@@ -63,38 +68,55 @@ class ActionListener {
63
68
  }
64
69
  }
65
70
  catch (e) {
71
+ // if this is a HatchetError, we should throw this error
72
+ if (e instanceof hatchet_error_1.default) {
73
+ throw e;
74
+ }
66
75
  if (e.code === nice_grpc_1.Status.CANCELLED) {
67
76
  break;
68
77
  }
69
- if (e.code === nice_grpc_1.Status.UNAVAILABLE) {
70
- client.retrySubscribe();
71
- }
72
- break;
78
+ client.incrementRetries();
73
79
  }
74
80
  }
75
81
  });
76
82
  })(this);
77
83
  this.config = client.config;
78
84
  this.client = client.client;
79
- this.listener = listener;
80
85
  this.workerId = workerId;
86
+ this.logger = new logger_1.Logger(`ActionListener`, this.config.log_level);
87
+ this.retryInterval = retryInterval;
88
+ this.retryCount = retryCount;
81
89
  }
82
- retrySubscribe() {
90
+ incrementRetries() {
83
91
  return __awaiter(this, void 0, void 0, function* () {
84
- let retries = 0;
85
- while (retries < DEFAULT_ACTION_LISTENER_RETRY_COUNT) {
86
- try {
87
- yield (0, sleep_1.default)(DEFAULT_ACTION_LISTENER_RETRY_INTERVAL);
88
- this.listener = this.client.listen({
89
- workerId: this.workerId,
90
- });
91
- return;
92
- }
93
- catch (e) {
94
- retries += 1;
95
- }
92
+ this.retries += 1;
93
+ });
94
+ }
95
+ getListenClient() {
96
+ return __awaiter(this, void 0, void 0, function* () {
97
+ const currentTime = Math.floor(Date.now());
98
+ // subtract 1000 from the last connection attempt to account for the time it takes to establish the listener
99
+ if (currentTime - this.lastConnectionAttempt - 1000 > this.retryInterval) {
100
+ this.retries = 0;
101
+ }
102
+ this.lastConnectionAttempt = currentTime;
103
+ if (this.retries > DEFAULT_ACTION_LISTENER_RETRY_COUNT) {
104
+ throw new hatchet_error_1.default(`Could not subscribe to the worker after ${DEFAULT_ACTION_LISTENER_RETRY_COUNT} retries`);
105
+ }
106
+ this.logger.info(`Connecting to Hatchet to establish listener for actions... ${this.retries}/${DEFAULT_ACTION_LISTENER_RETRY_COUNT} (last attempt: ${this.lastConnectionAttempt})`);
107
+ if (this.retries >= 1) {
108
+ yield (0, sleep_1.default)(DEFAULT_ACTION_LISTENER_RETRY_INTERVAL);
109
+ }
110
+ try {
111
+ return this.client.listen({
112
+ workerId: this.workerId,
113
+ });
114
+ }
115
+ catch (e) {
116
+ this.retries += 1;
117
+ this.logger.error(`Attempt ${this.retries}: Failed to connect, retrying...`); // Optional: log retry attempt
118
+ return this.getListenClient();
96
119
  }
97
- throw new hatchet_error_1.default(`Could not subscribe to the worker after ${DEFAULT_ACTION_LISTENER_RETRY_COUNT} retries`);
98
120
  });
99
121
  }
100
122
  unregister() {
@@ -16,6 +16,7 @@ exports.DispatcherClient = void 0;
16
16
  const dispatcher_1 = require("../../protoc/dispatcher");
17
17
  const hatchet_error_1 = __importDefault(require("../../util/errors/hatchet-error"));
18
18
  const logger_1 = require("../../util/logger");
19
+ const retrier_1 = require("../../util/retrier");
19
20
  const action_listener_1 = require("./action-listener");
20
21
  class DispatcherClient {
21
22
  constructor(config, channel, factory) {
@@ -27,17 +28,13 @@ class DispatcherClient {
27
28
  return __awaiter(this, void 0, void 0, function* () {
28
29
  // Register the worker
29
30
  const registration = yield this.client.register(Object.assign({}, options));
30
- // Subscribe to the worker
31
- const listener = this.client.listen({
32
- workerId: registration.workerId,
33
- });
34
- return new action_listener_1.ActionListener(this, listener, registration.workerId);
31
+ return new action_listener_1.ActionListener(this, registration.workerId);
35
32
  });
36
33
  }
37
34
  sendStepActionEvent(in_) {
38
35
  return __awaiter(this, void 0, void 0, function* () {
39
36
  try {
40
- return this.client.sendStepActionEvent(in_);
37
+ return (0, retrier_1.retrier)(() => __awaiter(this, void 0, void 0, function* () { return this.client.sendStepActionEvent(in_); }), this.logger);
41
38
  }
42
39
  catch (e) {
43
40
  throw new hatchet_error_1.default(e.message);
@@ -47,7 +44,7 @@ class DispatcherClient {
47
44
  sendGroupKeyActionEvent(in_) {
48
45
  return __awaiter(this, void 0, void 0, function* () {
49
46
  try {
50
- return this.client.sendGroupKeyActionEvent(in_);
47
+ return (0, retrier_1.retrier)(() => __awaiter(this, void 0, void 0, function* () { return this.client.sendGroupKeyActionEvent(in_); }), this.logger);
51
48
  }
52
49
  catch (e) {
53
50
  throw new hatchet_error_1.default(e.message);
@@ -25,7 +25,6 @@ export declare class HatchetClient {
25
25
  tenantId: string;
26
26
  logger: Logger;
27
27
  constructor(config?: Partial<ClientConfig>, options?: HatchetClientOptions, axiosOpts?: AxiosRequestConfig);
28
- static with_host_port(host: string, port: number, config?: Partial<ClientConfig>, options?: HatchetClientOptions): HatchetClient;
29
28
  static init(config?: Partial<ClientConfig>, options?: HatchetClientOptions, axiosConfig?: AxiosRequestConfig): HatchetClient;
30
29
  run(workflow: string | Workflow): Promise<Worker>;
31
30
  worker(workflow: string | Workflow, maxRuns?: number): Promise<Worker>;
@@ -80,11 +80,11 @@ class HatchetClient {
80
80
  // Initializes a new Client instance.
81
81
  // Loads config in the following order: config param > yaml file > env vars
82
82
  var _a;
83
- const loaded = config_loader_1.ConfigLoader.loadClientConfig({
83
+ const loaded = config_loader_1.ConfigLoader.loadClientConfig(config, {
84
84
  path: options === null || options === void 0 ? void 0 : options.config_path,
85
85
  });
86
86
  try {
87
- const valid = client_config_1.ClientConfigSchema.parse(Object.assign(Object.assign({}, loaded), Object.assign(Object.assign({}, config), { tls_config: Object.assign(Object.assign({}, loaded.tls_config), config === null || config === void 0 ? void 0 : config.tls_config) })));
87
+ const valid = client_config_1.ClientConfigSchema.parse(loaded);
88
88
  this.config = valid;
89
89
  }
90
90
  catch (e) {
@@ -97,6 +97,12 @@ class HatchetClient {
97
97
  (_a = options === null || options === void 0 ? void 0 : options.credentials) !== null && _a !== void 0 ? _a : config_loader_1.ConfigLoader.createCredentials(this.config.tls_config);
98
98
  this.channel = (0, nice_grpc_1.createChannel)(this.config.host_port, this.credentials, {
99
99
  'grpc.ssl_target_name_override': this.config.tls_config.server_name,
100
+ 'grpc.keepalive_timeout_ms': 60 * 1000,
101
+ 'grpc.client_idle_timeout_ms': 60 * 1000,
102
+ // Send keepalive pings every 10 seconds, default is 2 hours.
103
+ 'grpc.keepalive_time_ms': 10 * 1000,
104
+ // Allow keepalive pings when there are no gRPC calls.
105
+ 'grpc.keepalive_permit_without_calls': 1,
100
106
  });
101
107
  const clientFactory = (0, nice_grpc_1.createClientFactory)().use(addTokenMiddleware(this.config.token));
102
108
  this.tenantId = this.config.tenant_id;
@@ -108,9 +114,6 @@ class HatchetClient {
108
114
  this.logger = new logger_1.default('HatchetClient', this.config.log_level);
109
115
  this.logger.info(`Initialized HatchetClient`);
110
116
  }
111
- static with_host_port(host, port, config, options) {
112
- return new HatchetClient(Object.assign(Object.assign({}, config), { host_port: `${host}:${port}` }), options);
113
- }
114
117
  static init(config, options, axiosConfig) {
115
118
  return new HatchetClient(config, options, axiosConfig);
116
119
  }
@@ -25,7 +25,7 @@ const dispatcher_1 = require("../../protoc/dispatcher");
25
25
  const hatchet_promise_1 = __importDefault(require("../../util/hatchet-promise/hatchet-promise"));
26
26
  const workflows_1 = require("../../protoc/workflows");
27
27
  const logger_1 = require("../../util/logger");
28
- const sleep_1 = __importDefault(require("../../util/sleep"));
28
+ // import sleep from '../../util/sleep.js';
29
29
  const step_1 = require("../../step");
30
30
  class Worker {
31
31
  constructor(client, options) {
@@ -270,58 +270,46 @@ class Worker {
270
270
  start() {
271
271
  var _a, e_1, _b, _c;
272
272
  return __awaiter(this, void 0, void 0, function* () {
273
- let retries = 0;
274
- while (retries < 5) {
273
+ try {
274
+ this.listener = yield this.client.dispatcher.getActionListener({
275
+ workerName: this.name,
276
+ services: ['default'],
277
+ actions: Object.keys(this.action_registry),
278
+ maxRuns: this.maxRuns,
279
+ });
280
+ const generator = this.listener.actions();
281
+ this.logger.info(`Worker ${this.name} listening for actions`);
275
282
  try {
276
- this.listener = yield this.client.dispatcher.getActionListener({
277
- workerName: this.name,
278
- services: ['default'],
279
- actions: Object.keys(this.action_registry),
280
- maxRuns: this.maxRuns,
281
- });
282
- const generator = this.listener.actions();
283
- this.logger.info(`Worker ${this.name} listening for actions`);
284
- try {
285
- for (var _d = true, generator_1 = (e_1 = void 0, __asyncValues(generator)), generator_1_1; generator_1_1 = yield generator_1.next(), _a = generator_1_1.done, !_a; _d = true) {
286
- _c = generator_1_1.value;
287
- _d = false;
288
- const action = _c;
289
- this.logger.info(`Worker ${this.name} received action ${action.actionId}:${action.actionType}`);
290
- if (action.actionType === dispatcher_1.ActionType.START_STEP_RUN) {
291
- this.handleStartStepRun(action);
292
- }
293
- else if (action.actionType === dispatcher_1.ActionType.CANCEL_STEP_RUN) {
294
- this.handleCancelStepRun(action);
295
- }
296
- else if (action.actionType === dispatcher_1.ActionType.START_GET_GROUP_KEY) {
297
- this.handleStartGroupKeyRun(action);
298
- }
299
- else {
300
- this.logger.error(`Worker ${this.name} received unknown action type ${action.actionType}`);
301
- }
283
+ for (var _d = true, generator_1 = __asyncValues(generator), generator_1_1; generator_1_1 = yield generator_1.next(), _a = generator_1_1.done, !_a; _d = true) {
284
+ _c = generator_1_1.value;
285
+ _d = false;
286
+ const action = _c;
287
+ this.logger.info(`Worker ${this.name} received action ${action.actionId}:${action.actionType}`);
288
+ if (action.actionType === dispatcher_1.ActionType.START_STEP_RUN) {
289
+ this.handleStartStepRun(action);
302
290
  }
303
- }
304
- catch (e_1_1) { e_1 = { error: e_1_1 }; }
305
- finally {
306
- try {
307
- if (!_d && !_a && (_b = generator_1.return)) yield _b.call(generator_1);
291
+ else if (action.actionType === dispatcher_1.ActionType.CANCEL_STEP_RUN) {
292
+ this.handleCancelStepRun(action);
293
+ }
294
+ else if (action.actionType === dispatcher_1.ActionType.START_GET_GROUP_KEY) {
295
+ this.handleStartGroupKeyRun(action);
296
+ }
297
+ else {
298
+ this.logger.error(`Worker ${this.name} received unknown action type ${action.actionType}`);
308
299
  }
309
- finally { if (e_1) throw e_1.error; }
310
300
  }
311
- break;
312
301
  }
313
- catch (e) {
314
- this.logger.error(`Could not start worker: ${e.message}`);
315
- retries += 1;
316
- const wait = 500;
317
- this.logger.error(`Could not start worker, retrying in ${500} seconds`);
318
- yield (0, sleep_1.default)(wait);
302
+ catch (e_1_1) { e_1 = { error: e_1_1 }; }
303
+ finally {
304
+ try {
305
+ if (!_d && !_a && (_b = generator_1.return)) yield _b.call(generator_1);
306
+ }
307
+ finally { if (e_1) throw e_1.error; }
319
308
  }
320
309
  }
321
- if (this.killing)
322
- return;
323
- if (retries > 5) {
324
- throw new hatchet_error_1.default('Could not start worker after 5 retries');
310
+ catch (e) {
311
+ this.logger.error(`Could not run worker: ${e.message}`);
312
+ throw new hatchet_error_1.default(`Could not run worker: ${e.message}`);
325
313
  }
326
314
  });
327
315
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hatchet-dev/typescript-sdk",
3
- "version": "0.1.15",
3
+ "version": "0.1.16",
4
4
  "description": "Background task orchestration & visibility for developers",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -4,7 +4,7 @@ interface LoadClientConfigOptions {
4
4
  path?: string;
5
5
  }
6
6
  export declare class ConfigLoader {
7
- static loadClientConfig(config?: LoadClientConfigOptions): Partial<ClientConfig>;
7
+ static loadClientConfig(override?: Partial<ClientConfig>, config?: LoadClientConfigOptions): Partial<ClientConfig>;
8
8
  static get default_yaml_config_path(): string;
9
9
  static createCredentials(config: ClientConfig['tls_config']): ChannelCredentials;
10
10
  static loadYamlConfig(path?: string): ClientConfig | undefined;
@@ -33,17 +33,17 @@ const nice_grpc_1 = require("nice-grpc");
33
33
  const token_1 = require("./token");
34
34
  const DEFAULT_CONFIG_FILE = '.hatchet.yaml';
35
35
  class ConfigLoader {
36
- static loadClientConfig(config) {
37
- var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w;
36
+ static loadClientConfig(override, config) {
37
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z, _0, _1, _2;
38
38
  const yaml = this.loadYamlConfig(config === null || config === void 0 ? void 0 : config.path);
39
- const tlsConfig = {
40
- tls_strategy: (_c = (_b = (_a = yaml === null || yaml === void 0 ? void 0 : yaml.tls_config) === null || _a === void 0 ? void 0 : _a.tls_strategy) !== null && _b !== void 0 ? _b : this.env('HATCHET_CLIENT_TLS_STRATEGY')) !== null && _c !== void 0 ? _c : 'tls',
41
- cert_file: (_e = (_d = yaml === null || yaml === void 0 ? void 0 : yaml.tls_config) === null || _d === void 0 ? void 0 : _d.cert_file) !== null && _e !== void 0 ? _e : this.env('HATCHET_CLIENT_TLS_CERT_FILE'),
42
- key_file: (_g = (_f = yaml === null || yaml === void 0 ? void 0 : yaml.tls_config) === null || _f === void 0 ? void 0 : _f.key_file) !== null && _g !== void 0 ? _g : this.env('HATCHET_CLIENT_TLS_KEY_FILE'),
43
- ca_file: (_j = (_h = yaml === null || yaml === void 0 ? void 0 : yaml.tls_config) === null || _h === void 0 ? void 0 : _h.ca_file) !== null && _j !== void 0 ? _j : this.env('HATCHET_CLIENT_TLS_ROOT_CA_FILE'),
44
- server_name: (_l = (_k = yaml === null || yaml === void 0 ? void 0 : yaml.tls_config) === null || _k === void 0 ? void 0 : _k.server_name) !== null && _l !== void 0 ? _l : this.env('HATCHET_CLIENT_TLS_SERVER_NAME'),
39
+ const tlsConfig = (_a = override === null || override === void 0 ? void 0 : override.tls_config) !== null && _a !== void 0 ? _a : {
40
+ tls_strategy: (_d = (_c = (_b = yaml === null || yaml === void 0 ? void 0 : yaml.tls_config) === null || _b === void 0 ? void 0 : _b.tls_strategy) !== null && _c !== void 0 ? _c : this.env('HATCHET_CLIENT_TLS_STRATEGY')) !== null && _d !== void 0 ? _d : 'tls',
41
+ cert_file: (_f = (_e = yaml === null || yaml === void 0 ? void 0 : yaml.tls_config) === null || _e === void 0 ? void 0 : _e.cert_file) !== null && _f !== void 0 ? _f : this.env('HATCHET_CLIENT_TLS_CERT_FILE'),
42
+ key_file: (_h = (_g = yaml === null || yaml === void 0 ? void 0 : yaml.tls_config) === null || _g === void 0 ? void 0 : _g.key_file) !== null && _h !== void 0 ? _h : this.env('HATCHET_CLIENT_TLS_KEY_FILE'),
43
+ ca_file: (_k = (_j = yaml === null || yaml === void 0 ? void 0 : yaml.tls_config) === null || _j === void 0 ? void 0 : _j.ca_file) !== null && _k !== void 0 ? _k : this.env('HATCHET_CLIENT_TLS_ROOT_CA_FILE'),
44
+ server_name: (_m = (_l = yaml === null || yaml === void 0 ? void 0 : yaml.tls_config) === null || _l === void 0 ? void 0 : _l.server_name) !== null && _m !== void 0 ? _m : this.env('HATCHET_CLIENT_TLS_SERVER_NAME'),
45
45
  };
46
- const token = (_m = yaml === null || yaml === void 0 ? void 0 : yaml.token) !== null && _m !== void 0 ? _m : this.env('HATCHET_CLIENT_TOKEN');
46
+ const token = (_p = (_o = override === null || override === void 0 ? void 0 : override.token) !== null && _o !== void 0 ? _o : yaml === null || yaml === void 0 ? void 0 : yaml.token) !== null && _p !== void 0 ? _p : this.env('HATCHET_CLIENT_TOKEN');
47
47
  let grpcBroadcastAddress;
48
48
  let apiUrl;
49
49
  const tenantId = (0, token_1.getTenantIdFromJWT)(token);
@@ -53,19 +53,20 @@ class ConfigLoader {
53
53
  try {
54
54
  const addresses = (0, token_1.getAddressesFromJWT)(token);
55
55
  grpcBroadcastAddress =
56
- (_p = (_o = yaml === null || yaml === void 0 ? void 0 : yaml.host_port) !== null && _o !== void 0 ? _o : this.env('HATCHET_CLIENT_HOST_PORT')) !== null && _p !== void 0 ? _p : addresses.grpcBroadcastAddress;
57
- apiUrl = (_r = (_q = yaml === null || yaml === void 0 ? void 0 : yaml.api_url) !== null && _q !== void 0 ? _q : this.env('HATCHET_CLIENT_API_URL')) !== null && _r !== void 0 ? _r : addresses.serverUrl;
56
+ (_r = (_q = yaml === null || yaml === void 0 ? void 0 : yaml.host_port) !== null && _q !== void 0 ? _q : this.env('HATCHET_CLIENT_HOST_PORT')) !== null && _r !== void 0 ? _r : addresses.grpcBroadcastAddress;
57
+ apiUrl =
58
+ (_u = (_t = (_s = override === null || override === void 0 ? void 0 : override.api_url) !== null && _s !== void 0 ? _s : yaml === null || yaml === void 0 ? void 0 : yaml.api_url) !== null && _t !== void 0 ? _t : this.env('HATCHET_CLIENT_API_URL')) !== null && _u !== void 0 ? _u : addresses.serverUrl;
58
59
  }
59
60
  catch (e) {
60
- grpcBroadcastAddress = (_s = yaml === null || yaml === void 0 ? void 0 : yaml.host_port) !== null && _s !== void 0 ? _s : this.env('HATCHET_CLIENT_HOST_PORT');
61
- apiUrl = (_t = yaml === null || yaml === void 0 ? void 0 : yaml.api_url) !== null && _t !== void 0 ? _t : this.env('HATCHET_CLIENT_API_URL');
61
+ grpcBroadcastAddress = (_v = yaml === null || yaml === void 0 ? void 0 : yaml.host_port) !== null && _v !== void 0 ? _v : this.env('HATCHET_CLIENT_HOST_PORT');
62
+ apiUrl = (_x = (_w = override === null || override === void 0 ? void 0 : override.api_url) !== null && _w !== void 0 ? _w : yaml === null || yaml === void 0 ? void 0 : yaml.api_url) !== null && _x !== void 0 ? _x : this.env('HATCHET_CLIENT_API_URL');
62
63
  }
63
64
  return {
64
- token: (_u = yaml === null || yaml === void 0 ? void 0 : yaml.token) !== null && _u !== void 0 ? _u : this.env('HATCHET_CLIENT_TOKEN'),
65
+ token: (_z = (_y = override === null || override === void 0 ? void 0 : override.token) !== null && _y !== void 0 ? _y : yaml === null || yaml === void 0 ? void 0 : yaml.token) !== null && _z !== void 0 ? _z : this.env('HATCHET_CLIENT_TOKEN'),
65
66
  host_port: grpcBroadcastAddress,
66
67
  api_url: apiUrl,
67
68
  tls_config: tlsConfig,
68
- log_level: (_w = (_v = yaml === null || yaml === void 0 ? void 0 : yaml.log_level) !== null && _v !== void 0 ? _v : this.env('HATCHET_CLIENT_LOG_LEVEL')) !== null && _w !== void 0 ? _w : 'INFO',
69
+ log_level: (_2 = (_1 = (_0 = override === null || override === void 0 ? void 0 : override.log_level) !== null && _0 !== void 0 ? _0 : yaml === null || yaml === void 0 ? void 0 : yaml.log_level) !== null && _1 !== void 0 ? _1 : this.env('HATCHET_CLIENT_LOG_LEVEL')) !== null && _2 !== void 0 ? _2 : 'INFO',
69
70
  tenant_id: tenantId,
70
71
  };
71
72
  }
@@ -0,0 +1,2 @@
1
+ import { Logger } from './logger';
2
+ export declare function retrier<T>(fn: () => Promise<T>, logger: Logger, retries?: number, interval?: number): Promise<T>;
@@ -0,0 +1,36 @@
1
+ "use strict";
2
+ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
3
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
4
+ return new (P || (P = Promise))(function (resolve, reject) {
5
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
6
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
7
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
8
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
9
+ });
10
+ };
11
+ var __importDefault = (this && this.__importDefault) || function (mod) {
12
+ return (mod && mod.__esModule) ? mod : { "default": mod };
13
+ };
14
+ Object.defineProperty(exports, "__esModule", { value: true });
15
+ exports.retrier = void 0;
16
+ const sleep_1 = __importDefault(require("./sleep"));
17
+ const DEFAULT_RETRY_INTERVAL = 5;
18
+ const DEFAULT_RETRY_COUNT = 5;
19
+ function retrier(fn, logger, retries = DEFAULT_RETRY_COUNT, interval = DEFAULT_RETRY_INTERVAL) {
20
+ return __awaiter(this, void 0, void 0, function* () {
21
+ let lastError;
22
+ // eslint-disable-next-line no-plusplus
23
+ for (let i = 0; i < retries; i++) {
24
+ try {
25
+ return yield fn();
26
+ }
27
+ catch (e) {
28
+ lastError = e;
29
+ logger.error(`Error: ${e.message}`);
30
+ yield (0, sleep_1.default)(interval * 1000);
31
+ }
32
+ }
33
+ throw lastError;
34
+ });
35
+ }
36
+ exports.retrier = retrier;