-
Notifications
You must be signed in to change notification settings - Fork 0
Labels
bugSomething isn't workingSomething isn't working
Description
Ran the baro script manually, and got the following error:
Error: object 'temp_data' not found
This should be tempdata not `temp_data:
marsMaintenanceScripts/02_connectscripts/01_update_baro_tables.rmd
Lines 320 to 326 in d6ce9ad
| tempdata <- temp_data |> | |
| mutate(dtime = mdy_hms(dtime, tz = "EST"), | |
| dtime = with_tz(dtime, tz = "America/New_York")) | |
| tempdata$baro_rawfile_uid <- newfiles$baro_rawfile_uid[i] | |
| tempdata <- tempdata[complete.cases(tempdata[, 1:3]),] #Purge NA rows from the final data set | |
| newdata <- bind_rows(newdata, tempdata) |
This bug is likely due to me testing it locally with temp_data, which is why it ran ok locally but wouldn't run successfully elsewhere. Updating to tempdata fixed the problem.
The more pressing issue here is that the dashboard and logs all show the baro script as running successfully and did not catch this error.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working