added plots, resolved some issues
This commit is contained in:
parent
3fd628f5cf
commit
cd56bd5e4a
4
.gitignore
vendored
Normal file
4
.gitignore
vendored
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
public/*
|
||||||
|
!public/css/
|
||||||
|
!public/css/autogenerated.css
|
||||||
|
log/*
|
||||||
@ -1,12 +1,12 @@
|
|||||||
# Julia_imzML_GUI<br />
|
# Julia_imzML_GUI<br />
|
||||||
A Graphical User Interface created with Julia Genie Builder made for this repository: https://github.com/CINVESTAV-LABI/julia_mzML_imzML that generates images with the imzML and ibd files.<br />
|
A Graphical User Interface created with Julia Genie Builder made for this repository: https://github.com/CINVESTAV-LABI/julia_mzML_imzML that generates images with the imzML and ibd files.<br />
|
||||||
For this to work you must insert the next lines as they are depicted in your Julia terminal for the first time only.<br />
|
For this to work you must insert the next lines as they are depicted in your Julia terminal for the first time only: <br />
|
||||||
```
|
```
|
||||||
julia
|
julia
|
||||||
]
|
]
|
||||||
add Pkg Libz ; add https://github.com/CINVESTAV-LABI/julia_mzML_imzML
|
add Pkg Libz ; add https://github.com/CINVESTAV-LABI/julia_mzML_imzML ; add PlotlyBase
|
||||||
```
|
```
|
||||||
Then open a terminal on the directory "JuliaIMZML_GUI"and type: <br />
|
Then open a terminal on the directory "JuliaIMZML_GUI" and put the next code: <br />
|
||||||
```
|
```
|
||||||
julia
|
julia
|
||||||
]
|
]
|
||||||
|
|||||||
36
app.jl
36
app.jl
@ -1,16 +1,10 @@
|
|||||||
module App
|
module App
|
||||||
# == Packages ==
|
# == Packages ==
|
||||||
# set up Genie development environment. Use the Package Manager to install new packages
|
# set up Genie development environment.
|
||||||
#MUST FIRST USE IN TERMINAL:
|
|
||||||
#julia
|
|
||||||
#]
|
|
||||||
#add Pkg Libz
|
|
||||||
##to add the custom package go to terminal:
|
|
||||||
#add https://github.com/CINVESTAV-LABI/julia_mzML_imzML
|
|
||||||
using GenieFramework
|
using GenieFramework
|
||||||
using Pkg
|
using Pkg
|
||||||
using Libz
|
using Libz
|
||||||
using Plots
|
using PlotlyBase
|
||||||
using julia_mzML_imzML
|
using julia_mzML_imzML
|
||||||
@genietools
|
@genietools
|
||||||
|
|
||||||
@ -18,10 +12,6 @@ using julia_mzML_imzML
|
|||||||
# add your data analysis code here or in the lib folder. Code in lib/ will be
|
# add your data analysis code here or in the lib folder. Code in lib/ will be
|
||||||
# automatically loaded
|
# automatically loaded
|
||||||
|
|
||||||
function contains_word(x, word) #ease to read
|
|
||||||
occursin(word, x)
|
|
||||||
end
|
|
||||||
|
|
||||||
# == Reactive code ==
|
# == Reactive code ==
|
||||||
# add reactive code to make the UI interactive
|
# add reactive code to make the UI interactive
|
||||||
@app begin
|
@app begin
|
||||||
@ -56,6 +46,22 @@ end
|
|||||||
@in msgimg = ""
|
@in msgimg = ""
|
||||||
@in msgtriq = ""
|
@in msgtriq = ""
|
||||||
@out full_route = ""
|
@out full_route = ""
|
||||||
|
layoutSpectra = PlotlyBase.Layout(
|
||||||
|
title = "Spectra Plot",
|
||||||
|
xaxis = PlotlyBase.attr(
|
||||||
|
title = "X Axis",
|
||||||
|
showgrid = true
|
||||||
|
),
|
||||||
|
yaxis = PlotlyBase.attr(
|
||||||
|
title = "Y Axis",
|
||||||
|
showgrid = true
|
||||||
|
),
|
||||||
|
width = 450,
|
||||||
|
height = 500
|
||||||
|
)
|
||||||
|
traceSpectra = PlotlyBase.scatter(x=[], y=[], mode="lines+markers")
|
||||||
|
@out plotdata = [traceSpectra]
|
||||||
|
@out plotlayout = layoutSpectra
|
||||||
|
|
||||||
# == Reactive handlers ==
|
# == Reactive handlers ==
|
||||||
# reactive handlers watch a variable and execute a block of code when
|
# reactive handlers watch a variable and execute a block of code when
|
||||||
@ -67,8 +73,7 @@ end
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
@onchange file_name begin
|
@onchange file_name begin
|
||||||
#if contains_word(file_name, ".imzML")
|
if contains(file_name,".imzML")
|
||||||
if occursin(".imzML",file_name)
|
|
||||||
warning_fr = ""
|
warning_fr = ""
|
||||||
full_route = joinpath( file_route, file_name )
|
full_route = joinpath( file_route, file_name )
|
||||||
else
|
else
|
||||||
@ -113,6 +118,8 @@ end
|
|||||||
msgimg = "image with the Nmass of $(Int(Nmass))"
|
msgimg = "image with the Nmass of $(Int(Nmass))"
|
||||||
end
|
end
|
||||||
msg = "The file has been created inside the 'public' folder of the app"
|
msg = "The file has been created inside the 'public' folder of the app"
|
||||||
|
traceSpectra = PlotlyBase.scatter(x = spectra[1, 4], y = spectra[2, 4], mode="lines+markers")
|
||||||
|
plotdata = [traceSpectra] # we add the data of spectra to the plot
|
||||||
else
|
else
|
||||||
msg = "File does not exist or a parameter was not well inputted"
|
msg = "File does not exist or a parameter was not well inputted"
|
||||||
end
|
end
|
||||||
@ -170,6 +177,7 @@ end
|
|||||||
msgtriq = "TrIQ image with the Nmass of $(indeximgTriq)"
|
msgtriq = "TrIQ image with the Nmass of $(indeximgTriq)"
|
||||||
lastimgTriq = indeximgTriq
|
lastimgTriq = indeximgTriq
|
||||||
end
|
end
|
||||||
|
GC.gc() # Trigger garbage collection
|
||||||
end
|
end
|
||||||
# == Pages ==
|
# == Pages ==
|
||||||
# register a new route and the page that will be loaded on access
|
# register a new route and the page that will be loaded on access
|
||||||
|
|||||||
@ -46,7 +46,7 @@
|
|||||||
<p>{{msg}}</p>
|
<p>{{msg}}</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<!--<plotly id="i1j1o" data="plotdata"></plotly>-->
|
<plotly :data="plotdata" :layout="plotlayout"> </plotly>
|
||||||
</div>
|
</div>
|
||||||
<div class="st-col col-12 col-sm st-module">
|
<div class="st-col col-12 col-sm st-module">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
|
|||||||
@ -7,3 +7,941 @@
|
|||||||
└ @ Genie.Server /home/pixelguy14/.julia/packages/Genie/uliWf/src/Server.jl:182
|
└ @ Genie.Server /home/pixelguy14/.julia/packages/Genie/uliWf/src/Server.jl:182
|
||||||
┌ Info: 2024-08-21 11:41:07 Listening on: 127.0.0.1:8000, thread id: 1
|
┌ Info: 2024-08-21 11:41:07 Listening on: 127.0.0.1:8000, thread id: 1
|
||||||
└ @ HTTP.Servers /home/pixelguy14/.julia/packages/HTTP/sJD5V/src/Servers.jl:382
|
└ @ HTTP.Servers /home/pixelguy14/.julia/packages/HTTP/sJD5V/src/Servers.jl:382
|
||||||
|
┌ Info: 2024-08-21 11:54:41 Watching ["/var/home/pixelguy14/Documentos/CINVESTAV_2024/Julia_imzML_GUI"]
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:19
|
||||||
|
┌ Info: 2024-08-21 11:54:42 Autoreloading
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:22
|
||||||
|
┌ Info: 2024-08-21 11:54:43
|
||||||
|
│ Web Server starting at http://127.0.0.1:8000
|
||||||
|
└ @ Genie.Server /home/pixelguy14/.julia/packages/Genie/uliWf/src/Server.jl:182
|
||||||
|
┌ Info: 2024-08-21 11:54:43 Listening on: 127.0.0.1:8000, thread id: 1
|
||||||
|
└ @ HTTP.Servers /home/pixelguy14/.julia/packages/HTTP/sJD5V/src/Servers.jl:382
|
||||||
|
┌ Info: 2024-08-21 12:01:30 Autoreloading
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:22
|
||||||
|
┌ Info: 2024-08-21 13:02:49 Watching ["/var/home/pixelguy14/Documentos/CINVESTAV_2024/Julia_imzML_GUI"]
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:19
|
||||||
|
┌ Info: 2024-08-21 13:02:50 Autoreloading
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:22
|
||||||
|
┌ Info: 2024-08-21 13:02:51
|
||||||
|
│ Web Server starting at http://127.0.0.1:8000
|
||||||
|
└ @ Genie.Server /home/pixelguy14/.julia/packages/Genie/uliWf/src/Server.jl:182
|
||||||
|
┌ Info: 2024-08-21 13:02:51 Listening on: 127.0.0.1:8000, thread id: 1
|
||||||
|
└ @ HTTP.Servers /home/pixelguy14/.julia/packages/HTTP/sJD5V/src/Servers.jl:382
|
||||||
|
┌ Info: 2024-08-21 13:03:18
|
||||||
|
│ Web Server starting at http://127.0.0.1:8000
|
||||||
|
└ @ Genie.Server /home/pixelguy14/.julia/packages/Genie/uliWf/src/Server.jl:182
|
||||||
|
┌ Error: 2024-08-21 13:04:53 Failed to revise /var/home/pixelguy14/Documentos/CINVESTAV_2024/Julia_imzML_GUI/app.jl
|
||||||
|
│ exception = Revise.ReviseEvalException("/var/home/pixelguy14/Documentos/CINVESTAV_2024/Julia_imzML_GUI/app.jl:53", UndefVarError(:Layout), Any[(top-level scope at app.jl:53, 1)])
|
||||||
|
└ @ Revise /home/pixelguy14/.julia/packages/Revise/W4D4d/src/packagedef.jl:722
|
||||||
|
┌ Warning: 2024-08-21 13:04:54 The running code does not match the saved version for the following files:
|
||||||
|
│
|
||||||
|
│ /var/home/pixelguy14/Documentos/CINVESTAV_2024/Julia_imzML_GUI/app.jl
|
||||||
|
│
|
||||||
|
│ If the error was due to evaluation order, it can sometimes be resolved by calling `Revise.retry()`.
|
||||||
|
│ Use Revise.errors() to report errors again. Only the first error in each file is shown.
|
||||||
|
│ Your prompt color may be yellow until the errors are resolved.
|
||||||
|
└ @ Revise /home/pixelguy14/.julia/packages/Revise/W4D4d/src/packagedef.jl:832
|
||||||
|
┌ Info: 2024-08-21 13:06:15 Watching ["/var/home/pixelguy14/Documentos/CINVESTAV_2024/Julia_imzML_GUI"]
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:19
|
||||||
|
┌ Info: 2024-08-21 13:06:16 Autoreloading
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:22
|
||||||
|
┌ Info: 2024-08-21 13:06:18
|
||||||
|
│ Web Server starting at http://127.0.0.1:8000
|
||||||
|
└ @ Genie.Server /home/pixelguy14/.julia/packages/Genie/uliWf/src/Server.jl:182
|
||||||
|
┌ Info: 2024-08-21 13:06:55 Autoreloading
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:22
|
||||||
|
┌ Info: 2024-08-21 13:11:19 Autoreloading
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:22
|
||||||
|
┌ Info: 2024-08-21 13:15:44 Autoreloading
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:22
|
||||||
|
┌ Info: 2024-08-21 13:16:33 Watching ["/var/home/pixelguy14/Documentos/CINVESTAV_2024/Julia_imzML_GUI"]
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:19
|
||||||
|
┌ Info: 2024-08-21 13:16:34 Autoreloading
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:22
|
||||||
|
┌ Info: 2024-08-21 13:16:36
|
||||||
|
│ Web Server starting at http://127.0.0.1:8000
|
||||||
|
└ @ Genie.Server /home/pixelguy14/.julia/packages/Genie/uliWf/src/Server.jl:182
|
||||||
|
┌ Info: 2024-08-21 13:17:06 Autoreloading
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:22
|
||||||
|
┌ Info: 2024-08-21 13:17:31 Watching ["/var/home/pixelguy14/Documentos/CINVESTAV_2024/Julia_imzML_GUI"]
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:19
|
||||||
|
┌ Info: 2024-08-21 13:17:32 Autoreloading
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:22
|
||||||
|
┌ Info: 2024-08-21 13:17:33
|
||||||
|
│ Web Server starting at http://127.0.0.1:8000
|
||||||
|
└ @ Genie.Server /home/pixelguy14/.julia/packages/Genie/uliWf/src/Server.jl:182
|
||||||
|
┌ Info: 2024-08-21 13:18:43 Autoreloading
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:22
|
||||||
|
┌ Info: 2024-08-21 13:20:36 Autoreloading
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:22
|
||||||
|
┌ Info: 2024-08-21 13:20:54 Autoreloading
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:22
|
||||||
|
┌ Info: 2024-08-21 13:21:13 Watching ["/var/home/pixelguy14/Documentos/CINVESTAV_2024/Julia_imzML_GUI"]
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:19
|
||||||
|
┌ Info: 2024-08-21 13:21:13 Autoreloading
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:22
|
||||||
|
┌ Info: 2024-08-21 13:21:15
|
||||||
|
│ Web Server starting at http://127.0.0.1:8000
|
||||||
|
└ @ Genie.Server /home/pixelguy14/.julia/packages/Genie/uliWf/src/Server.jl:182
|
||||||
|
┌ Info: 2024-08-21 13:21:54 Autoreloading
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:22
|
||||||
|
┌ Info: 2024-08-21 13:22:32 Watching ["/var/home/pixelguy14/Documentos/CINVESTAV_2024/Julia_imzML_GUI"]
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:19
|
||||||
|
┌ Info: 2024-08-21 13:22:33 Autoreloading
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:22
|
||||||
|
┌ Info: 2024-08-21 13:22:34
|
||||||
|
│ Web Server starting at http://127.0.0.1:8000
|
||||||
|
└ @ Genie.Server /home/pixelguy14/.julia/packages/Genie/uliWf/src/Server.jl:182
|
||||||
|
┌ Info: 2024-08-21 13:22:48 Autoreloading
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:22
|
||||||
|
┌ Info: 2024-08-21 13:23:00 Autoreloading
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:22
|
||||||
|
┌ Info: 2024-08-21 13:23:33 Watching ["/var/home/pixelguy14/Documentos/CINVESTAV_2024/Julia_imzML_GUI"]
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:19
|
||||||
|
┌ Info: 2024-08-21 13:23:33 Autoreloading
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:22
|
||||||
|
┌ Info: 2024-08-21 13:23:34
|
||||||
|
│ Web Server starting at http://127.0.0.1:8000
|
||||||
|
└ @ Genie.Server /home/pixelguy14/.julia/packages/Genie/uliWf/src/Server.jl:182
|
||||||
|
┌ Info: 2024-08-21 13:23:34 Listening on: 127.0.0.1:8000, thread id: 1
|
||||||
|
└ @ HTTP.Servers /home/pixelguy14/.julia/packages/HTTP/sJD5V/src/Servers.jl:382
|
||||||
|
┌ Info: 2024-08-21 13:28:20 Autoreloading
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:22
|
||||||
|
┌ Info: 2024-08-21 13:31:18 Autoreloading
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:22
|
||||||
|
┌ Info: 2024-08-21 13:31:27 Autoreloading
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:22
|
||||||
|
┌ Error: 2024-08-21 13:31:28 UndefVarError: `traceSpectra` not defined
|
||||||
|
│ Stacktrace:
|
||||||
|
│ [1] Main.App.var"##Main.App_ReactiveModel!#238"()
|
||||||
|
│ @ Main.App ~/.julia/packages/Stipple/Hr6Qa/src/Stipple.jl:1052
|
||||||
|
│ [2] #invokelatest#2
|
||||||
|
│ @ ./essentials.jl:892 [inlined]
|
||||||
|
│ [3] invokelatest
|
||||||
|
│ @ ./essentials.jl:889 [inlined]
|
||||||
|
│ [4] |>
|
||||||
|
│ @ ./operators.jl:917 [inlined]
|
||||||
|
│ [5] init(t::Type{Main.App.var"Main.App_ReactiveModel"}; vue_app_name::String, endpoint::String, channel::Any, debounce::Int64, transport::Module, core_theme::Bool, always_register_channels::Bool)
|
||||||
|
│ @ Stipple ~/.julia/packages/Stipple/Hr6Qa/src/Stipple.jl:514
|
||||||
|
│ [6] init_from_storage(t::Type{Main.App.var"Main.App_ReactiveModel"}; channel::String, kwargs::@Kwargs{})
|
||||||
|
│ @ Stipple.ModelStorage.Sessions ~/.julia/packages/Stipple/Hr6Qa/src/ModelStorage.jl:25
|
||||||
|
│ [7] init_from_storage(t::Type{Main.App.var"Main.App_ReactiveModel"})
|
||||||
|
│ @ Stipple.ModelStorage.Sessions ~/.julia/packages/Stipple/Hr6Qa/src/ModelStorage.jl:22
|
||||||
|
│ [8] top-level scope
|
||||||
|
│ @ ~/.julia/packages/Stipple/Hr6Qa/src/ReactiveTools.jl:767
|
||||||
|
│ [9] eval
|
||||||
|
│ @ ./boot.jl:385 [inlined]
|
||||||
|
│ [10] (::Stipple.ReactiveTools.var"#32#34"{Module, Vector{Any}})()
|
||||||
|
│ @ Stipple.ReactiveTools ~/.julia/packages/Stipple/Hr6Qa/src/ReactiveTools.jl:1193
|
||||||
|
│ [11] #invokelatest#2
|
||||||
|
│ @ ./essentials.jl:892 [inlined]
|
||||||
|
│ [12] invokelatest
|
||||||
|
│ @ ./essentials.jl:889 [inlined]
|
||||||
|
│ [13] (::Stipple.Pages.var"#7#10"{FilePathsBase.PosixPath, String, @Kwargs{}})()
|
||||||
|
│ @ Stipple.Pages ~/.julia/packages/Stipple/Hr6Qa/src/Pages.jl:68
|
||||||
|
│ [14] run_route(r::Genie.Router.Route)
|
||||||
|
│ @ Genie.Router ~/.julia/packages/Genie/uliWf/src/Router.jl:547
|
||||||
|
│ [15] route_request(req::HTTP.Messages.Request, res::HTTP.Messages.Response; stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
||||||
|
│ @ Genie.Router ~/.julia/packages/Genie/uliWf/src/Router.jl:172
|
||||||
|
│ [16] route_request
|
||||||
|
│ @ ~/.julia/packages/Genie/uliWf/src/Router.jl:147 [inlined]
|
||||||
|
│ [17] handle_request(req::HTTP.Messages.Request, res::HTTP.Messages.Response; stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
||||||
|
│ @ Genie.Server ~/.julia/packages/Genie/uliWf/src/Server.jl:300
|
||||||
|
│ [18] handle_request
|
||||||
|
│ @ ~/.julia/packages/Genie/uliWf/src/Server.jl:292 [inlined]
|
||||||
|
│ [19] (::Genie.Server.var"#27#28"{HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}}, HTTP.Messages.Request, HTTP.Messages.Response})()
|
||||||
|
│ @ Genie.Server /var/home/pixelguy14/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/macros.jl:123
|
||||||
|
│ [20] #invokelatest#2
|
||||||
|
│ @ ./essentials.jl:892 [inlined]
|
||||||
|
│ [21] invokelatest
|
||||||
|
│ @ ./essentials.jl:889 [inlined]
|
||||||
|
│ [22] #153
|
||||||
|
│ @ /var/home/pixelguy14/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:425 [inlined]
|
||||||
|
│ [23] run_work_thunk(thunk::Distributed.var"#153#154"{Genie.Server.var"#27#28"{HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}}, HTTP.Messages.Request, HTTP.Messages.Response}, Tuple{}, @Kwargs{}}, print_error::Bool)
|
||||||
|
│ @ Distributed /var/home/pixelguy14/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/process_messages.jl:70
|
||||||
|
│ [24] #remotecall_fetch#158
|
||||||
|
│ @ /var/home/pixelguy14/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:450 [inlined]
|
||||||
|
│ [25] remotecall_fetch
|
||||||
|
│ @ /var/home/pixelguy14/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:449 [inlined]
|
||||||
|
│ [26] remotecall_fetch
|
||||||
|
│ @ /var/home/pixelguy14/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:492 [inlined]
|
||||||
|
│ [27] setup_http_listener(req::HTTP.Messages.Request, res::HTTP.Messages.Response; stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
||||||
|
│ @ Genie.Server ~/.julia/packages/Genie/uliWf/src/Server.jl:344
|
||||||
|
│ [28] setup_http_listener (repeats 2 times)
|
||||||
|
│ @ ~/.julia/packages/Genie/uliWf/src/Server.jl:342 [inlined]
|
||||||
|
│ [29] (::Genie.Server.var"#24#25"{typeof(Genie.Server.setup_http_listener)})(stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
||||||
|
│ @ Genie.Server ~/.julia/packages/Genie/uliWf/src/Server.jl:313
|
||||||
|
│ [30] setup_http_streamer(stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
||||||
|
│ @ Genie.Server ~/.julia/packages/Genie/uliWf/src/Server.jl:333
|
||||||
|
│ [31] (::Genie.Server.var"#6#12")(stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
||||||
|
│ @ Genie.Server ~/.julia/packages/Genie/uliWf/src/Server.jl:124
|
||||||
|
│ [32] #invokelatest#2
|
||||||
|
│ @ ./essentials.jl:892 [inlined]
|
||||||
|
│ [33] invokelatest
|
||||||
|
│ @ ./essentials.jl:889 [inlined]
|
||||||
|
│ [34] handle_connection(f::Function, c::HTTP.Connections.Connection{Sockets.TCPSocket}, listener::HTTP.Servers.Listener{Nothing, Sockets.TCPServer}, readtimeout::Int64, access_log::Nothing)
|
||||||
|
│ @ HTTP.Servers ~/.julia/packages/HTTP/sJD5V/src/Servers.jl:469
|
||||||
|
│ [35] (::HTTP.Servers.var"#16#17"{Genie.Server.var"#6#12", HTTP.Servers.Listener{Nothing, Sockets.TCPServer}, Set{HTTP.Connections.Connection}, Int64, Nothing, ReentrantLock, Base.Semaphore, HTTP.Connections.Connection{Sockets.TCPSocket}})()
|
||||||
|
│ @ HTTP.Servers ~/.julia/packages/HTTP/sJD5V/src/Servers.jl:401
|
||||||
|
│
|
||||||
|
└ @ Genie.Server /home/pixelguy14/.julia/packages/Genie/uliWf/src/Server.jl:356
|
||||||
|
┌ Info: 2024-08-21 13:31:44 Autoreloading
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:22
|
||||||
|
┌ Error: 2024-08-21 13:31:50 UndefVarError: `traceSpectra` not defined
|
||||||
|
│ Stacktrace:
|
||||||
|
│ [1] Main.App.var"##Main.App_ReactiveModel!#238"()
|
||||||
|
│ @ Main.App ~/.julia/packages/Stipple/Hr6Qa/src/Stipple.jl:1052
|
||||||
|
│ [2] #invokelatest#2
|
||||||
|
│ @ ./essentials.jl:892 [inlined]
|
||||||
|
│ [3] invokelatest
|
||||||
|
│ @ ./essentials.jl:889 [inlined]
|
||||||
|
│ [4] |>
|
||||||
|
│ @ ./operators.jl:917 [inlined]
|
||||||
|
│ [5] init(t::Type{Main.App.var"Main.App_ReactiveModel"}; vue_app_name::String, endpoint::String, channel::Any, debounce::Int64, transport::Module, core_theme::Bool, always_register_channels::Bool)
|
||||||
|
│ @ Stipple ~/.julia/packages/Stipple/Hr6Qa/src/Stipple.jl:514
|
||||||
|
│ [6] init_from_storage(t::Type{Main.App.var"Main.App_ReactiveModel"}; channel::String, kwargs::@Kwargs{})
|
||||||
|
│ @ Stipple.ModelStorage.Sessions ~/.julia/packages/Stipple/Hr6Qa/src/ModelStorage.jl:25
|
||||||
|
│ [7] init_from_storage(t::Type{Main.App.var"Main.App_ReactiveModel"})
|
||||||
|
│ @ Stipple.ModelStorage.Sessions ~/.julia/packages/Stipple/Hr6Qa/src/ModelStorage.jl:22
|
||||||
|
│ [8] top-level scope
|
||||||
|
│ @ ~/.julia/packages/Stipple/Hr6Qa/src/ReactiveTools.jl:767
|
||||||
|
│ [9] eval
|
||||||
|
│ @ ./boot.jl:385 [inlined]
|
||||||
|
│ [10] (::Stipple.ReactiveTools.var"#32#34"{Module, Vector{Any}})()
|
||||||
|
│ @ Stipple.ReactiveTools ~/.julia/packages/Stipple/Hr6Qa/src/ReactiveTools.jl:1193
|
||||||
|
│ [11] #invokelatest#2
|
||||||
|
│ @ ./essentials.jl:892 [inlined]
|
||||||
|
│ [12] invokelatest
|
||||||
|
│ @ ./essentials.jl:889 [inlined]
|
||||||
|
│ [13] (::Stipple.Pages.var"#7#10"{FilePathsBase.PosixPath, String, @Kwargs{}})()
|
||||||
|
│ @ Stipple.Pages ~/.julia/packages/Stipple/Hr6Qa/src/Pages.jl:68
|
||||||
|
│ [14] run_route(r::Genie.Router.Route)
|
||||||
|
│ @ Genie.Router ~/.julia/packages/Genie/uliWf/src/Router.jl:547
|
||||||
|
│ [15] route_request(req::HTTP.Messages.Request, res::HTTP.Messages.Response; stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
||||||
|
│ @ Genie.Router ~/.julia/packages/Genie/uliWf/src/Router.jl:172
|
||||||
|
│ [16] route_request
|
||||||
|
│ @ ~/.julia/packages/Genie/uliWf/src/Router.jl:147 [inlined]
|
||||||
|
│ [17] handle_request(req::HTTP.Messages.Request, res::HTTP.Messages.Response; stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
||||||
|
│ @ Genie.Server ~/.julia/packages/Genie/uliWf/src/Server.jl:300
|
||||||
|
│ [18] handle_request
|
||||||
|
│ @ ~/.julia/packages/Genie/uliWf/src/Server.jl:292 [inlined]
|
||||||
|
│ [19] (::Genie.Server.var"#27#28"{HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}}, HTTP.Messages.Request, HTTP.Messages.Response})()
|
||||||
|
│ @ Genie.Server /var/home/pixelguy14/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/macros.jl:123
|
||||||
|
│ [20] #invokelatest#2
|
||||||
|
│ @ ./essentials.jl:892 [inlined]
|
||||||
|
│ [21] invokelatest
|
||||||
|
│ @ ./essentials.jl:889 [inlined]
|
||||||
|
│ [22] #153
|
||||||
|
│ @ /var/home/pixelguy14/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:425 [inlined]
|
||||||
|
│ [23] run_work_thunk(thunk::Distributed.var"#153#154"{Genie.Server.var"#27#28"{HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}}, HTTP.Messages.Request, HTTP.Messages.Response}, Tuple{}, @Kwargs{}}, print_error::Bool)
|
||||||
|
│ @ Distributed /var/home/pixelguy14/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/process_messages.jl:70
|
||||||
|
│ [24] #remotecall_fetch#158
|
||||||
|
│ @ /var/home/pixelguy14/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:450 [inlined]
|
||||||
|
│ [25] remotecall_fetch
|
||||||
|
│ @ /var/home/pixelguy14/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:449 [inlined]
|
||||||
|
│ [26] remotecall_fetch
|
||||||
|
│ @ /var/home/pixelguy14/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:492 [inlined]
|
||||||
|
│ [27] setup_http_listener(req::HTTP.Messages.Request, res::HTTP.Messages.Response; stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
||||||
|
│ @ Genie.Server ~/.julia/packages/Genie/uliWf/src/Server.jl:344
|
||||||
|
│ [28] setup_http_listener (repeats 2 times)
|
||||||
|
│ @ ~/.julia/packages/Genie/uliWf/src/Server.jl:342 [inlined]
|
||||||
|
│ [29] (::Genie.Server.var"#24#25"{typeof(Genie.Server.setup_http_listener)})(stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
||||||
|
│ @ Genie.Server ~/.julia/packages/Genie/uliWf/src/Server.jl:313
|
||||||
|
│ [30] setup_http_streamer(stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
||||||
|
│ @ Genie.Server ~/.julia/packages/Genie/uliWf/src/Server.jl:333
|
||||||
|
│ [31] (::Genie.Server.var"#6#12")(stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
||||||
|
│ @ Genie.Server ~/.julia/packages/Genie/uliWf/src/Server.jl:124
|
||||||
|
│ [32] #invokelatest#2
|
||||||
|
│ @ ./essentials.jl:892 [inlined]
|
||||||
|
│ [33] invokelatest
|
||||||
|
│ @ ./essentials.jl:889 [inlined]
|
||||||
|
│ [34] handle_connection(f::Function, c::HTTP.Connections.Connection{Sockets.TCPSocket}, listener::HTTP.Servers.Listener{Nothing, Sockets.TCPServer}, readtimeout::Int64, access_log::Nothing)
|
||||||
|
│ @ HTTP.Servers ~/.julia/packages/HTTP/sJD5V/src/Servers.jl:469
|
||||||
|
│ [35] (::HTTP.Servers.var"#16#17"{Genie.Server.var"#6#12", HTTP.Servers.Listener{Nothing, Sockets.TCPServer}, Set{HTTP.Connections.Connection}, Int64, Nothing, ReentrantLock, Base.Semaphore, HTTP.Connections.Connection{Sockets.TCPSocket}})()
|
||||||
|
│ @ HTTP.Servers ~/.julia/packages/HTTP/sJD5V/src/Servers.jl:401
|
||||||
|
│
|
||||||
|
└ @ Genie.Server /home/pixelguy14/.julia/packages/Genie/uliWf/src/Server.jl:356
|
||||||
|
┌ Info: 2024-08-21 13:37:21 Autoreloading
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:22
|
||||||
|
┌ Error: 2024-08-21 13:37:31 UndefVarError: `traceSpectra` not defined
|
||||||
|
│ Stacktrace:
|
||||||
|
│ [1] Main.App.var"##Main.App_ReactiveModel!#238"()
|
||||||
|
│ @ Main.App ~/.julia/packages/Stipple/Hr6Qa/src/Stipple.jl:1052
|
||||||
|
│ [2] #invokelatest#2
|
||||||
|
│ @ ./essentials.jl:892 [inlined]
|
||||||
|
│ [3] invokelatest
|
||||||
|
│ @ ./essentials.jl:889 [inlined]
|
||||||
|
│ [4] |>
|
||||||
|
│ @ ./operators.jl:917 [inlined]
|
||||||
|
│ [5] init(t::Type{Main.App.var"Main.App_ReactiveModel"}; vue_app_name::String, endpoint::String, channel::Any, debounce::Int64, transport::Module, core_theme::Bool, always_register_channels::Bool)
|
||||||
|
│ @ Stipple ~/.julia/packages/Stipple/Hr6Qa/src/Stipple.jl:514
|
||||||
|
│ [6] init_from_storage(t::Type{Main.App.var"Main.App_ReactiveModel"}; channel::String, kwargs::@Kwargs{})
|
||||||
|
│ @ Stipple.ModelStorage.Sessions ~/.julia/packages/Stipple/Hr6Qa/src/ModelStorage.jl:25
|
||||||
|
│ [7] init_from_storage(t::Type{Main.App.var"Main.App_ReactiveModel"})
|
||||||
|
│ @ Stipple.ModelStorage.Sessions ~/.julia/packages/Stipple/Hr6Qa/src/ModelStorage.jl:22
|
||||||
|
│ [8] top-level scope
|
||||||
|
│ @ ~/.julia/packages/Stipple/Hr6Qa/src/ReactiveTools.jl:767
|
||||||
|
│ [9] eval
|
||||||
|
│ @ ./boot.jl:385 [inlined]
|
||||||
|
│ [10] (::Stipple.ReactiveTools.var"#32#34"{Module, Vector{Any}})()
|
||||||
|
│ @ Stipple.ReactiveTools ~/.julia/packages/Stipple/Hr6Qa/src/ReactiveTools.jl:1193
|
||||||
|
│ [11] #invokelatest#2
|
||||||
|
│ @ ./essentials.jl:892 [inlined]
|
||||||
|
│ [12] invokelatest
|
||||||
|
│ @ ./essentials.jl:889 [inlined]
|
||||||
|
│ [13] (::Stipple.Pages.var"#7#10"{FilePathsBase.PosixPath, String, @Kwargs{}})()
|
||||||
|
│ @ Stipple.Pages ~/.julia/packages/Stipple/Hr6Qa/src/Pages.jl:68
|
||||||
|
│ [14] run_route(r::Genie.Router.Route)
|
||||||
|
│ @ Genie.Router ~/.julia/packages/Genie/uliWf/src/Router.jl:547
|
||||||
|
│ [15] route_request(req::HTTP.Messages.Request, res::HTTP.Messages.Response; stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
||||||
|
│ @ Genie.Router ~/.julia/packages/Genie/uliWf/src/Router.jl:172
|
||||||
|
│ [16] route_request
|
||||||
|
│ @ ~/.julia/packages/Genie/uliWf/src/Router.jl:147 [inlined]
|
||||||
|
│ [17] handle_request(req::HTTP.Messages.Request, res::HTTP.Messages.Response; stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
||||||
|
│ @ Genie.Server ~/.julia/packages/Genie/uliWf/src/Server.jl:300
|
||||||
|
│ [18] handle_request
|
||||||
|
│ @ ~/.julia/packages/Genie/uliWf/src/Server.jl:292 [inlined]
|
||||||
|
│ [19] (::Genie.Server.var"#27#28"{HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}}, HTTP.Messages.Request, HTTP.Messages.Response})()
|
||||||
|
│ @ Genie.Server /var/home/pixelguy14/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/macros.jl:123
|
||||||
|
│ [20] #invokelatest#2
|
||||||
|
│ @ ./essentials.jl:892 [inlined]
|
||||||
|
│ [21] invokelatest
|
||||||
|
│ @ ./essentials.jl:889 [inlined]
|
||||||
|
│ [22] #153
|
||||||
|
│ @ /var/home/pixelguy14/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:425 [inlined]
|
||||||
|
│ [23] run_work_thunk(thunk::Distributed.var"#153#154"{Genie.Server.var"#27#28"{HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}}, HTTP.Messages.Request, HTTP.Messages.Response}, Tuple{}, @Kwargs{}}, print_error::Bool)
|
||||||
|
│ @ Distributed /var/home/pixelguy14/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/process_messages.jl:70
|
||||||
|
│ [24] #remotecall_fetch#158
|
||||||
|
│ @ /var/home/pixelguy14/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:450 [inlined]
|
||||||
|
│ [25] remotecall_fetch
|
||||||
|
│ @ /var/home/pixelguy14/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:449 [inlined]
|
||||||
|
│ [26] remotecall_fetch
|
||||||
|
│ @ /var/home/pixelguy14/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:492 [inlined]
|
||||||
|
│ [27] setup_http_listener(req::HTTP.Messages.Request, res::HTTP.Messages.Response; stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
||||||
|
│ @ Genie.Server ~/.julia/packages/Genie/uliWf/src/Server.jl:344
|
||||||
|
│ [28] setup_http_listener (repeats 2 times)
|
||||||
|
│ @ ~/.julia/packages/Genie/uliWf/src/Server.jl:342 [inlined]
|
||||||
|
│ [29] (::Genie.Server.var"#24#25"{typeof(Genie.Server.setup_http_listener)})(stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
||||||
|
│ @ Genie.Server ~/.julia/packages/Genie/uliWf/src/Server.jl:313
|
||||||
|
│ [30] setup_http_streamer(stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
||||||
|
│ @ Genie.Server ~/.julia/packages/Genie/uliWf/src/Server.jl:333
|
||||||
|
│ [31] (::Genie.Server.var"#6#12")(stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
||||||
|
│ @ Genie.Server ~/.julia/packages/Genie/uliWf/src/Server.jl:124
|
||||||
|
│ [32] #invokelatest#2
|
||||||
|
│ @ ./essentials.jl:892 [inlined]
|
||||||
|
│ [33] invokelatest
|
||||||
|
│ @ ./essentials.jl:889 [inlined]
|
||||||
|
│ [34] handle_connection(f::Function, c::HTTP.Connections.Connection{Sockets.TCPSocket}, listener::HTTP.Servers.Listener{Nothing, Sockets.TCPServer}, readtimeout::Int64, access_log::Nothing)
|
||||||
|
│ @ HTTP.Servers ~/.julia/packages/HTTP/sJD5V/src/Servers.jl:469
|
||||||
|
│ [35] (::HTTP.Servers.var"#16#17"{Genie.Server.var"#6#12", HTTP.Servers.Listener{Nothing, Sockets.TCPServer}, Set{HTTP.Connections.Connection}, Int64, Nothing, ReentrantLock, Base.Semaphore, HTTP.Connections.Connection{Sockets.TCPSocket}})()
|
||||||
|
│ @ HTTP.Servers ~/.julia/packages/HTTP/sJD5V/src/Servers.jl:401
|
||||||
|
│
|
||||||
|
└ @ Genie.Server /home/pixelguy14/.julia/packages/Genie/uliWf/src/Server.jl:356
|
||||||
|
┌ Error: 2024-08-21 13:37:32 UndefVarError: `traceSpectra` not defined
|
||||||
|
│ Stacktrace:
|
||||||
|
│ [1] Main.App.var"##Main.App_ReactiveModel!#238"()
|
||||||
|
│ @ Main.App ~/.julia/packages/Stipple/Hr6Qa/src/Stipple.jl:1052
|
||||||
|
│ [2] #invokelatest#2
|
||||||
|
│ @ ./essentials.jl:892 [inlined]
|
||||||
|
│ [3] invokelatest
|
||||||
|
│ @ ./essentials.jl:889 [inlined]
|
||||||
|
│ [4] |>
|
||||||
|
│ @ ./operators.jl:917 [inlined]
|
||||||
|
│ [5] init(t::Type{Main.App.var"Main.App_ReactiveModel"}; vue_app_name::String, endpoint::String, channel::Any, debounce::Int64, transport::Module, core_theme::Bool, always_register_channels::Bool)
|
||||||
|
│ @ Stipple ~/.julia/packages/Stipple/Hr6Qa/src/Stipple.jl:514
|
||||||
|
│ [6] init_from_storage(t::Type{Main.App.var"Main.App_ReactiveModel"}; channel::String, kwargs::@Kwargs{})
|
||||||
|
│ @ Stipple.ModelStorage.Sessions ~/.julia/packages/Stipple/Hr6Qa/src/ModelStorage.jl:25
|
||||||
|
│ [7] init_from_storage(t::Type{Main.App.var"Main.App_ReactiveModel"})
|
||||||
|
│ @ Stipple.ModelStorage.Sessions ~/.julia/packages/Stipple/Hr6Qa/src/ModelStorage.jl:22
|
||||||
|
│ [8] top-level scope
|
||||||
|
│ @ ~/.julia/packages/Stipple/Hr6Qa/src/ReactiveTools.jl:767
|
||||||
|
│ [9] eval
|
||||||
|
│ @ ./boot.jl:385 [inlined]
|
||||||
|
│ [10] (::Stipple.ReactiveTools.var"#32#34"{Module, Vector{Any}})()
|
||||||
|
│ @ Stipple.ReactiveTools ~/.julia/packages/Stipple/Hr6Qa/src/ReactiveTools.jl:1193
|
||||||
|
│ [11] #invokelatest#2
|
||||||
|
│ @ ./essentials.jl:892 [inlined]
|
||||||
|
│ [12] invokelatest
|
||||||
|
│ @ ./essentials.jl:889 [inlined]
|
||||||
|
│ [13] (::Stipple.Pages.var"#7#10"{FilePathsBase.PosixPath, String, @Kwargs{}})()
|
||||||
|
│ @ Stipple.Pages ~/.julia/packages/Stipple/Hr6Qa/src/Pages.jl:68
|
||||||
|
│ [14] run_route(r::Genie.Router.Route)
|
||||||
|
│ @ Genie.Router ~/.julia/packages/Genie/uliWf/src/Router.jl:547
|
||||||
|
│ [15] route_request(req::HTTP.Messages.Request, res::HTTP.Messages.Response; stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
||||||
|
│ @ Genie.Router ~/.julia/packages/Genie/uliWf/src/Router.jl:172
|
||||||
|
│ [16] route_request
|
||||||
|
│ @ ~/.julia/packages/Genie/uliWf/src/Router.jl:147 [inlined]
|
||||||
|
│ [17] handle_request(req::HTTP.Messages.Request, res::HTTP.Messages.Response; stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
||||||
|
│ @ Genie.Server ~/.julia/packages/Genie/uliWf/src/Server.jl:300
|
||||||
|
│ [18] handle_request
|
||||||
|
│ @ ~/.julia/packages/Genie/uliWf/src/Server.jl:292 [inlined]
|
||||||
|
│ [19] (::Genie.Server.var"#27#28"{HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}}, HTTP.Messages.Request, HTTP.Messages.Response})()
|
||||||
|
│ @ Genie.Server /var/home/pixelguy14/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/macros.jl:123
|
||||||
|
│ [20] #invokelatest#2
|
||||||
|
│ @ ./essentials.jl:892 [inlined]
|
||||||
|
│ [21] invokelatest
|
||||||
|
│ @ ./essentials.jl:889 [inlined]
|
||||||
|
│ [22] #153
|
||||||
|
│ @ /var/home/pixelguy14/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:425 [inlined]
|
||||||
|
│ [23] run_work_thunk(thunk::Distributed.var"#153#154"{Genie.Server.var"#27#28"{HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}}, HTTP.Messages.Request, HTTP.Messages.Response}, Tuple{}, @Kwargs{}}, print_error::Bool)
|
||||||
|
│ @ Distributed /var/home/pixelguy14/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/process_messages.jl:70
|
||||||
|
│ [24] #remotecall_fetch#158
|
||||||
|
│ @ /var/home/pixelguy14/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:450 [inlined]
|
||||||
|
│ [25] remotecall_fetch
|
||||||
|
│ @ /var/home/pixelguy14/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:449 [inlined]
|
||||||
|
│ [26] remotecall_fetch
|
||||||
|
│ @ /var/home/pixelguy14/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:492 [inlined]
|
||||||
|
│ [27] setup_http_listener(req::HTTP.Messages.Request, res::HTTP.Messages.Response; stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
||||||
|
│ @ Genie.Server ~/.julia/packages/Genie/uliWf/src/Server.jl:344
|
||||||
|
│ [28] setup_http_listener (repeats 2 times)
|
||||||
|
│ @ ~/.julia/packages/Genie/uliWf/src/Server.jl:342 [inlined]
|
||||||
|
│ [29] (::Genie.Server.var"#24#25"{typeof(Genie.Server.setup_http_listener)})(stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
||||||
|
│ @ Genie.Server ~/.julia/packages/Genie/uliWf/src/Server.jl:313
|
||||||
|
│ [30] setup_http_streamer(stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
||||||
|
│ @ Genie.Server ~/.julia/packages/Genie/uliWf/src/Server.jl:333
|
||||||
|
│ [31] (::Genie.Server.var"#6#12")(stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
||||||
|
│ @ Genie.Server ~/.julia/packages/Genie/uliWf/src/Server.jl:124
|
||||||
|
│ [32] #invokelatest#2
|
||||||
|
│ @ ./essentials.jl:892 [inlined]
|
||||||
|
│ [33] invokelatest
|
||||||
|
│ @ ./essentials.jl:889 [inlined]
|
||||||
|
│ [34] handle_connection(f::Function, c::HTTP.Connections.Connection{Sockets.TCPSocket}, listener::HTTP.Servers.Listener{Nothing, Sockets.TCPServer}, readtimeout::Int64, access_log::Nothing)
|
||||||
|
│ @ HTTP.Servers ~/.julia/packages/HTTP/sJD5V/src/Servers.jl:469
|
||||||
|
│ [35] (::HTTP.Servers.var"#16#17"{Genie.Server.var"#6#12", HTTP.Servers.Listener{Nothing, Sockets.TCPServer}, Set{HTTP.Connections.Connection}, Int64, Nothing, ReentrantLock, Base.Semaphore, HTTP.Connections.Connection{Sockets.TCPSocket}})()
|
||||||
|
│ @ HTTP.Servers ~/.julia/packages/HTTP/sJD5V/src/Servers.jl:401
|
||||||
|
│
|
||||||
|
└ @ Genie.Server /home/pixelguy14/.julia/packages/Genie/uliWf/src/Server.jl:356
|
||||||
|
┌ Info: 2024-08-21 13:37:54 Watching ["/var/home/pixelguy14/Documentos/CINVESTAV_2024/Julia_imzML_GUI"]
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:19
|
||||||
|
┌ Info: 2024-08-21 13:37:55 Autoreloading
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:22
|
||||||
|
┌ Info: 2024-08-21 13:37:56
|
||||||
|
│ Web Server starting at http://127.0.0.1:8000
|
||||||
|
└ @ Genie.Server /home/pixelguy14/.julia/packages/Genie/uliWf/src/Server.jl:182
|
||||||
|
┌ Info: 2024-08-21 13:38:11 Autoreloading
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:22
|
||||||
|
┌ Info: 2024-08-21 13:38:39 Autoreloading
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:22
|
||||||
|
┌ Info: 2024-08-21 13:39:20 Watching ["/var/home/pixelguy14/Documentos/CINVESTAV_2024/Julia_imzML_GUI"]
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:19
|
||||||
|
┌ Info: 2024-08-21 13:39:21 Autoreloading
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:22
|
||||||
|
┌ Info: 2024-08-21 13:39:22
|
||||||
|
│ Web Server starting at http://127.0.0.1:8000
|
||||||
|
└ @ Genie.Server /home/pixelguy14/.julia/packages/Genie/uliWf/src/Server.jl:182
|
||||||
|
┌ Info: 2024-08-21 13:39:52 Autoreloading
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:22
|
||||||
|
┌ Info: 2024-08-21 13:40:22 Watching ["/var/home/pixelguy14/Documentos/CINVESTAV_2024/Julia_imzML_GUI"]
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:19
|
||||||
|
┌ Info: 2024-08-21 13:40:23 Autoreloading
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:22
|
||||||
|
┌ Info: 2024-08-21 13:40:24
|
||||||
|
│ Web Server starting at http://127.0.0.1:8000
|
||||||
|
└ @ Genie.Server /home/pixelguy14/.julia/packages/Genie/uliWf/src/Server.jl:182
|
||||||
|
┌ Info: 2024-08-21 13:41:51 Autoreloading
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:22
|
||||||
|
┌ Info: 2024-08-21 13:42:27 Watching ["/var/home/pixelguy14/Documentos/CINVESTAV_2024/Julia_imzML_GUI"]
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:19
|
||||||
|
┌ Info: 2024-08-21 13:42:27 Autoreloading
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:22
|
||||||
|
┌ Info: 2024-08-21 13:42:28
|
||||||
|
│ Web Server starting at http://127.0.0.1:8000
|
||||||
|
└ @ Genie.Server /home/pixelguy14/.julia/packages/Genie/uliWf/src/Server.jl:182
|
||||||
|
┌ Info: 2024-08-21 13:43:24 Autoreloading
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:22
|
||||||
|
┌ Info: 2024-08-21 13:43:40 Autoreloading
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:22
|
||||||
|
┌ Info: 2024-08-21 13:44:03 Watching ["/var/home/pixelguy14/Documentos/CINVESTAV_2024/Julia_imzML_GUI"]
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:19
|
||||||
|
┌ Info: 2024-08-21 13:44:04 Autoreloading
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:22
|
||||||
|
┌ Info: 2024-08-21 13:44:05
|
||||||
|
│ Web Server starting at http://127.0.0.1:8000
|
||||||
|
└ @ Genie.Server /home/pixelguy14/.julia/packages/Genie/uliWf/src/Server.jl:182
|
||||||
|
┌ Info: 2024-08-21 13:44:21 Autoreloading
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:22
|
||||||
|
┌ Info: 2024-08-21 13:44:43 Watching ["/var/home/pixelguy14/Documentos/CINVESTAV_2024/Julia_imzML_GUI"]
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:19
|
||||||
|
┌ Info: 2024-08-21 13:44:44 Autoreloading
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:22
|
||||||
|
┌ Info: 2024-08-21 13:44:45
|
||||||
|
│ Web Server starting at http://127.0.0.1:8000
|
||||||
|
└ @ Genie.Server /home/pixelguy14/.julia/packages/Genie/uliWf/src/Server.jl:182
|
||||||
|
┌ Info: 2024-08-21 13:45:06 Autoreloading
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:22
|
||||||
|
┌ Info: 2024-08-21 13:45:20 Autoreloading
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:22
|
||||||
|
┌ Info: 2024-08-21 13:47:50 Autoreloading
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:22
|
||||||
|
┌ Info: 2024-08-21 13:48:10 Watching ["/var/home/pixelguy14/Documentos/CINVESTAV_2024/Julia_imzML_GUI"]
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:19
|
||||||
|
┌ Info: 2024-08-21 13:48:11 Autoreloading
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:22
|
||||||
|
┌ Info: 2024-08-21 13:48:12
|
||||||
|
│ Web Server starting at http://127.0.0.1:8000
|
||||||
|
└ @ Genie.Server /home/pixelguy14/.julia/packages/Genie/uliWf/src/Server.jl:182
|
||||||
|
┌ Info: 2024-08-21 13:55:41 Watching ["/var/home/pixelguy14/Documentos/CINVESTAV_2024/Julia_imzML_GUI"]
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:19
|
||||||
|
┌ Info: 2024-08-21 13:55:42 Autoreloading
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:22
|
||||||
|
┌ Info: 2024-08-21 13:55:43
|
||||||
|
│ Web Server starting at http://127.0.0.1:8000
|
||||||
|
└ @ Genie.Server /home/pixelguy14/.julia/packages/Genie/uliWf/src/Server.jl:182
|
||||||
|
┌ Info: 2024-08-21 13:55:43 Listening on: 127.0.0.1:8000, thread id: 1
|
||||||
|
└ @ HTTP.Servers /home/pixelguy14/.julia/packages/HTTP/sJD5V/src/Servers.jl:382
|
||||||
|
┌ Info: 2024-08-21 13:57:14 Autoreloading
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:22
|
||||||
|
┌ Info: 2024-08-21 13:58:16 Autoreloading
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:22
|
||||||
|
┌ Info: 2024-08-21 13:59:59 Autoreloading
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:22
|
||||||
|
┌ Error: 2024-08-21 14:00:00 UndefVarError: `layoutSpectra` not defined
|
||||||
|
│ Stacktrace:
|
||||||
|
│ [1] Main.App.var"##Main.App_ReactiveModel!#238"()
|
||||||
|
│ @ Main.App ~/.julia/packages/Stipple/Hr6Qa/src/Stipple.jl:1052
|
||||||
|
│ [2] #invokelatest#2
|
||||||
|
│ @ ./essentials.jl:892 [inlined]
|
||||||
|
│ [3] invokelatest
|
||||||
|
│ @ ./essentials.jl:889 [inlined]
|
||||||
|
│ [4] |>
|
||||||
|
│ @ ./operators.jl:917 [inlined]
|
||||||
|
│ [5] init(t::Type{Main.App.var"Main.App_ReactiveModel"}; vue_app_name::String, endpoint::String, channel::Any, debounce::Int64, transport::Module, core_theme::Bool, always_register_channels::Bool)
|
||||||
|
│ @ Stipple ~/.julia/packages/Stipple/Hr6Qa/src/Stipple.jl:514
|
||||||
|
│ [6] init_from_storage(t::Type{Main.App.var"Main.App_ReactiveModel"}; channel::String, kwargs::@Kwargs{})
|
||||||
|
│ @ Stipple.ModelStorage.Sessions ~/.julia/packages/Stipple/Hr6Qa/src/ModelStorage.jl:25
|
||||||
|
│ [7] init_from_storage(t::Type{Main.App.var"Main.App_ReactiveModel"})
|
||||||
|
│ @ Stipple.ModelStorage.Sessions ~/.julia/packages/Stipple/Hr6Qa/src/ModelStorage.jl:22
|
||||||
|
│ [8] top-level scope
|
||||||
|
│ @ ~/.julia/packages/Stipple/Hr6Qa/src/ReactiveTools.jl:767
|
||||||
|
│ [9] eval
|
||||||
|
│ @ ./boot.jl:385 [inlined]
|
||||||
|
│ [10] (::Stipple.ReactiveTools.var"#32#34"{Module, Vector{Any}})()
|
||||||
|
│ @ Stipple.ReactiveTools ~/.julia/packages/Stipple/Hr6Qa/src/ReactiveTools.jl:1193
|
||||||
|
│ [11] #invokelatest#2
|
||||||
|
│ @ ./essentials.jl:892 [inlined]
|
||||||
|
│ [12] invokelatest
|
||||||
|
│ @ ./essentials.jl:889 [inlined]
|
||||||
|
│ [13] (::Stipple.Pages.var"#7#10"{FilePathsBase.PosixPath, String, @Kwargs{}})()
|
||||||
|
│ @ Stipple.Pages ~/.julia/packages/Stipple/Hr6Qa/src/Pages.jl:68
|
||||||
|
│ [14] run_route(r::Genie.Router.Route)
|
||||||
|
│ @ Genie.Router ~/.julia/packages/Genie/uliWf/src/Router.jl:547
|
||||||
|
│ [15] route_request(req::HTTP.Messages.Request, res::HTTP.Messages.Response; stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
||||||
|
│ @ Genie.Router ~/.julia/packages/Genie/uliWf/src/Router.jl:172
|
||||||
|
│ [16] route_request
|
||||||
|
│ @ ~/.julia/packages/Genie/uliWf/src/Router.jl:147 [inlined]
|
||||||
|
│ [17] handle_request(req::HTTP.Messages.Request, res::HTTP.Messages.Response; stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
||||||
|
│ @ Genie.Server ~/.julia/packages/Genie/uliWf/src/Server.jl:300
|
||||||
|
│ [18] handle_request
|
||||||
|
│ @ ~/.julia/packages/Genie/uliWf/src/Server.jl:292 [inlined]
|
||||||
|
│ [19] (::Genie.Server.var"#27#28"{HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}}, HTTP.Messages.Request, HTTP.Messages.Response})()
|
||||||
|
│ @ Genie.Server /var/home/pixelguy14/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/macros.jl:123
|
||||||
|
│ [20] #invokelatest#2
|
||||||
|
│ @ ./essentials.jl:892 [inlined]
|
||||||
|
│ [21] invokelatest
|
||||||
|
│ @ ./essentials.jl:889 [inlined]
|
||||||
|
│ [22] #153
|
||||||
|
│ @ /var/home/pixelguy14/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:425 [inlined]
|
||||||
|
│ [23] run_work_thunk(thunk::Distributed.var"#153#154"{Genie.Server.var"#27#28"{HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}}, HTTP.Messages.Request, HTTP.Messages.Response}, Tuple{}, @Kwargs{}}, print_error::Bool)
|
||||||
|
│ @ Distributed /var/home/pixelguy14/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/process_messages.jl:70
|
||||||
|
│ [24] #remotecall_fetch#158
|
||||||
|
│ @ /var/home/pixelguy14/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:450 [inlined]
|
||||||
|
│ [25] remotecall_fetch
|
||||||
|
│ @ /var/home/pixelguy14/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:449 [inlined]
|
||||||
|
│ [26] remotecall_fetch
|
||||||
|
│ @ /var/home/pixelguy14/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:492 [inlined]
|
||||||
|
│ [27] setup_http_listener(req::HTTP.Messages.Request, res::HTTP.Messages.Response; stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
||||||
|
│ @ Genie.Server ~/.julia/packages/Genie/uliWf/src/Server.jl:344
|
||||||
|
│ [28] setup_http_listener (repeats 2 times)
|
||||||
|
│ @ ~/.julia/packages/Genie/uliWf/src/Server.jl:342 [inlined]
|
||||||
|
│ [29] (::Genie.Server.var"#24#25"{typeof(Genie.Server.setup_http_listener)})(stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
||||||
|
│ @ Genie.Server ~/.julia/packages/Genie/uliWf/src/Server.jl:313
|
||||||
|
│ [30] setup_http_streamer(stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
||||||
|
│ @ Genie.Server ~/.julia/packages/Genie/uliWf/src/Server.jl:333
|
||||||
|
│ [31] (::Genie.Server.var"#6#12")(stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
||||||
|
│ @ Genie.Server ~/.julia/packages/Genie/uliWf/src/Server.jl:124
|
||||||
|
│ [32] #invokelatest#2
|
||||||
|
│ @ ./essentials.jl:892 [inlined]
|
||||||
|
│ [33] invokelatest
|
||||||
|
│ @ ./essentials.jl:889 [inlined]
|
||||||
|
│ [34] handle_connection(f::Function, c::HTTP.Connections.Connection{Sockets.TCPSocket}, listener::HTTP.Servers.Listener{Nothing, Sockets.TCPServer}, readtimeout::Int64, access_log::Nothing)
|
||||||
|
│ @ HTTP.Servers ~/.julia/packages/HTTP/sJD5V/src/Servers.jl:469
|
||||||
|
│ [35] (::HTTP.Servers.var"#16#17"{Genie.Server.var"#6#12", HTTP.Servers.Listener{Nothing, Sockets.TCPServer}, Set{HTTP.Connections.Connection}, Int64, Nothing, ReentrantLock, Base.Semaphore, HTTP.Connections.Connection{Sockets.TCPSocket}})()
|
||||||
|
│ @ HTTP.Servers ~/.julia/packages/HTTP/sJD5V/src/Servers.jl:401
|
||||||
|
│
|
||||||
|
└ @ Genie.Server /home/pixelguy14/.julia/packages/Genie/uliWf/src/Server.jl:356
|
||||||
|
┌ Info: 2024-08-21 14:01:43 Autoreloading
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:22
|
||||||
|
┌ Error: 2024-08-21 14:01:47 UndefVarError: `layoutSpectra` not defined
|
||||||
|
│ Stacktrace:
|
||||||
|
│ [1] Main.App.var"##Main.App_ReactiveModel!#239"()
|
||||||
|
│ @ Main.App ~/.julia/packages/Stipple/Hr6Qa/src/Stipple.jl:1052
|
||||||
|
│ [2] #invokelatest#2
|
||||||
|
│ @ ./essentials.jl:892 [inlined]
|
||||||
|
│ [3] invokelatest
|
||||||
|
│ @ ./essentials.jl:889 [inlined]
|
||||||
|
│ [4] |>
|
||||||
|
│ @ ./operators.jl:917 [inlined]
|
||||||
|
│ [5] init(t::Type{Main.App.var"Main.App_ReactiveModel"}; vue_app_name::String, endpoint::String, channel::Any, debounce::Int64, transport::Module, core_theme::Bool, always_register_channels::Bool)
|
||||||
|
│ @ Stipple ~/.julia/packages/Stipple/Hr6Qa/src/Stipple.jl:514
|
||||||
|
│ [6] init_from_storage(t::Type{Main.App.var"Main.App_ReactiveModel"}; channel::String, kwargs::@Kwargs{})
|
||||||
|
│ @ Stipple.ModelStorage.Sessions ~/.julia/packages/Stipple/Hr6Qa/src/ModelStorage.jl:25
|
||||||
|
│ [7] init_from_storage(t::Type{Main.App.var"Main.App_ReactiveModel"})
|
||||||
|
│ @ Stipple.ModelStorage.Sessions ~/.julia/packages/Stipple/Hr6Qa/src/ModelStorage.jl:22
|
||||||
|
│ [8] top-level scope
|
||||||
|
│ @ ~/.julia/packages/Stipple/Hr6Qa/src/ReactiveTools.jl:767
|
||||||
|
│ [9] eval
|
||||||
|
│ @ ./boot.jl:385 [inlined]
|
||||||
|
│ [10] (::Stipple.ReactiveTools.var"#32#34"{Module, Vector{Any}})()
|
||||||
|
│ @ Stipple.ReactiveTools ~/.julia/packages/Stipple/Hr6Qa/src/ReactiveTools.jl:1193
|
||||||
|
│ [11] #invokelatest#2
|
||||||
|
│ @ ./essentials.jl:892 [inlined]
|
||||||
|
│ [12] invokelatest
|
||||||
|
│ @ ./essentials.jl:889 [inlined]
|
||||||
|
│ [13] (::Stipple.Pages.var"#7#10"{FilePathsBase.PosixPath, String, @Kwargs{}})()
|
||||||
|
│ @ Stipple.Pages ~/.julia/packages/Stipple/Hr6Qa/src/Pages.jl:68
|
||||||
|
│ [14] run_route(r::Genie.Router.Route)
|
||||||
|
│ @ Genie.Router ~/.julia/packages/Genie/uliWf/src/Router.jl:547
|
||||||
|
│ [15] route_request(req::HTTP.Messages.Request, res::HTTP.Messages.Response; stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
||||||
|
│ @ Genie.Router ~/.julia/packages/Genie/uliWf/src/Router.jl:172
|
||||||
|
│ [16] route_request
|
||||||
|
│ @ ~/.julia/packages/Genie/uliWf/src/Router.jl:147 [inlined]
|
||||||
|
│ [17] handle_request(req::HTTP.Messages.Request, res::HTTP.Messages.Response; stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
||||||
|
│ @ Genie.Server ~/.julia/packages/Genie/uliWf/src/Server.jl:300
|
||||||
|
│ [18] handle_request
|
||||||
|
│ @ ~/.julia/packages/Genie/uliWf/src/Server.jl:292 [inlined]
|
||||||
|
│ [19] (::Genie.Server.var"#27#28"{HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}}, HTTP.Messages.Request, HTTP.Messages.Response})()
|
||||||
|
│ @ Genie.Server /var/home/pixelguy14/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/macros.jl:123
|
||||||
|
│ [20] #invokelatest#2
|
||||||
|
│ @ ./essentials.jl:892 [inlined]
|
||||||
|
│ [21] invokelatest
|
||||||
|
│ @ ./essentials.jl:889 [inlined]
|
||||||
|
│ [22] #153
|
||||||
|
│ @ /var/home/pixelguy14/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:425 [inlined]
|
||||||
|
│ [23] run_work_thunk(thunk::Distributed.var"#153#154"{Genie.Server.var"#27#28"{HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}}, HTTP.Messages.Request, HTTP.Messages.Response}, Tuple{}, @Kwargs{}}, print_error::Bool)
|
||||||
|
│ @ Distributed /var/home/pixelguy14/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/process_messages.jl:70
|
||||||
|
│ [24] #remotecall_fetch#158
|
||||||
|
│ @ /var/home/pixelguy14/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:450 [inlined]
|
||||||
|
│ [25] remotecall_fetch
|
||||||
|
│ @ /var/home/pixelguy14/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:449 [inlined]
|
||||||
|
│ [26] remotecall_fetch
|
||||||
|
│ @ /var/home/pixelguy14/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:492 [inlined]
|
||||||
|
│ [27] setup_http_listener(req::HTTP.Messages.Request, res::HTTP.Messages.Response; stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
||||||
|
│ @ Genie.Server ~/.julia/packages/Genie/uliWf/src/Server.jl:344
|
||||||
|
│ [28] setup_http_listener (repeats 2 times)
|
||||||
|
│ @ ~/.julia/packages/Genie/uliWf/src/Server.jl:342 [inlined]
|
||||||
|
│ [29] (::Genie.Server.var"#24#25"{typeof(Genie.Server.setup_http_listener)})(stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
||||||
|
│ @ Genie.Server ~/.julia/packages/Genie/uliWf/src/Server.jl:313
|
||||||
|
│ [30] setup_http_streamer(stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
||||||
|
│ @ Genie.Server ~/.julia/packages/Genie/uliWf/src/Server.jl:333
|
||||||
|
│ [31] (::Genie.Server.var"#6#12")(stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
||||||
|
│ @ Genie.Server ~/.julia/packages/Genie/uliWf/src/Server.jl:124
|
||||||
|
│ [32] #invokelatest#2
|
||||||
|
│ @ ./essentials.jl:892 [inlined]
|
||||||
|
│ [33] invokelatest
|
||||||
|
│ @ ./essentials.jl:889 [inlined]
|
||||||
|
│ [34] handle_connection(f::Function, c::HTTP.Connections.Connection{Sockets.TCPSocket}, listener::HTTP.Servers.Listener{Nothing, Sockets.TCPServer}, readtimeout::Int64, access_log::Nothing)
|
||||||
|
│ @ HTTP.Servers ~/.julia/packages/HTTP/sJD5V/src/Servers.jl:469
|
||||||
|
│ [35] (::HTTP.Servers.var"#16#17"{Genie.Server.var"#6#12", HTTP.Servers.Listener{Nothing, Sockets.TCPServer}, Set{HTTP.Connections.Connection}, Int64, Nothing, ReentrantLock, Base.Semaphore, HTTP.Connections.Connection{Sockets.TCPSocket}})()
|
||||||
|
│ @ HTTP.Servers ~/.julia/packages/HTTP/sJD5V/src/Servers.jl:401
|
||||||
|
│
|
||||||
|
└ @ Genie.Server /home/pixelguy14/.julia/packages/Genie/uliWf/src/Server.jl:356
|
||||||
|
┌ Info: 2024-08-21 14:03:07 Watching ["/var/home/pixelguy14/Documentos/CINVESTAV_2024/Julia_imzML_GUI"]
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:19
|
||||||
|
┌ Info: 2024-08-21 14:03:07 Autoreloading
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:22
|
||||||
|
┌ Info: 2024-08-21 14:03:08
|
||||||
|
│ Web Server starting at http://127.0.0.1:8000
|
||||||
|
└ @ Genie.Server /home/pixelguy14/.julia/packages/Genie/uliWf/src/Server.jl:182
|
||||||
|
┌ Info: 2024-08-21 14:03:08 Listening on: 127.0.0.1:8000, thread id: 1
|
||||||
|
└ @ HTTP.Servers /home/pixelguy14/.julia/packages/HTTP/sJD5V/src/Servers.jl:382
|
||||||
|
┌ Info: 2024-08-21 14:04:44 Autoreloading
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:22
|
||||||
|
┌ Info: 2024-08-21 14:06:29 Autoreloading
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:22
|
||||||
|
┌ Info: 2024-08-21 14:07:00 Autoreloading
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:22
|
||||||
|
┌ Info: 2024-08-21 14:08:22 Autoreloading
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:22
|
||||||
|
┌ Info: 2024-08-21 14:08:41 Autoreloading
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:22
|
||||||
|
┌ Error: 2024-08-21 14:08:42 UndefVarError: `traceSpectra` not defined
|
||||||
|
│ Stacktrace:
|
||||||
|
│ [1] Main.App.var"##Main.App_ReactiveModel!#241"()
|
||||||
|
│ @ Main.App ~/.julia/packages/Stipple/Hr6Qa/src/Stipple.jl:1052
|
||||||
|
│ [2] #invokelatest#2
|
||||||
|
│ @ ./essentials.jl:892 [inlined]
|
||||||
|
│ [3] invokelatest
|
||||||
|
│ @ ./essentials.jl:889 [inlined]
|
||||||
|
│ [4] |>
|
||||||
|
│ @ ./operators.jl:917 [inlined]
|
||||||
|
│ [5] init(t::Type{Main.App.var"Main.App_ReactiveModel"}; vue_app_name::String, endpoint::String, channel::Any, debounce::Int64, transport::Module, core_theme::Bool, always_register_channels::Bool)
|
||||||
|
│ @ Stipple ~/.julia/packages/Stipple/Hr6Qa/src/Stipple.jl:514
|
||||||
|
│ [6] init_from_storage(t::Type{Main.App.var"Main.App_ReactiveModel"}; channel::String, kwargs::@Kwargs{})
|
||||||
|
│ @ Stipple.ModelStorage.Sessions ~/.julia/packages/Stipple/Hr6Qa/src/ModelStorage.jl:25
|
||||||
|
│ [7] init_from_storage(t::Type{Main.App.var"Main.App_ReactiveModel"})
|
||||||
|
│ @ Stipple.ModelStorage.Sessions ~/.julia/packages/Stipple/Hr6Qa/src/ModelStorage.jl:22
|
||||||
|
│ [8] top-level scope
|
||||||
|
│ @ ~/.julia/packages/Stipple/Hr6Qa/src/ReactiveTools.jl:767
|
||||||
|
│ [9] eval
|
||||||
|
│ @ ./boot.jl:385 [inlined]
|
||||||
|
│ [10] (::Stipple.ReactiveTools.var"#32#34"{Module, Vector{Any}})()
|
||||||
|
│ @ Stipple.ReactiveTools ~/.julia/packages/Stipple/Hr6Qa/src/ReactiveTools.jl:1193
|
||||||
|
│ [11] #invokelatest#2
|
||||||
|
│ @ ./essentials.jl:892 [inlined]
|
||||||
|
│ [12] invokelatest
|
||||||
|
│ @ ./essentials.jl:889 [inlined]
|
||||||
|
│ [13] (::Stipple.Pages.var"#7#10"{FilePathsBase.PosixPath, String, @Kwargs{}})()
|
||||||
|
│ @ Stipple.Pages ~/.julia/packages/Stipple/Hr6Qa/src/Pages.jl:68
|
||||||
|
│ [14] run_route(r::Genie.Router.Route)
|
||||||
|
│ @ Genie.Router ~/.julia/packages/Genie/uliWf/src/Router.jl:547
|
||||||
|
│ [15] route_request(req::HTTP.Messages.Request, res::HTTP.Messages.Response; stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
||||||
|
│ @ Genie.Router ~/.julia/packages/Genie/uliWf/src/Router.jl:172
|
||||||
|
│ [16] route_request
|
||||||
|
│ @ ~/.julia/packages/Genie/uliWf/src/Router.jl:147 [inlined]
|
||||||
|
│ [17] handle_request(req::HTTP.Messages.Request, res::HTTP.Messages.Response; stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
||||||
|
│ @ Genie.Server ~/.julia/packages/Genie/uliWf/src/Server.jl:300
|
||||||
|
│ [18] handle_request
|
||||||
|
│ @ ~/.julia/packages/Genie/uliWf/src/Server.jl:292 [inlined]
|
||||||
|
│ [19] (::Genie.Server.var"#27#28"{HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}}, HTTP.Messages.Request, HTTP.Messages.Response})()
|
||||||
|
│ @ Genie.Server /var/home/pixelguy14/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/macros.jl:123
|
||||||
|
│ [20] #invokelatest#2
|
||||||
|
│ @ ./essentials.jl:892 [inlined]
|
||||||
|
│ [21] invokelatest
|
||||||
|
│ @ ./essentials.jl:889 [inlined]
|
||||||
|
│ [22] #153
|
||||||
|
│ @ /var/home/pixelguy14/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:425 [inlined]
|
||||||
|
│ [23] run_work_thunk(thunk::Distributed.var"#153#154"{Genie.Server.var"#27#28"{HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}}, HTTP.Messages.Request, HTTP.Messages.Response}, Tuple{}, @Kwargs{}}, print_error::Bool)
|
||||||
|
│ @ Distributed /var/home/pixelguy14/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/process_messages.jl:70
|
||||||
|
│ [24] #remotecall_fetch#158
|
||||||
|
│ @ /var/home/pixelguy14/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:450 [inlined]
|
||||||
|
│ [25] remotecall_fetch
|
||||||
|
│ @ /var/home/pixelguy14/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:449 [inlined]
|
||||||
|
│ [26] remotecall_fetch
|
||||||
|
│ @ /var/home/pixelguy14/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:492 [inlined]
|
||||||
|
│ [27] setup_http_listener(req::HTTP.Messages.Request, res::HTTP.Messages.Response; stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
||||||
|
│ @ Genie.Server ~/.julia/packages/Genie/uliWf/src/Server.jl:344
|
||||||
|
│ [28] setup_http_listener (repeats 2 times)
|
||||||
|
│ @ ~/.julia/packages/Genie/uliWf/src/Server.jl:342 [inlined]
|
||||||
|
│ [29] (::Genie.Server.var"#24#25"{typeof(Genie.Server.setup_http_listener)})(stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
||||||
|
│ @ Genie.Server ~/.julia/packages/Genie/uliWf/src/Server.jl:313
|
||||||
|
│ [30] setup_http_streamer(stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
||||||
|
│ @ Genie.Server ~/.julia/packages/Genie/uliWf/src/Server.jl:333
|
||||||
|
│ [31] (::Genie.Server.var"#6#12")(stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
||||||
|
│ @ Genie.Server ~/.julia/packages/Genie/uliWf/src/Server.jl:124
|
||||||
|
│ [32] #invokelatest#2
|
||||||
|
│ @ ./essentials.jl:892 [inlined]
|
||||||
|
│ [33] invokelatest
|
||||||
|
│ @ ./essentials.jl:889 [inlined]
|
||||||
|
│ [34] handle_connection(f::Function, c::HTTP.Connections.Connection{Sockets.TCPSocket}, listener::HTTP.Servers.Listener{Nothing, Sockets.TCPServer}, readtimeout::Int64, access_log::Nothing)
|
||||||
|
│ @ HTTP.Servers ~/.julia/packages/HTTP/sJD5V/src/Servers.jl:469
|
||||||
|
│ [35] (::HTTP.Servers.var"#16#17"{Genie.Server.var"#6#12", HTTP.Servers.Listener{Nothing, Sockets.TCPServer}, Set{HTTP.Connections.Connection}, Int64, Nothing, ReentrantLock, Base.Semaphore, HTTP.Connections.Connection{Sockets.TCPSocket}})()
|
||||||
|
│ @ HTTP.Servers ~/.julia/packages/HTTP/sJD5V/src/Servers.jl:401
|
||||||
|
│
|
||||||
|
└ @ Genie.Server /home/pixelguy14/.julia/packages/Genie/uliWf/src/Server.jl:356
|
||||||
|
┌ Info: 2024-08-21 14:12:05 Autoreloading
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:22
|
||||||
|
┌ Error: 2024-08-21 14:12:10 UndefVarError: `traceSpectra` not defined
|
||||||
|
│ Stacktrace:
|
||||||
|
│ [1] Main.App.var"##Main.App_ReactiveModel!#242"()
|
||||||
|
│ @ Main.App ~/.julia/packages/Stipple/Hr6Qa/src/Stipple.jl:1052
|
||||||
|
│ [2] #invokelatest#2
|
||||||
|
│ @ ./essentials.jl:892 [inlined]
|
||||||
|
│ [3] invokelatest
|
||||||
|
│ @ ./essentials.jl:889 [inlined]
|
||||||
|
│ [4] |>
|
||||||
|
│ @ ./operators.jl:917 [inlined]
|
||||||
|
│ [5] init(t::Type{Main.App.var"Main.App_ReactiveModel"}; vue_app_name::String, endpoint::String, channel::Any, debounce::Int64, transport::Module, core_theme::Bool, always_register_channels::Bool)
|
||||||
|
│ @ Stipple ~/.julia/packages/Stipple/Hr6Qa/src/Stipple.jl:514
|
||||||
|
│ [6] init_from_storage(t::Type{Main.App.var"Main.App_ReactiveModel"}; channel::String, kwargs::@Kwargs{})
|
||||||
|
│ @ Stipple.ModelStorage.Sessions ~/.julia/packages/Stipple/Hr6Qa/src/ModelStorage.jl:25
|
||||||
|
│ [7] init_from_storage(t::Type{Main.App.var"Main.App_ReactiveModel"})
|
||||||
|
│ @ Stipple.ModelStorage.Sessions ~/.julia/packages/Stipple/Hr6Qa/src/ModelStorage.jl:22
|
||||||
|
│ [8] top-level scope
|
||||||
|
│ @ ~/.julia/packages/Stipple/Hr6Qa/src/ReactiveTools.jl:767
|
||||||
|
│ [9] eval
|
||||||
|
│ @ ./boot.jl:385 [inlined]
|
||||||
|
│ [10] (::Stipple.ReactiveTools.var"#32#34"{Module, Vector{Any}})()
|
||||||
|
│ @ Stipple.ReactiveTools ~/.julia/packages/Stipple/Hr6Qa/src/ReactiveTools.jl:1193
|
||||||
|
│ [11] #invokelatest#2
|
||||||
|
│ @ ./essentials.jl:892 [inlined]
|
||||||
|
│ [12] invokelatest
|
||||||
|
│ @ ./essentials.jl:889 [inlined]
|
||||||
|
│ [13] (::Stipple.Pages.var"#7#10"{FilePathsBase.PosixPath, String, @Kwargs{}})()
|
||||||
|
│ @ Stipple.Pages ~/.julia/packages/Stipple/Hr6Qa/src/Pages.jl:68
|
||||||
|
│ [14] run_route(r::Genie.Router.Route)
|
||||||
|
│ @ Genie.Router ~/.julia/packages/Genie/uliWf/src/Router.jl:547
|
||||||
|
│ [15] route_request(req::HTTP.Messages.Request, res::HTTP.Messages.Response; stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
||||||
|
│ @ Genie.Router ~/.julia/packages/Genie/uliWf/src/Router.jl:172
|
||||||
|
│ [16] route_request
|
||||||
|
│ @ ~/.julia/packages/Genie/uliWf/src/Router.jl:147 [inlined]
|
||||||
|
│ [17] handle_request(req::HTTP.Messages.Request, res::HTTP.Messages.Response; stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
||||||
|
│ @ Genie.Server ~/.julia/packages/Genie/uliWf/src/Server.jl:300
|
||||||
|
│ [18] handle_request
|
||||||
|
│ @ ~/.julia/packages/Genie/uliWf/src/Server.jl:292 [inlined]
|
||||||
|
│ [19] (::Genie.Server.var"#27#28"{HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}}, HTTP.Messages.Request, HTTP.Messages.Response})()
|
||||||
|
│ @ Genie.Server /var/home/pixelguy14/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/macros.jl:123
|
||||||
|
│ [20] #invokelatest#2
|
||||||
|
│ @ ./essentials.jl:892 [inlined]
|
||||||
|
│ [21] invokelatest
|
||||||
|
│ @ ./essentials.jl:889 [inlined]
|
||||||
|
│ [22] #153
|
||||||
|
│ @ /var/home/pixelguy14/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:425 [inlined]
|
||||||
|
│ [23] run_work_thunk(thunk::Distributed.var"#153#154"{Genie.Server.var"#27#28"{HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}}, HTTP.Messages.Request, HTTP.Messages.Response}, Tuple{}, @Kwargs{}}, print_error::Bool)
|
||||||
|
│ @ Distributed /var/home/pixelguy14/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/process_messages.jl:70
|
||||||
|
│ [24] #remotecall_fetch#158
|
||||||
|
│ @ /var/home/pixelguy14/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:450 [inlined]
|
||||||
|
│ [25] remotecall_fetch
|
||||||
|
│ @ /var/home/pixelguy14/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:449 [inlined]
|
||||||
|
│ [26] remotecall_fetch
|
||||||
|
│ @ /var/home/pixelguy14/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:492 [inlined]
|
||||||
|
│ [27] setup_http_listener(req::HTTP.Messages.Request, res::HTTP.Messages.Response; stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
||||||
|
│ @ Genie.Server ~/.julia/packages/Genie/uliWf/src/Server.jl:344
|
||||||
|
│ [28] setup_http_listener (repeats 2 times)
|
||||||
|
│ @ ~/.julia/packages/Genie/uliWf/src/Server.jl:342 [inlined]
|
||||||
|
│ [29] (::Genie.Server.var"#24#25"{typeof(Genie.Server.setup_http_listener)})(stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
||||||
|
│ @ Genie.Server ~/.julia/packages/Genie/uliWf/src/Server.jl:313
|
||||||
|
│ [30] setup_http_streamer(stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
||||||
|
│ @ Genie.Server ~/.julia/packages/Genie/uliWf/src/Server.jl:333
|
||||||
|
│ [31] (::Genie.Server.var"#6#12")(stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
||||||
|
│ @ Genie.Server ~/.julia/packages/Genie/uliWf/src/Server.jl:124
|
||||||
|
│ [32] #invokelatest#2
|
||||||
|
│ @ ./essentials.jl:892 [inlined]
|
||||||
|
│ [33] invokelatest
|
||||||
|
│ @ ./essentials.jl:889 [inlined]
|
||||||
|
│ [34] handle_connection(f::Function, c::HTTP.Connections.Connection{Sockets.TCPSocket}, listener::HTTP.Servers.Listener{Nothing, Sockets.TCPServer}, readtimeout::Int64, access_log::Nothing)
|
||||||
|
│ @ HTTP.Servers ~/.julia/packages/HTTP/sJD5V/src/Servers.jl:469
|
||||||
|
│ [35] (::HTTP.Servers.var"#16#17"{Genie.Server.var"#6#12", HTTP.Servers.Listener{Nothing, Sockets.TCPServer}, Set{HTTP.Connections.Connection}, Int64, Nothing, ReentrantLock, Base.Semaphore, HTTP.Connections.Connection{Sockets.TCPSocket}})()
|
||||||
|
│ @ HTTP.Servers ~/.julia/packages/HTTP/sJD5V/src/Servers.jl:401
|
||||||
|
│
|
||||||
|
└ @ Genie.Server /home/pixelguy14/.julia/packages/Genie/uliWf/src/Server.jl:356
|
||||||
|
┌ Info: 2024-08-21 14:13:12 Autoreloading
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:22
|
||||||
|
┌ Error: 2024-08-21 14:13:17 UndefVarError: `traceSpectra` not defined
|
||||||
|
│ Stacktrace:
|
||||||
|
│ [1] Main.App.var"##Main.App_ReactiveModel!#242"()
|
||||||
|
│ @ Main.App ~/.julia/packages/Stipple/Hr6Qa/src/Stipple.jl:1052
|
||||||
|
│ [2] #invokelatest#2
|
||||||
|
│ @ ./essentials.jl:892 [inlined]
|
||||||
|
│ [3] invokelatest
|
||||||
|
│ @ ./essentials.jl:889 [inlined]
|
||||||
|
│ [4] |>
|
||||||
|
│ @ ./operators.jl:917 [inlined]
|
||||||
|
│ [5] init(t::Type{Main.App.var"Main.App_ReactiveModel"}; vue_app_name::String, endpoint::String, channel::Any, debounce::Int64, transport::Module, core_theme::Bool, always_register_channels::Bool)
|
||||||
|
│ @ Stipple ~/.julia/packages/Stipple/Hr6Qa/src/Stipple.jl:514
|
||||||
|
│ [6] init_from_storage(t::Type{Main.App.var"Main.App_ReactiveModel"}; channel::String, kwargs::@Kwargs{})
|
||||||
|
│ @ Stipple.ModelStorage.Sessions ~/.julia/packages/Stipple/Hr6Qa/src/ModelStorage.jl:25
|
||||||
|
│ [7] init_from_storage(t::Type{Main.App.var"Main.App_ReactiveModel"})
|
||||||
|
│ @ Stipple.ModelStorage.Sessions ~/.julia/packages/Stipple/Hr6Qa/src/ModelStorage.jl:22
|
||||||
|
│ [8] top-level scope
|
||||||
|
│ @ ~/.julia/packages/Stipple/Hr6Qa/src/ReactiveTools.jl:767
|
||||||
|
│ [9] eval
|
||||||
|
│ @ ./boot.jl:385 [inlined]
|
||||||
|
│ [10] (::Stipple.ReactiveTools.var"#32#34"{Module, Vector{Any}})()
|
||||||
|
│ @ Stipple.ReactiveTools ~/.julia/packages/Stipple/Hr6Qa/src/ReactiveTools.jl:1193
|
||||||
|
│ [11] #invokelatest#2
|
||||||
|
│ @ ./essentials.jl:892 [inlined]
|
||||||
|
│ [12] invokelatest
|
||||||
|
│ @ ./essentials.jl:889 [inlined]
|
||||||
|
│ [13] (::Stipple.Pages.var"#7#10"{FilePathsBase.PosixPath, String, @Kwargs{}})()
|
||||||
|
│ @ Stipple.Pages ~/.julia/packages/Stipple/Hr6Qa/src/Pages.jl:68
|
||||||
|
│ [14] run_route(r::Genie.Router.Route)
|
||||||
|
│ @ Genie.Router ~/.julia/packages/Genie/uliWf/src/Router.jl:547
|
||||||
|
│ [15] route_request(req::HTTP.Messages.Request, res::HTTP.Messages.Response; stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
||||||
|
│ @ Genie.Router ~/.julia/packages/Genie/uliWf/src/Router.jl:172
|
||||||
|
│ [16] route_request
|
||||||
|
│ @ ~/.julia/packages/Genie/uliWf/src/Router.jl:147 [inlined]
|
||||||
|
│ [17] handle_request(req::HTTP.Messages.Request, res::HTTP.Messages.Response; stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
||||||
|
│ @ Genie.Server ~/.julia/packages/Genie/uliWf/src/Server.jl:300
|
||||||
|
│ [18] handle_request
|
||||||
|
│ @ ~/.julia/packages/Genie/uliWf/src/Server.jl:292 [inlined]
|
||||||
|
│ [19] (::Genie.Server.var"#27#28"{HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}}, HTTP.Messages.Request, HTTP.Messages.Response})()
|
||||||
|
│ @ Genie.Server /var/home/pixelguy14/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/macros.jl:123
|
||||||
|
│ [20] #invokelatest#2
|
||||||
|
│ @ ./essentials.jl:892 [inlined]
|
||||||
|
│ [21] invokelatest
|
||||||
|
│ @ ./essentials.jl:889 [inlined]
|
||||||
|
│ [22] #153
|
||||||
|
│ @ /var/home/pixelguy14/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:425 [inlined]
|
||||||
|
│ [23] run_work_thunk(thunk::Distributed.var"#153#154"{Genie.Server.var"#27#28"{HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}}, HTTP.Messages.Request, HTTP.Messages.Response}, Tuple{}, @Kwargs{}}, print_error::Bool)
|
||||||
|
│ @ Distributed /var/home/pixelguy14/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/process_messages.jl:70
|
||||||
|
│ [24] #remotecall_fetch#158
|
||||||
|
│ @ /var/home/pixelguy14/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:450 [inlined]
|
||||||
|
│ [25] remotecall_fetch
|
||||||
|
│ @ /var/home/pixelguy14/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:449 [inlined]
|
||||||
|
│ [26] remotecall_fetch
|
||||||
|
│ @ /var/home/pixelguy14/.julia/juliaup/julia-1.10.4+0.x64.linux.gnu/share/julia/stdlib/v1.10/Distributed/src/remotecall.jl:492 [inlined]
|
||||||
|
│ [27] setup_http_listener(req::HTTP.Messages.Request, res::HTTP.Messages.Response; stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
||||||
|
│ @ Genie.Server ~/.julia/packages/Genie/uliWf/src/Server.jl:344
|
||||||
|
│ [28] setup_http_listener (repeats 2 times)
|
||||||
|
│ @ ~/.julia/packages/Genie/uliWf/src/Server.jl:342 [inlined]
|
||||||
|
│ [29] (::Genie.Server.var"#24#25"{typeof(Genie.Server.setup_http_listener)})(stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
||||||
|
│ @ Genie.Server ~/.julia/packages/Genie/uliWf/src/Server.jl:313
|
||||||
|
│ [30] setup_http_streamer(stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
||||||
|
│ @ Genie.Server ~/.julia/packages/Genie/uliWf/src/Server.jl:333
|
||||||
|
│ [31] (::Genie.Server.var"#6#12")(stream::HTTP.Streams.Stream{HTTP.Messages.Request, HTTP.Connections.Connection{Sockets.TCPSocket}})
|
||||||
|
│ @ Genie.Server ~/.julia/packages/Genie/uliWf/src/Server.jl:124
|
||||||
|
│ [32] #invokelatest#2
|
||||||
|
│ @ ./essentials.jl:892 [inlined]
|
||||||
|
│ [33] invokelatest
|
||||||
|
│ @ ./essentials.jl:889 [inlined]
|
||||||
|
│ [34] handle_connection(f::Function, c::HTTP.Connections.Connection{Sockets.TCPSocket}, listener::HTTP.Servers.Listener{Nothing, Sockets.TCPServer}, readtimeout::Int64, access_log::Nothing)
|
||||||
|
│ @ HTTP.Servers ~/.julia/packages/HTTP/sJD5V/src/Servers.jl:469
|
||||||
|
│ [35] (::HTTP.Servers.var"#16#17"{Genie.Server.var"#6#12", HTTP.Servers.Listener{Nothing, Sockets.TCPServer}, Set{HTTP.Connections.Connection}, Int64, Nothing, ReentrantLock, Base.Semaphore, HTTP.Connections.Connection{Sockets.TCPSocket}})()
|
||||||
|
│ @ HTTP.Servers ~/.julia/packages/HTTP/sJD5V/src/Servers.jl:401
|
||||||
|
│
|
||||||
|
└ @ Genie.Server /home/pixelguy14/.julia/packages/Genie/uliWf/src/Server.jl:356
|
||||||
|
┌ Info: 2024-08-21 14:14:05 Watching ["/var/home/pixelguy14/Documentos/CINVESTAV_2024/Julia_imzML_GUI"]
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:19
|
||||||
|
┌ Info: 2024-08-21 14:14:06 Autoreloading
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:22
|
||||||
|
┌ Info: 2024-08-21 14:14:07
|
||||||
|
│ Web Server starting at http://127.0.0.1:8000
|
||||||
|
└ @ Genie.Server /home/pixelguy14/.julia/packages/Genie/uliWf/src/Server.jl:182
|
||||||
|
┌ Info: 2024-08-21 14:14:07 Listening on: 127.0.0.1:8000, thread id: 1
|
||||||
|
└ @ HTTP.Servers /home/pixelguy14/.julia/packages/HTTP/sJD5V/src/Servers.jl:382
|
||||||
|
┌ Info: 2024-08-21 14:15:57 Autoreloading
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:22
|
||||||
|
┌ Info: 2024-08-21 14:18:24 Watching ["/var/home/pixelguy14/Documentos/CINVESTAV_2024/Julia_imzML_GUI"]
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:19
|
||||||
|
┌ Info: 2024-08-21 14:18:25 Autoreloading
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:22
|
||||||
|
┌ Info: 2024-08-21 14:18:26
|
||||||
|
│ Web Server starting at http://127.0.0.1:8000
|
||||||
|
└ @ Genie.Server /home/pixelguy14/.julia/packages/Genie/uliWf/src/Server.jl:182
|
||||||
|
┌ Info: 2024-08-21 14:18:26 Listening on: 127.0.0.1:8000, thread id: 1
|
||||||
|
└ @ HTTP.Servers /home/pixelguy14/.julia/packages/HTTP/sJD5V/src/Servers.jl:382
|
||||||
|
┌ Info: 2024-08-21 14:19:13 Autoreloading
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:22
|
||||||
|
┌ Info: 2024-08-21 14:21:11 Autoreloading
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:22
|
||||||
|
┌ Info: 2024-08-21 14:23:39 Watching ["/var/home/pixelguy14/Documentos/CINVESTAV_2024/Julia_imzML_GUI"]
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:19
|
||||||
|
┌ Info: 2024-08-21 14:23:39 Autoreloading
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:22
|
||||||
|
┌ Info: 2024-08-21 14:23:41
|
||||||
|
│ Web Server starting at http://127.0.0.1:8000
|
||||||
|
└ @ Genie.Server /home/pixelguy14/.julia/packages/Genie/uliWf/src/Server.jl:182
|
||||||
|
┌ Info: 2024-08-21 14:23:41 Listening on: 127.0.0.1:8000, thread id: 1
|
||||||
|
└ @ HTTP.Servers /home/pixelguy14/.julia/packages/HTTP/sJD5V/src/Servers.jl:382
|
||||||
|
┌ Info: 2024-08-21 14:24:22 Autoreloading
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:22
|
||||||
|
┌ Info: 2024-08-21 14:25:02 Autoreloading
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:22
|
||||||
|
┌ Info: 2024-08-21 14:28:39 Watching ["/var/home/pixelguy14/Documentos/CINVESTAV_2024/Julia_imzML_GUI"]
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:19
|
||||||
|
┌ Info: 2024-08-21 14:28:40 Autoreloading
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:22
|
||||||
|
┌ Info: 2024-08-21 14:28:41
|
||||||
|
│ Web Server starting at http://127.0.0.1:8000
|
||||||
|
└ @ Genie.Server /home/pixelguy14/.julia/packages/Genie/uliWf/src/Server.jl:182
|
||||||
|
┌ Info: 2024-08-21 14:28:41 Listening on: 127.0.0.1:8000, thread id: 1
|
||||||
|
└ @ HTTP.Servers /home/pixelguy14/.julia/packages/HTTP/sJD5V/src/Servers.jl:382
|
||||||
|
┌ Info: 2024-08-21 14:34:14 Watching ["/var/home/pixelguy14/Documentos/CINVESTAV_2024/Julia_imzML_GUI"]
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:19
|
||||||
|
┌ Info: 2024-08-21 14:34:15 Autoreloading
|
||||||
|
└ @ GenieAutoReload /home/pixelguy14/.julia/packages/GenieAutoReload/ESvsh/src/GenieAutoReload.jl:22
|
||||||
|
┌ Info: 2024-08-21 14:34:16
|
||||||
|
│ Web Server starting at http://127.0.0.1:8000
|
||||||
|
└ @ Genie.Server /home/pixelguy14/.julia/packages/Genie/uliWf/src/Server.jl:182
|
||||||
|
┌ Info: 2024-08-21 14:34:16 Listening on: 127.0.0.1:8000, thread id: 1
|
||||||
|
└ @ HTTP.Servers /home/pixelguy14/.julia/packages/HTTP/sJD5V/src/Servers.jl:382
|
||||||
|
|||||||
Binary file not shown.
|
Before Width: | Height: | Size: 82 KiB After Width: | Height: | Size: 82 KiB |
Loading…
x
Reference in New Issue
Block a user