Skip to content

Commit

Permalink
Merge pull request #136 from reservoirprotocol/ofir/platf-4273-invest…
Browse files Browse the repository at this point in the history
…igate-spikes-in-rarible-orders-on-polygon-platform

feat: disable rarible
  • Loading branch information
nofir authored Sep 12, 2024
2 parents 9895d2c + 7c72656 commit 188ebe3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/jobs/rarible-sync/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { acquireLock, redis } from "../../common/redis";
import { config } from "../../config";

if (config.doRealtimeWork) {
if (_.indexOf([1, 137], config.chainId) !== -1) {
if (_.indexOf([0], config.chainId) !== -1) {
cron.schedule("*/5 * * * * *", async () => {
const lockAcquired = await acquireLock("rarible-sync-lock", 60 * 5);
if (lockAcquired) {
Expand Down

0 comments on commit 188ebe3

Please sign in to comment.