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

Replace Distributed with Malt soon! #2240

Merged
merged 46 commits into from
Sep 18, 2023
Merged
Changes from 1 commit
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
906838c
Format WorkspaceManager
savq Aug 1, 2022
b1463dd
Replace Distributed with Malt
savq Sep 3, 2022
ec8d989
Discard changes to test/Bonds.jl
fonsp Jul 9, 2023
a3ca342
Discard changes to test/Logging.jl
fonsp Jul 9, 2023
88cb7b4
Discard changes to test/ReloadFromFile.jl
fonsp Jul 9, 2023
1d34ff6
Discard changes to test/React.jl
fonsp Jul 9, 2023
8b1179b
Discard changes to test/RichOutput.jl
fonsp Jul 9, 2023
31e98ac
Discard changes to test/Notebook.jl
fonsp Jul 9, 2023
3fb2def
Discard changes to test/MacroAnalysis.jl
fonsp Jul 9, 2023
080bd40
Discard changes to test/cell_disabling.jl
fonsp Jul 9, 2023
00cc360
Discard changes to test/compiletimes.jl
fonsp Jul 9, 2023
bca2d58
Discard changes to test/webserver.jl
fonsp Jul 9, 2023
2afc06a
Discard changes to src/Configuration.jl
fonsp Jul 9, 2023
3d0e892
small updates
fonsp Jul 9, 2023
2195960
bring back workspace_use_distributed and workspace_use_distributed_st…
fonsp Jul 9, 2023
b2bb80b
fixiefix its broken but close
fonsp Jul 9, 2023
0e8f3b4
tiny fix
fonsp Jul 15, 2023
e329468
hmmmmm
fonsp Jul 15, 2023
4279352
fix: ref: https://github.com/esm-dev/esm.sh/issues/703
pankgeorg Aug 9, 2023
46544ec
Merge branch 'main' into pr/2240
fonsp Sep 12, 2023
d55c381
Merge branch 'malt' of https://github.com/savq/Pluto.jl into pr/2240
fonsp Sep 12, 2023
3525864
Merge branch 'main' into pr/2240
fonsp Sep 12, 2023
3ee93ac
small fixes
fonsp Sep 12, 2023
cabb52c
Merge branch 'main' into pr/2240
fonsp Sep 12, 2023
6cc8a54
fixiefix
fonsp Sep 12, 2023
8dba389
Malt 1.0 compat
fonsp Sep 12, 2023
c082c78
verify_no_running_processes
fonsp Sep 12, 2023
9fdebd6
enable Malt by default for testing this PR
fonsp Sep 12, 2023
aeeb191
nothing
fonsp Sep 12, 2023
8d5a0e7
huh
fonsp Sep 12, 2023
eb161b0
asdf
fonsp Sep 12, 2023
69569b9
asdf
fonsp Sep 12, 2023
abb0a79
Malt 1.0.2
fonsp Sep 12, 2023
92ed141
Merge branch 'main' into pr/2240
fonsp Sep 12, 2023
c4bb0e2
fix test
fonsp Sep 12, 2023
45e6e1b
Test setting OPENBLAS_NUM_THREADS=1 on windows for Malt.Worker
Pangoraw Sep 13, 2023
97deb81
Merge branch 'main' into malt
fonsp Sep 13, 2023
ed12abe
Merge branch 'main' into malt
fonsp Sep 13, 2023
82de248
trying JULIA_NUM_PRECOMPILE_TASKS=1
fonsp Sep 14, 2023
d542e4c
Revert "trying JULIA_NUM_PRECOMPILE_TASKS=1"
fonsp Sep 18, 2023
07101de
Revert "Test setting OPENBLAS_NUM_THREADS=1 on windows for Malt.Worker"
fonsp Sep 18, 2023
27307e3
Disable Malt by default
fonsp Sep 18, 2023
7b09e1d
Put back some workspace_use_distributed=false in tests
fonsp Sep 18, 2023
a37fd31
one more distributed test disable
fonsp Sep 18, 2023
fd8c68a
test Malt by default again...
fonsp Sep 18, 2023
0106663
Disable Malt by default again
fonsp Sep 18, 2023
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
Prev Previous commit
Next Next commit
Put back some workspace_use_distributed=false in tests
  • Loading branch information
fonsp committed Sep 18, 2023
commit 7b09e1dc91901c8be2d8c6f967bd1ec2e52d950e
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -38,7 +38,7 @@ HTTP = "^1.5.2"
HypertextLiteral = "0.7, 0.8, 0.9"
LoggingExtras = "0.4, 1"
MIMEs = "0.1"
Malt = "1.0.2"
Malt = "1.0.3"
MsgPack = "1.1"
PrecompileSignatures = "3"
PrecompileTools = "1"
2 changes: 1 addition & 1 deletion test/Configuration.jl
Original file line number Diff line number Diff line change
@@ -59,7 +59,7 @@ end

@testset "Authentication" begin
port = 1238
options = Pluto.Configuration.from_flat_kwargs(; port, launch_browser=false)
options = Pluto.Configuration.from_flat_kwargs(; port, launch_browser=false, workspace_use_distributed=false)
🍭 = Pluto.ServerSession(; options)
host = 🍭.options.server.host
secret = 🍭.secret
1 change: 1 addition & 0 deletions test/DependencyCache.jl
Original file line number Diff line number Diff line change
@@ -5,6 +5,7 @@ using Pluto: update_run!, ServerSession, ClientSession, Cell, Notebook

@testset "CellDepencencyVisualization" begin
🍭 = ServerSession()
🍭.options.evaluation.workspace_use_distributed = false

notebook = Notebook([
Cell("x = 1"), # prerequisite of test cell
Loading