Skip to content

Commit e75be26

Browse files
better0fdeadDifferentialOrange
authored andcommitted
removed trailing spaces
1 parent 7eafd1e commit e75be26

File tree

2 files changed

+26
-26
lines changed

2 files changed

+26
-26
lines changed

CHANGELOG.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
88
## [1.2.0] - 07-06-23
99

1010
### Added
11-
* Add `noreturn` option for operations:
12-
`insert`, `insert_object`, `insert_many`, `insert_object_many`,
13-
`replace`, `replace_object`, `replace_many`, `insert_object_many`,
11+
* Add `noreturn` option for operations:
12+
`insert`, `insert_object`, `insert_many`, `insert_object_many`,
13+
`replace`, `replace_object`, `replace_many`, `insert_object_many`,
1414
`upsert`, `upsert_object`, `upsert_many`, `upsert_object_many`,
1515
`update`, `delete` (#267).
1616

@@ -39,16 +39,16 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
3939
## [1.0.0] - 02-02-23
4040

4141
### Added
42-
* Add timeout condition for the validation of master presence in
42+
* Add timeout condition for the validation of master presence in
4343
replicaset and for the master connection (#95).
4444
* Support Cartridge clusterwide configuration for `crud.cfg` (#332).
4545

4646
### Changed
4747
* **Breaking**: forbid using space id in `crud.len` (#255).
4848

4949
### Fixed
50-
* Add validation of the master presence in replicaset and the
51-
master connection to the `utils.get_space` method before
50+
* Add validation of the master presence in replicaset and the
51+
master connection to the `utils.get_space` method before
5252
receiving the space from the connection (#331).
5353
* Fix fiber cancel on schema reload timeout in `call_reload_schema` (PR #336).
5454

README.md

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -237,8 +237,8 @@ where:
237237
* `noreturn` (`?boolean`) - suppress successfully processed tuple
238238
(first return value is `nil`). `false` by default
239239
* `fetch_latest_metadata` (`?boolean`) - guarantees the
240-
up-to-date metadata (space format) in first return value, otherwise
241-
it may not take into account the latest migration of the data format.
240+
up-to-date metadata (space format) in first return value, otherwise
241+
it may not take into account the latest migration of the data format.
242242
Performance overhead is up to 15%. `false` by default
243243

244244
Returns metadata and array contains one inserted row, error.
@@ -308,8 +308,8 @@ where:
308308
* `noreturn` (`?boolean`) - suppress successfully processed tuples
309309
(first return value is `nil`). `false` by default
310310
* `fetch_latest_metadata` (`?boolean`) - guarantees the
311-
up-to-date metadata (space format) in first return value, otherwise
312-
it may not take into account the latest migration of the data format.
311+
up-to-date metadata (space format) in first return value, otherwise
312+
it may not take into account the latest migration of the data format.
313313
Performance overhead is up to 15%. `false` by default
314314

315315
Returns metadata and array with inserted rows, array of errors.
@@ -450,8 +450,8 @@ where:
450450
vshard router instance. Set this parameter if your space is not
451451
a part of the default vshard cluster
452452
* `fetch_latest_metadata` (`?boolean`) - guarantees the
453-
up-to-date metadata (space format) in first return value, otherwise
454-
it may not take into account the latest migration of the data format.
453+
up-to-date metadata (space format) in first return value, otherwise
454+
it may not take into account the latest migration of the data format.
455455
Performance overhead is up to 15%. `false` by default
456456

457457
Returns metadata and array contains one row, error.
@@ -493,8 +493,8 @@ where:
493493
* `noreturn` (`?boolean`) - suppress successfully processed tuple
494494
(first return value is `nil`). `false` by default
495495
* `fetch_latest_metadata` (`?boolean`) - guarantees the
496-
up-to-date metadata (space format) in first return value, otherwise
497-
it may not take into account the latest migration of the data format.
496+
up-to-date metadata (space format) in first return value, otherwise
497+
it may not take into account the latest migration of the data format.
498498
Performance overhead is up to 15%. `false` by default
499499

500500
Returns metadata and array contains one updated row, error.
@@ -535,8 +535,8 @@ where:
535535
* `noreturn` (`?boolean`) - suppress successfully processed tuple
536536
(first return value is `nil`). `false` by default
537537
* `fetch_latest_metadata` (`?boolean`) - guarantees the
538-
up-to-date metadata (space format) in first return value, otherwise
539-
it may not take into account the latest migration of the data format.
538+
up-to-date metadata (space format) in first return value, otherwise
539+
it may not take into account the latest migration of the data format.
540540
Performance overhead is up to 15%. `false` by default
541541

542542
Returns metadata and array contains one deleted row (empty for vinyl), error.
@@ -588,8 +588,8 @@ where:
588588
* `noreturn` (`?boolean`) - suppress successfully processed tuple
589589
(first return value is `nil`). `false` by default
590590
* `fetch_latest_metadata` (`?boolean`) - guarantees the
591-
up-to-date metadata (space format) in first return value, otherwise
592-
it may not take into account the latest migration of the data format.
591+
up-to-date metadata (space format) in first return value, otherwise
592+
it may not take into account the latest migration of the data format.
593593
Performance overhead is up to 15%. `false` by default
594594

595595
Returns inserted or replaced rows and metadata or nil with error.
@@ -659,8 +659,8 @@ where:
659659
* `noreturn` (`?boolean`) - suppress successfully processed tuples
660660
(first return value is `nil`). `false` by default
661661
* `fetch_latest_metadata` (`?boolean`) - guarantees the
662-
up-to-date metadata (space format) in first return value, otherwise
663-
it may not take into account the latest migration of the data format.
662+
up-to-date metadata (space format) in first return value, otherwise
663+
it may not take into account the latest migration of the data format.
664664
Performance overhead is up to 15%. `false` by default
665665

666666
Returns metadata and array with inserted/replaced rows, array of errors.
@@ -801,8 +801,8 @@ where:
801801
* `noreturn` (`?boolean`) - suppress successfully processed tuple
802802
(first return value is `nil`). `false` by default
803803
* `fetch_latest_metadata` (`?boolean`) - guarantees the
804-
up-to-date metadata (space format) in first return value, otherwise
805-
it may not take into account the latest migration of the data format.
804+
up-to-date metadata (space format) in first return value, otherwise
805+
it may not take into account the latest migration of the data format.
806806
Performance overhead is up to 15%. `false` by default
807807

808808
Returns metadata and empty array of rows or nil, error.
@@ -868,8 +868,8 @@ where:
868868
* `noreturn` (`?boolean`) - suppress successfully processed tuples
869869
(first return value is `nil`). `false` by default
870870
* `fetch_latest_metadata` (`?boolean`) - guarantees the
871-
up-to-date metadata (space format) in first return value, otherwise
872-
it may not take into account the latest migration of the data format.
871+
up-to-date metadata (space format) in first return value, otherwise
872+
it may not take into account the latest migration of the data format.
873873
Performance overhead is up to 15%. `false` by default
874874

875875
Returns metadata and array of errors.
@@ -1014,8 +1014,8 @@ where:
10141014
* `yield_every` (`?number`) - number of tuples processed on storage to yield after,
10151015
`yield_every` should be > 0, default value is 1000
10161016
* `fetch_latest_metadata` (`?boolean`) - guarantees the
1017-
up-to-date metadata (space format) in first return value, otherwise
1018-
it may not take into account the latest migration of the data format.
1017+
up-to-date metadata (space format) in first return value, otherwise
1018+
it may not take into account the latest migration of the data format.
10191019
Performance overhead is up to 15%. `false` by default
10201020

10211021

0 commit comments

Comments
 (0)