You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Following the installation guide (and including the grant access in pull request #257), I'm getting the following error to the line db_ts_store(con, tsl).
Error in store_records(con, to_ts_json(x), access, "timeseries_main", :
No access level supplied and no default configured on the database.
The text was updated successfully, but these errors were encountered:
Aha, this seems to be because the timeseries.access_levels table is not populated during installation, but if I run the lines from the dev environment setup, it works:
INSERT INTO timeseries.access_levels VALUES ('timeseries_access_public', 'Publicly available time series');
INSERT INTO timeseries.access_levels VALUES ('timeseries_access_main', 'Non-public time series without license restrictions', true);
INSERT INTO timeseries.access_levels VALUES ('timeseries_access_restricted', 'License restricted time series');
So presumably these three lines need to be called somewhere in install_timeseriesdb() for the installation setup to work.
Following the installation guide (and including the grant access in pull request #257), I'm getting the following error to the line
db_ts_store(con, tsl)
.The text was updated successfully, but these errors were encountered: