Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Read access in etl schema #1818

Merged
merged 3 commits into from Jan 21, 2020
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -28,6 +28,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
- AutoFlow now uses [Bundler](https://bundler.io/) to manage Ruby dependencies.
- The `end_date` parameter of `flowclient.modal_location_from_dates` now refers to the day _after_ the final date included in the range, so is now consistent with other queries that have start/end date parameters. [#819](https://github.com/Flowminder/FlowKit/issues/819)
- Date intervals in AutoFlow date stencils are now interpreted as half-open intervals (i.e. including start date, excluding end date), for consistency with date ranges elsewhere in FlowKit.
- `flowmachine` user now has read access to ETL metadata tables in FlowDB

### Fixed
- Quickstart should no longer fail on systems which do not include the `netstat` tool. [#1472](https://github.com/Flowminder/FlowKit/issues/1472)
Expand Down
2 changes: 1 addition & 1 deletion flowdb/bin/build/9000_last_create_roles.sh
Expand Up @@ -125,7 +125,7 @@ do
"
done

declare -a schema_list_restricted=("events" "dfs" "infrastructure" "routing" "interactions")
declare -a schema_list_restricted=("events" "dfs" "infrastructure" "routing" "interactions" "etl")
for schema in "${schema_list_restricted[@]}"
do
echo "Restricting permissions to $FLOWMACHINE_FLOWDB_USER on $schema."
Expand Down