Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion assets/js/worldmap_v2.js
Original file line number Diff line number Diff line change
Expand Up @@ -169,4 +169,4 @@ export function updateWorldmap(worldmapDatas) {
markerClusterGroup.addLayer(marker); // ⬅️ on réutilise le groupe existant
}
});
}
}
3 changes: 3 additions & 0 deletions config/dev.exs
Original file line number Diff line number Diff line change
Expand Up @@ -183,3 +183,6 @@ config :archethic, :throttle,
period: 1000,
limit: System.get_env("ARCHETHIC_THROTTLE_IP_AND_PATH", "5000") |> String.to_integer()
]

# Apply geopatch in 1min 10 sec (needs to be over global timeout)
config :archethic, :geopatch_update_time, 70000
3 changes: 3 additions & 0 deletions config/prod.exs
Original file line number Diff line number Diff line change
Expand Up @@ -283,3 +283,6 @@ config :archethic, :throttle,
period: 1000,
limit: System.get_env("ARCHETHIC_THROTTLE_IP_AND_PATH", "20") |> String.to_integer()
]

# Apply geopatch in 10 min (needs to be over global timeout)
config :archethic, :geopatch_update_time, 600_000
3 changes: 3 additions & 0 deletions config/test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -225,3 +225,6 @@ config :archethic, Archethic.P2P.Message.GetUnspentOutputs, threshold: 1_000
config :archethic, Archethic.P2P.Message.ValidateSmartContractCall, timeout: 50

config :archethic, Archethic.Contracts.Wasm.IO, MockWasmIO

# Apply geopatch in 1min 10 sec (needs to be over global timeout)
config :archethic, :geopatch_update_time, 70000
Loading
Loading