Skip to content

Commit 69d6ac2

Browse files
committed
Update the link to massive connecting documentaion
1 parent 1190f4f commit 69d6ac2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ In order to instantiate a `MassiveActionHandler`, four arguments are needed:
2424

2525
- `handlerVersions`: This is an array of `HandlerVersion`s. For more information, [see the `demux-js` documentation](https://eosio.github.io/demux-js/classes/abstractactionhandler.html#applyupdaters).
2626

27-
- `massiveInstance`: A connected massive database connection object. demux-js-postgress requires that you have a Postgres server running version 9.6 or greater. **It is highly recommended that you use the `massive` object exported from this library. See below for more information.** For more information on how to configure and instantiate this object, see the [massivejs documentation](https://github.com/dmfay/massive-js#connecting-to-a-database).
27+
- `massiveInstance`: A connected massive database connection object. demux-js-postgress requires that you have a Postgres server running version 9.6 or greater. **It is highly recommended that you use the `massive` object exported from this library. See below for more information.** For more information on how to configure and instantiate this object, see the [massivejs documentation](https://massivejs.org/docs/connecting).
2828

2929
- `dbSchema`: The name of the schema we will operate in.
3030

@@ -106,7 +106,7 @@ const handlerVersions = require("./handlerVersions") // Import your handler vers
106106
// See "Migrations" section above
107107
const migrationSequences = require("./migrationSequences")
108108

109-
// See https://dmfay.github.io/massive-js/connecting.html for info on massive configuration
109+
// See https://massivejs.org/docs/connecting for info on massive configuration
110110
const dbConfig = { ... }
111111

112112
massive(dbConfig).then((db) => {

0 commit comments

Comments
 (0)