Skip to content

Commit 8e8dac4

Browse files
szymondudyczManul from Pathway
authored and
Manul from Pathway
committed
Fix jupyter integration with GDrive connector (#7967)
GitOrigin-RevId: 0b3b108954faf9d04ee8e201700c2c5d2252c7da
1 parent 78878d4 commit 8e8dac4

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ All notable changes to this project will be documented in this file.
55
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66
## [Unreleased]
77

8+
### Fixed
9+
- Google Drive connector in static mode now correctly displays in jupyter visualizations.
10+
811
## [0.16.3] - 2025-01-02
912

1013
### Added

python/pathway/io/gdrive/__init__.py

+4
Original file line numberDiff line numberDiff line change
@@ -296,6 +296,10 @@ def _session_type(self) -> SessionType:
296296
def _with_metadata(self) -> bool:
297297
return self._append_metadata
298298

299+
@property
300+
def _deletions_enabled(self) -> bool:
301+
return self._mode == "streaming"
302+
299303
def run(self) -> None:
300304
client = _GDriveClient(
301305
self._credentials_factory(),

0 commit comments

Comments
 (0)