We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1eea436 commit 6b9a1afCopy full SHA for 6b9a1af
src/stream.jl
@@ -152,6 +152,10 @@ remove_waiters!(stream::Stream, waiter::Integer) =
152
remove_waiters!(stream::Stream, Int[waiter])
153
154
function migrate_stream!(stream::Stream, w::Integer=myid())
155
+ if !isdefined(MemPool, :migrate!)
156
+ @warn "MemPool migration support not enabled!" maxlog=1
157
+ return
158
+ end
159
# Perform migration of the StreamStore
160
# MemPool will block access to the new ref until the migration completes
161
if stream.store_ref.handle.owner != w
0 commit comments