We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 08d0d1d commit 7840b7cCopy full SHA for 7840b7c
rock_spawner/services/pod.py
@@ -26,9 +26,6 @@ def __init__(self):
26
async def create_pod(self) -> PodRef:
27
"""Creates a pod with the app image.
28
29
- Args:
30
- wait (bool): Whether to wait for the pod to be running before returning.
31
-
32
Returns:
33
PodRef: The pod descriptor.
34
"""
rock_spawner/services/r.py
@@ -49,7 +49,7 @@ async def get_datashield_packages(self) -> Dict:
49
async def connect(self):
50
"""Connects to the R server."""
51
if self.pod is None:
52
- self.pod = await PodService().create_pod(wait=True)
+ self.pod = await PodService().create_pod()
53
await self._ensure_ready(self.pod)
54
55
async def close(self):
0 commit comments