Skip to content

Commit 0c97ef8

Browse files
committed
chore: remove dot
1 parent f8677ee commit 0c97ef8

File tree

13 files changed

+23
-23
lines changed

13 files changed

+23
-23
lines changed

clients/algoliasearch-client-csharp/algoliasearch/Transport/HttpTransport.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ private async Task<TResult> ExecuteRequestAsync<TResult, TData>(
223223
}
224224

225225
throw new AlgoliaUnreachableHostException(
226-
"RetryStrategy failed to connect to Algolia. If the error persists, please visit our help center https://alg.li/support-unreachable-hosts or reach out to the Algolia Support team: https://alg.li/support. Reason: " + _errorMessage
226+
"RetryStrategy failed to connect to Algolia. If the error persists, please visit our help center https://alg.li/support-unreachable-hosts or reach out to the Algolia Support team: https://alg.li/support Reason: " + _errorMessage
227227
);
228228
}
229229

clients/algoliasearch-client-dart/packages/client_core/lib/src/algolia_exception.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ final class UnreachableHostsException implements AlgoliaException {
7474
/// The list of errors associated with each unreachable host.
7575
final List<AlgoliaException> errors;
7676
final String message =
77-
"If the error persists, please visit our help center https://alg.li/support-unreachable-hosts or reach out to the Algolia Support team: https://alg.li/support.";
77+
"If the error persists, please visit our help center https://alg.li/support-unreachable-hosts or reach out to the Algolia Support team: https://alg.li/support";
7878

7979
/// Constructs an [UnreachableHostsException] with the provided list of errors.
8080
const UnreachableHostsException(this.errors);

clients/algoliasearch-client-go/algolia/errs/no_more_host_to_try_err.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ func (e *NoMoreHostToTryError) IntermediateNetworkErrors() []error {
2222
}
2323

2424
func (e *NoMoreHostToTryError) Error() string {
25-
baseErr := "all hosts have been contacted unsuccessfully, it can either be a server or a network error or wrong appID/key credentials were used. If the error persists, please visit our help center https://alg.li/support-unreachable-hosts or reach out to the Algolia Support team: https://alg.li/support."
25+
baseErr := "all hosts have been contacted unsuccessfully, it can either be a server or a network error or wrong appID/key credentials were used. If the error persists, please visit our help center https://alg.li/support-unreachable-hosts or reach out to the Algolia Support team: https://alg.li/support"
2626

2727
if len(e.intermediateNetworkErrors) > 0 {
2828
return fmt.Errorf("%s %w", baseErr, errors.Join(e.intermediateNetworkErrors...)).Error()

clients/algoliasearch-client-java/algoliasearch/src/main/java/com/algolia/exceptions/AlgoliaRetryException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ public class AlgoliaRetryException extends AlgoliaRuntimeException {
1212
private final List<Throwable> errors;
1313

1414
public AlgoliaRetryException(List<Throwable> errors) {
15-
super("Error(s) while processing the retry strategy. If the error persists, please visit our help center https://alg.li/support-unreachable-hosts or reach out to the Algolia Support team: https://alg.li/support.", errors.get(errors.size() - 1));
15+
super("Error(s) while processing the retry strategy. If the error persists, please visit our help center https://alg.li/support-unreachable-hosts or reach out to the Algolia Support team: https://alg.li/support", errors.get(errors.size() - 1));
1616
this.errors = errors;
1717
}
1818

clients/algoliasearch-client-javascript/packages/client-common/src/transporter/errors.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export class ErrorWithStackTrace extends AlgoliaError {
4343
export class RetryError extends ErrorWithStackTrace {
4444
constructor(stackTrace: StackFrame[]) {
4545
super(
46-
'Unreachable hosts - your application id may be incorrect. If the error persists, please visit our help center https://alg.li/support-unreachable-hosts or reach out to the Algolia Support team: https://alg.li/support.',
46+
'Unreachable hosts - your application id may be incorrect. If the error persists, please visit our help center https://alg.li/support-unreachable-hosts or reach out to the Algolia Support team: https://alg.li/support',
4747
stackTrace,
4848
'RetryError',
4949
);

clients/algoliasearch-client-kotlin/client/src/commonMain/kotlin/com/algolia/client/exception/AlgoliaRuntimeException.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public class AlgoliaApiException(
4343
*/
4444
public class AlgoliaRetryException(
4545
public val exceptions: List<Throwable>,
46-
) : AlgoliaRuntimeException("Error(s) while processing the retry strategy. If the error persists, please visit our help center https://alg.li/support-unreachable-hosts or reach out to the Algolia Support team: https://alg.li/support.", exceptions.last())
46+
) : AlgoliaRuntimeException("Error(s) while processing the retry strategy. If the error persists, please visit our help center https://alg.li/support-unreachable-hosts or reach out to the Algolia Support team: https://alg.li/support", exceptions.last())
4747

4848
/**
4949
* Exception thrown when an error occurs during the wait strategy. For example: maximum number of

clients/algoliasearch-client-php/lib/Exceptions/UnreachableException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ public function __construct($message = '', $code = 0, $previous = null)
88
{
99
if (!$message) {
1010
$message =
11-
'Impossible to connect, please check your Algolia Application Id. If the error persists, please visit our help center https://alg.li/support-unreachable-hosts or reach out to the Algolia Support team: https://alg.li/support.';
11+
'Impossible to connect, please check your Algolia Application Id. If the error persists, please visit our help center https://alg.li/support-unreachable-hosts or reach out to the Algolia Support team: https://alg.li/support';
1212
}
1313

1414
parent::__construct($message, $code, $previous);

clients/algoliasearch-client-python/algoliasearch/http/transporter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ async def request(
9999

100100
raise RequestException(content, response.status_code)
101101

102-
raise AlgoliaUnreachableHostException("Unreachable hosts. If the error persists, please visit our help center https://alg.li/support-unreachable-hosts or reach out to the Algolia Support team: https://alg.li/support.")
102+
raise AlgoliaUnreachableHostException("Unreachable hosts. If the error persists, please visit our help center https://alg.li/support-unreachable-hosts or reach out to the Algolia Support team: https://alg.li/support")
103103

104104

105105
class EchoTransporter(Transporter):

clients/algoliasearch-client-python/algoliasearch/http/transporter_sync.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ def request(
112112

113113
raise RequestException(content, response.status_code)
114114

115-
raise AlgoliaUnreachableHostException("Unreachable hosts. If the error persists, please visit our help center https://alg.li/support-unreachable-hosts or reach out to the Algolia Support team: https://alg.li/support.")
115+
raise AlgoliaUnreachableHostException("Unreachable hosts. If the error persists, please visit our help center https://alg.li/support-unreachable-hosts or reach out to the Algolia Support team: https://alg.li/support")
116116

117117

118118
class EchoTransporterSync(TransporterSync):

clients/algoliasearch-client-ruby/lib/algolia/transport/transport.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ def request(call_type, method, path, body, opts = {})
8585
end
8686
end
8787

88-
raise Algolia::AlgoliaUnreachableHostError.new("Unreachable hosts. If the error persists, please visit our help center https://alg.li/support-unreachable-hosts or reach out to the Algolia Support team: https://alg.li/support.", retry_errors)
88+
raise Algolia::AlgoliaUnreachableHostError.new("Unreachable hosts. If the error persists, please visit our help center https://alg.li/support-unreachable-hosts or reach out to the Algolia Support team: https://alg.li/support", retry_errors)
8989
end
9090

9191
private

0 commit comments

Comments
 (0)