Skip to content

Commit

Permalink
Fix jupyter integration with GDrive connector (#7967)
Browse files Browse the repository at this point in the history
GitOrigin-RevId: 0b3b108954faf9d04ee8e201700c2c5d2252c7da
  • Loading branch information
szymondudycz authored and Manul from Pathway committed Jan 7, 2025
1 parent 78878d4 commit 8e8dac4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased]

### Fixed
- Google Drive connector in static mode now correctly displays in jupyter visualizations.

## [0.16.3] - 2025-01-02

### Added
Expand Down
4 changes: 4 additions & 0 deletions python/pathway/io/gdrive/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -296,6 +296,10 @@ def _session_type(self) -> SessionType:
def _with_metadata(self) -> bool:
return self._append_metadata

@property
def _deletions_enabled(self) -> bool:
return self._mode == "streaming"

def run(self) -> None:
client = _GDriveClient(
self._credentials_factory(),
Expand Down

0 comments on commit 8e8dac4

Please sign in to comment.