Skip to content

Commit

Permalink
Disable pining
Browse files Browse the repository at this point in the history
  • Loading branch information
olehmell committed Mar 26, 2024
1 parent 9f9f1ad commit 05fe57a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions deployment/overlays/production/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ data:
IPFS_CLUSTER_URL: http://new-ipfs-cluster:9094
IPFS_GATEWAY_URL: https://ipfs.subsocial.network
IPFS_MAX_FILE_SIZE_BYTES: "2097152"
IPFS_NODE_URL: http://new-ipfs-cluster:5001
IPFS_NODE_URL: https://ipfs-gw.decloud.foundation
IPFS_READ_ONLY_NODE_URL: http://new-ipfs-cluster:8080
IPFS_CRUST_AUTH: ''
IPFS_CRUST_AUTH: 'Basic c3ViLTVGQTluUURWZzI2N0RFZDhtMVp5cFhMQm52TjdTRnhZd1Y3bmRxU1lHaU45VFRwdToweDEwMmQ3ZmJhYWQwZGUwNzFjNDFmM2NjYzQzYmQ0NzIxNzFkZGFiYWM0MzEzZTc5YTY3ZWExOWM0OWFlNjgyZjY0YWUxMmRlY2YyNzhjNTEwZGY4YzZjZTZhYzdlZTEwNzY2N2YzYTBjZjM5OGUxN2VhMzAyMmRkNmEyYjc1OTBi='
KUSAMA_NODE_URL: wss://kusama-rpc.polkadot.io
LOG_LEVEL: info
MAX_RESULTS_LIMIT: "20"
Expand Down
4 changes: 2 additions & 2 deletions src/ipfs/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ function getIpfsApi() {
ipfs,
saveAndPinJson: async (content: Record<any, any>) => {
const cid = await ipfs.saveJson(content)
ipfs.pinContent(cid, props)
// ipfs.pinContent(cid, props)
return cid
},
saveAndPinFile: async (file: any) => {
const cid = await ipfs.saveFile(file)
ipfs.pinContent(cid, props)
// ipfs.pinContent(cid, props)
return cid
},
}
Expand Down

0 comments on commit 05fe57a

Please sign in to comment.