marcdexet-cnrs
marcdexet-cnrs
I get the same with powershell
+1 doesn't work
We get the same here ``` Jupyter Book : 0.15.1 External ToC : 0.3.1 MyST-Parser : 0.18.1 MyST-NB : 0.17.2 Sphinx Book Theme : 1.0.1 Jupyter-Cache : 0.6.1 NbClient :...
I tried to go back to previous version of jupyter-books to make the widget appear, but none of them is Ok. @meldefon do you get a previous version working as...
I presume I can get inspiration from `uws.service.backup.DefaultUWSBackupManager` ?
And if I go directly to the last interaction with jobList in `uws.service.backup.DefaultUWSBackupManager.restoreJob(JSONObject, Map)` all I have to do is to _addNewJob_ : ```(java) return (uws.getJobList(jobListName).addNewJob(job) != null); ``` Is...
Ok. I succeed to reload from mongo all COMPLETED jobs. I just convert back my recorded job definitions as UWSJob and add this to the right jobList. **Don't forget to...
Ok. For my usage, I've decided to wrap UWSService into a Spring RestControler. Maybe you could take a look to SpringBoot RestControler because of I want to build a huge...
Exemple *uws.service.actions.AddJob* ``` @RestControler @RequestMapping("/uws") public class UWSControler { /** * Add Job */ @PostMapping("/{jobList}") public void addJob() { ... } /** * Lists Jobs */ @GetMapping("/{jobList}") public void listJobs()...