Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make Waiting.resume() idempotent (#285) #286

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/plumpy/process_states.py
Original file line number Diff line number Diff line change
Expand Up @@ -336,6 +336,10 @@ async def execute(self) -> State: # type: ignore # pylint: disable=invalid-over

def resume(self, value: Any = NULL) -> None:
assert self._waiting_future is not None, 'Not yet waiting'

if self._waiting_future.done():
return

self._waiting_future.set_result(value)


Expand Down
11 changes: 5 additions & 6 deletions test/rmq/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,15 @@
version: '3.4'

services:

rabbit:
image: rabbitmq:3.8.3-management
container_name: plumpy-rmq
image: rabbitmq:3-management-alpine
container_name: plumpy_rmq
ports:
- 5672:5672
- 15672:15672
environment:
RABBITMQ_DEFAULT_USER: guest
RABBITMQ_DEFAULT_PASS: guest
ports:
- '5672:5672'
- '15672:15672'
healthcheck:
test: rabbitmq-diagnostics -q ping
interval: 30s
Expand Down
25 changes: 25 additions & 0 deletions test/test_processes.py
Original file line number Diff line number Diff line change
Expand Up @@ -836,6 +836,31 @@ async def async_test():
loop.create_task(proc.step_until_terminated())
loop.run_until_complete(async_test())

def test_double_restart(self):
"""Test that consecutive restarts do not cause any issues, this is tested for concurrency reasons."""
loop = asyncio.get_event_loop()
proc = _RestartProcess()

async def async_test():
await utils.run_until_waiting(proc)

# Save the state of the process
saved_state = plumpy.Bundle(proc)

# Load a process from the saved state
loaded_proc = saved_state.unbundle()
self.assertEqual(loaded_proc.state, ProcessState.WAITING)

# Now resume it twice in succession
loaded_proc.resume()
loaded_proc.resume()

await loaded_proc.step_until_terminated()
self.assertEqual(loaded_proc.outputs, {'finished': True})

loop.create_task(proc.step_until_terminated())
loop.run_until_complete(async_test())

def test_wait_save_continue(self):
""" Test that process saved while in WAITING state restarts correctly when loaded """
loop = asyncio.get_event_loop()
Expand Down
Loading