Skip to content

Commit

Permalink
Fixed mistype in error (#102)
Browse files Browse the repository at this point in the history
---------

Co-authored-by: Don Hardman <[email protected]>
  • Loading branch information
sanikolaev and donhardman authored Feb 8, 2024
1 parent 32d8e8b commit 382dc0e
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 18 deletions.
1 change: 0 additions & 1 deletion src/Lib/ManticoreClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,6 @@ public function execute(string $query): array {
. ' and has the appropriate certificates in place.'
. ' Additionally, check the \'max_connections\' setting in the configuration'
. ' file to ensure that it has not been exceeded. '
. 'it\'s listening for HTTP or HTTPS connections (with proper certificates).'
);
}

Expand Down
8 changes: 4 additions & 4 deletions tests/backup-all-ok.rec
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ title text,
category_id integer,
price float,
description string attribute engine='columnar',
attributes json,
tags multi
tags multi,
attributes json
) |
+------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
––– input –––
Expand All @@ -46,8 +46,8 @@ title text,
category_id integer,
price float,
description string attribute,
attributes json,
tags multi
tags multi,
attributes json
) |
+---------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------+
––– input –––
Expand Down
10 changes: 5 additions & 5 deletions tests/backup-fails.rec
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ title text,
category_id integer,
price float,
description string attribute engine='columnar',
attributes json,
tags multi
tags multi,
attributes json
) |
+------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
––– input –––
Expand All @@ -46,8 +46,8 @@ title text,
category_id integer,
price float,
description string attribute,
attributes json,
tags multi
tags multi,
attributes json
) |
+---------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------+
––– input –––
Expand Down Expand Up @@ -88,4 +88,4 @@ Tables to backup: all tables
Backup dir: /tmp
Manticore config
endpoint = http://%{IPADDR}:9312
%{DATETIME} [Error] Failed to send query to the Manticore Search daemon. Ensure that it is set up to listen for HTTP or HTTPS connections and has the appropriate certificates in place. Additionally, check the 'max_connections' setting in the configuration file to ensure that it has not been exceeded. it's listening for HTTP or HTTPS connections (with proper certificates).
%{DATETIME} [Error] Failed to send query to the Manticore Search daemon. Ensure that it is set up to listen for HTTP or HTTPS connections and has the appropriate certificates in place. Additionally, check the 'max_connections' setting in the configuration file to ensure that it has not been exceeded.
8 changes: 4 additions & 4 deletions tests/backup-single-table-ok.rec
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ title text,
category_id integer,
price float,
description string attribute engine='columnar',
attributes json,
tags multi
tags multi,
attributes json
) |
+------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
––– input –––
Expand All @@ -46,8 +46,8 @@ title text,
category_id integer,
price float,
description string attribute,
attributes json,
tags multi
tags multi,
attributes json
) |
+---------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------+
––– input –––
Expand Down
8 changes: 4 additions & 4 deletions tests/backup-works-with-max-connections.rec
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ title text,
category_id integer,
price float,
description string attribute engine='columnar',
attributes json,
tags multi
tags multi,
attributes json
) |
+------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
––– input –––
Expand All @@ -71,8 +71,8 @@ title text,
category_id integer,
price float,
description string attribute,
attributes json,
tags multi
tags multi,
attributes json
) |
+---------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------+
––– input –––
Expand Down

0 comments on commit 382dc0e

Please sign in to comment.