This repository was archived by the owner on Feb 12, 2024. It is now read-only.
File tree 1 file changed +3
-2
lines changed 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ const PubsubDatastore = require('./pubsub-datastore')
5
5
const OfflineDatastore = require ( './offline-datastore' )
6
6
const DnsDatastore = require ( './experimental/dns-datastore' )
7
7
const MDnsDatastore = require ( './experimental/mdns-datastore' )
8
- const WorkersDatastore = require ( './experimental/workers-datastore' )
8
+ // const WorkersDatastore = require('./experimental/workers-datastore')
9
9
const ExperimentalTieredDatastore = require ( './experimental/tiered-datastore' )
10
10
/**
11
11
* @typedef { import("../../index") } IPFS
@@ -21,7 +21,8 @@ module.exports = (ipfs) => {
21
21
// Setup online routing for IPNS with a tiered routing composed by a DHT and a Pubsub router (if properly enabled)
22
22
const ipnsStores = [ ]
23
23
if ( ipfs . _options . EXPERIMENTAL . ipnsDNS ) {
24
- ipnsStores . push ( new WorkersDatastore ( ipfs . _options . ipns ) )
24
+ // something is wrong with the workers code disabled for now
25
+ // ipnsStores.push(new WorkersDatastore(ipfs._options.ipns))
25
26
ipnsStores . push ( new DnsDatastore ( ipfs . _options . ipns ) )
26
27
ipnsStores . push ( new MDnsDatastore ( ipfs . _options . ipns ) )
27
28
return new ExperimentalTieredDatastore ( ipnsStores )
You can’t perform that action at this time.
0 commit comments