Skip to content

Commit d1d2fba

Browse files
m-kusdroserasprout
andauthored
Coinbase datasource: disable candle caching (#172)
* Coinbase datasource: disable candle caching * Move to the next release Co-authored-by: Lev Gorodetskiy <[email protected]>
1 parent cfe8824 commit d1d2fba

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
### Fixed
66

77
* tzkt: Realtime connection watchdog is no longer triggered after TzKT outtage.
8-
* init: Fixed missing imports in handlers generated during init.
8+
* codegen: Fixed missing imports in handlers generated during init.
9+
* coinbase: Candles caching disabled.
910
* index: Fixed head index callback invocation.
1011

1112
### Added

src/dipdup/datasources/coinbase/datasource.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ async def get_candles(self, since: datetime, until: datetime, interval: CandleIn
4646
'end': _until.replace(tzinfo=timezone.utc).isoformat(),
4747
'granularity': interval.seconds,
4848
},
49-
cache=True,
5049
)
5150
candles += [CandleData.from_json(c) for c in candles_json]
5251
return sorted(candles, key=lambda c: c.timestamp)

0 commit comments

Comments
 (0)