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 494a01c commit 4d6dbd1Copy full SHA for 4d6dbd1
Project.toml
@@ -1,6 +1,6 @@
1
name = "CUDA"
2
uuid = "052768ef-5323-5732-b1bb-66c8b64840ba"
3
-version = "3.9.1"
+version = "3.9.2"
4
5
[deps]
6
AbstractFFTs = "621f4979-c628-5d54-868e-fcf4e3e8185c"
src/pool.jl
@@ -126,7 +126,16 @@ function pool_cleanup()
126
end
127
128
129
- sleep(60)
+ try
130
+ sleep(60)
131
+ catch ex
132
+ if ex isa EOFError
133
+ # If we get EOF here, it's because Julia is shutting down, so we should just exit the loop
134
+ break
135
+ else
136
+ rethrow()
137
+ end
138
139
140
141
0 commit comments