Skip to content

Commit f73a86a

Browse files
fix(support): redirect to ticket link (#1527)
* update references to [email protected] to new ticket link * additonal update references to [email protected] to new ticket link * updating the algolia support link --------- Co-authored-by: Minja Slavkovic <[email protected]>
1 parent 5828389 commit f73a86a

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) Algolia <support@algolia.com>
3+
Copyright (c) Algolia <http://www.algolia.com/>
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

packages/transporter/src/__tests__/integration/with-hosts-cache-drivers.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ describe('hosts cache integration with cache drivers', () => {
6363

6464
const message =
6565
// eslint-disable-next-line max-len
66-
'Unreachable hosts - your application id may be incorrect. If the error persists, contact [email protected].';
66+
'Unreachable hosts - your application id may be incorrect. If the error persists, please reach out to the Algolia Support team: https://alg.li/support .';
6767

6868
await expect(transporter.read(transporterRequest)).rejects.toMatchObject({
6969
message,

packages/transporter/src/__tests__/unit/stackTrace.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ describe('transporter stack trace serialization', () => {
9090
await expect(transporter.read(transporterRequest)).rejects.toEqual({
9191
name: 'RetryError',
9292
message:
93-
'Unreachable hosts - your application id may be incorrect. If the error persists, contact [email protected].',
93+
'Unreachable hosts - your application id may be incorrect. If the error persists, please reach out to the Algolia Support team: https://alg.li/support .',
9494
transporterStackTrace,
9595
});
9696

packages/transporter/src/__tests__/unit/timeouts.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ describe('the timeouts selection', () => {
8686
await expect(transporter.read(transporterRequest)).rejects.toMatchObject({
8787
name: 'RetryError',
8888
message:
89-
'Unreachable hosts - your application id may be incorrect. If the error persists, contact [email protected].',
89+
'Unreachable hosts - your application id may be incorrect. If the error persists, please reach out to the Algolia Support team: https://alg.li/support .',
9090
});
9191

9292
assertRequest({
@@ -111,7 +111,7 @@ describe('the timeouts selection', () => {
111111
await expect(transporter.read(transporterRequest)).rejects.toMatchObject({
112112
name: 'RetryError',
113113
message:
114-
'Unreachable hosts - your application id may be incorrect. If the error persists, contact [email protected].',
114+
'Unreachable hosts - your application id may be incorrect. If the error persists, please reach out to the Algolia Support team: https://alg.li/support .',
115115
});
116116

117117
assertRequest({
@@ -142,7 +142,7 @@ describe('the timeouts selection', () => {
142142
await expect(transporter.read(transporterRequest)).rejects.toMatchObject({
143143
name: 'RetryError',
144144
message:
145-
'Unreachable hosts - your application id may be incorrect. If the error persists, contact [email protected].',
145+
'Unreachable hosts - your application id may be incorrect. If the error persists, please reach out to the Algolia Support team: https://alg.li/support .',
146146
});
147147

148148
assertRequest({

packages/transporter/src/errors/createRetryError.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export function createRetryError(transporterStackTrace: readonly StackFrame[]):
44
return {
55
name: 'RetryError',
66
message:
7-
'Unreachable hosts - your application id may be incorrect. If the error persists, contact [email protected].',
7+
'Unreachable hosts - your application id may be incorrect. If the error persists, please reach out to the Algolia Support team: https://alg.li/support .',
88
transporterStackTrace,
99
};
1010
}

0 commit comments

Comments
 (0)