From 006c4f679fb4f0e822dd734e41aaf527b8469a4b Mon Sep 17 00:00:00 2001 From: Fons van der Plas Date: Tue, 12 Sep 2023 21:39:46 +0200 Subject: [PATCH] fix Serialization not defined --- Project.toml | 2 +- src/worker.jl | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 4249244..a84783d 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "Malt" uuid = "36869731-bdee-424d-aa32-cab38c994e3b" authors = ["Sergio Alejandro Vargas "] -version = "1.0.1" +version = "1.0.2" [deps] Distributed = "8ba89e20-285c-5b6f-9357-94700520ee1b" diff --git a/src/worker.jl b/src/worker.jl index 6d2dea9..0aa8240 100644 --- a/src/worker.jl +++ b/src/worker.jl @@ -1,6 +1,8 @@ +pushfirst!(LOAD_PATH, "@stdlib") using Logging: Logging, @debug using Serialization: serialize, deserialize using Sockets: Sockets +popfirst!(LOAD_PATH) ## Allow catching InterruptExceptions Base.exit_on_sigint(false)