@cumulus/move-granules 21.0.1 → 21.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -20,6 +20,8 @@ Config object fields:
20
20
  | moveStagedFiles | boolean | `true` | | Can set to `false` to skip moving files from the staging location. Defaults to `true`.
21
21
  | s3MultipartChunksizeMb | number | | | S3 multipart upload chunk size in MB. If none is specified, the default `default_s3_multipart_chunksize_mb` is used.
22
22
  | checkCrossCollectionCollisions | boolean | true | true/false | Default behavior configures MoveGranules to use the API to determine if a file collision is the result of a file registered to a granule in another collection, and if it is, fail (ignoring `duplicateHandling` configuration). Setting this value to false disables that check and MoveGranules will not use database checks and assume all collisions are due to same-collection collisions.
23
+ | collectionCheckRetryCount | number | 3 | | "Number of times to retry checking for existing files in the collection when checkCrossCollectionCollisions is true. Default is 3.
24
+ | crossCollectionThrowOnObjectNotFound | boolean | false | true/false | If checkCrossCollectionCollisions is set to true, when checking for cross-collection collisions, throw an error if a file is not found in the database. If false, files not found in the database will assume an orphan that can be overwritten. Default is false.
23
25
 
24
26
  ### Input
25
27
 
@@ -35,7 +37,7 @@ Output object fields:
35
37
 
36
38
  | field name | type | default | description
37
39
  | ---------- | ---- | ------- | -----------
38
- granules | array\<object\> | N/A | List of granule objects with updated S3 location information
40
+ | granules | array\<object\> | N/A | List of granule objects with updated S3 location information
39
41
 
40
42
  ## About Cumulus
41
43