Skip to content
1 change: 1 addition & 0 deletions lib/iris/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ dependencies = [
"connect-python>=0.9.0",
"fsspec>=2024.0.0",
"gcsfs>=2024.0.0",
"google-auth>=2.0",
"s3fs>=2024.0.0",
"grpcio>=1.76.0",
"httpx>=0.28.1",
Expand Down
3 changes: 3 additions & 0 deletions lib/iris/src/iris/cluster/providers/gcp/fake.py
Original file line number Diff line number Diff line change
Expand Up @@ -375,6 +375,9 @@ def vm_get_serial_port_output(self, name: str, zone: str, start: int = 0) -> str
full_output = self._serial_port_output.get((name, zone), "")
return full_output[start:]

def logging_read(self, filter_str: str, limit: int = 200) -> list[str]:
return []

# ========================================================================
# LOCAL mode: worker spawning
# ========================================================================
Expand Down
Loading
Loading