misantamaria commited on
Commit
d2a125c
·
1 Parent(s): bb5b6fd

mmap to FALSE to check if it fixes permission error

Browse files
Files changed (1) hide show
  1. r_shiny_app/server.R +1 -1
r_shiny_app/server.R CHANGED
@@ -581,7 +581,7 @@ shinyServer(function(input, output, session) {
581
  #artifact_dir = ts_ar$download(root=DEFAULT_PATH_WANDB_ARTIFACTS)
582
  #print(paste0("Reactive tsdf | Read feather | Downloaded: ", artifact_dir))
583
 
584
- df <- read_feather(path, as_data_frame = TRUE, mmap = TRUE) %>% rename('timeindex' = `__index_level_0__`)
585
  t_end = Sys.time()
586
  print(paste0("Reactive tsdf | Read feather | Execution time: ", t_end - t_init, " seconds"))
587
  flush.console()
 
581
  #artifact_dir = ts_ar$download(root=DEFAULT_PATH_WANDB_ARTIFACTS)
582
  #print(paste0("Reactive tsdf | Read feather | Downloaded: ", artifact_dir))
583
 
584
+ df <- read_feather(path, as_data_frame = TRUE, mmap = FALSE) %>% rename('timeindex' = `__index_level_0__`)
585
  t_end = Sys.time()
586
  print(paste0("Reactive tsdf | Read feather | Execution time: ", t_end - t_init, " seconds"))
587
  flush.console()