Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update references to support@algolia.com to new ticket link #1517

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion LICENSE.md
@@ -1,6 +1,6 @@
The MIT License (MIT)

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

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
Expand Up @@ -63,7 +63,7 @@ describe('hosts cache integration with cache drivers', () => {

const message =
// eslint-disable-next-line max-len
'Unreachable hosts - your application id may be incorrect. If the error persists, contact support@algolia.com.';
'Unreachable hosts - your application id may be incorrect. If the error persists, please reach out to the Algolia Support team: https://alg.li/support .';

await expect(transporter.read(transporterRequest)).rejects.toMatchObject({
message,
Expand Down
2 changes: 1 addition & 1 deletion packages/transporter/src/__tests__/unit/stackTrace.test.ts
Expand Up @@ -90,7 +90,7 @@ describe('transporter stack trace serialization', () => {
await expect(transporter.read(transporterRequest)).rejects.toEqual({
name: 'RetryError',
message:
'Unreachable hosts - your application id may be incorrect. If the error persists, contact support@algolia.com.',
'Unreachable hosts - your application id may be incorrect. If the error persists, please reach out to the Algolia Support team: https://alg.li/support .',
transporterStackTrace,
});

Expand Down
6 changes: 3 additions & 3 deletions packages/transporter/src/__tests__/unit/timeouts.test.ts
Expand Up @@ -86,7 +86,7 @@ describe('the timeouts selection', () => {
await expect(transporter.read(transporterRequest)).rejects.toMatchObject({
name: 'RetryError',
message:
'Unreachable hosts - your application id may be incorrect. If the error persists, contact support@algolia.com.',
'Unreachable hosts - your application id may be incorrect. If the error persists, please reach out to the Algolia Support team: https://alg.li/support .',
});

assertRequest({
Expand All @@ -111,7 +111,7 @@ describe('the timeouts selection', () => {
await expect(transporter.read(transporterRequest)).rejects.toMatchObject({
name: 'RetryError',
message:
'Unreachable hosts - your application id may be incorrect. If the error persists, contact support@algolia.com.',
'Unreachable hosts - your application id may be incorrect. If the error persists, please reach out to the Algolia Support team: https://alg.li/support .',
});

assertRequest({
Expand Down Expand Up @@ -142,7 +142,7 @@ describe('the timeouts selection', () => {
await expect(transporter.read(transporterRequest)).rejects.toMatchObject({
name: 'RetryError',
message:
'Unreachable hosts - your application id may be incorrect. If the error persists, contact support@algolia.com.',
'Unreachable hosts - your application id may be incorrect. If the error persists, please reach out to the Algolia Support team: https://alg.li/support .',
});

assertRequest({
Expand Down
2 changes: 1 addition & 1 deletion packages/transporter/src/errors/createRetryError.ts
Expand Up @@ -4,7 +4,7 @@ export function createRetryError(transporterStackTrace: readonly StackFrame[]):
return {
name: 'RetryError',
message:
'Unreachable hosts - your application id may be incorrect. If the error persists, contact support@algolia.com.',
'Unreachable hosts - your application id may be incorrect. If the error persists, please reach out to the Algolia Support team: https://alg.li/support .',
transporterStackTrace,
};
}