Skip to content

Commit 7840b7c

Browse files
committed
fix: no wait args
1 parent 08d0d1d commit 7840b7c

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

Diff for: rock_spawner/services/pod.py

-3
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,6 @@ def __init__(self):
2626
async def create_pod(self) -> PodRef:
2727
"""Creates a pod with the app image.
2828
29-
Args:
30-
wait (bool): Whether to wait for the pod to be running before returning.
31-
3229
Returns:
3330
PodRef: The pod descriptor.
3431
"""

Diff for: rock_spawner/services/r.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ async def get_datashield_packages(self) -> Dict:
4949
async def connect(self):
5050
"""Connects to the R server."""
5151
if self.pod is None:
52-
self.pod = await PodService().create_pod(wait=True)
52+
self.pod = await PodService().create_pod()
5353
await self._ensure_ready(self.pod)
5454

5555
async def close(self):

0 commit comments

Comments
 (0)