Skip to content
Snippets Groups Projects
Unverified Commit d3796f60 authored by Ryan Laurie's avatar Ryan Laurie Committed by GitHub
Browse files

Update database writability on upload settings change (#37720)

parent 9e721c37
No related branches found
No related tags found
No related merge requests found
......@@ -46,6 +46,7 @@ describeWithSnowplow(
const EMPTY_SCHEMA_NAME = "empty_uploads";
cy.intercept("PUT", "/api/setting").as("saveSettings");
cy.intercept("GET", "/api/database").as("databaseList");
restore("postgres-writable");
cy.signInAsAdmin();
......@@ -78,7 +79,7 @@ describeWithSnowplow(
.button("Enable uploads")
.click();
cy.wait("@saveSettings");
cy.wait(["@saveSettings", "@databaseList"]);
uploadFile(testFile, "postgres");
......
......@@ -7,6 +7,7 @@ import _ from "underscore";
import Databases from "metabase/entities/databases";
import Schemas from "metabase/entities/schemas";
import { useDispatch } from "metabase/lib/redux";
import { getSetting } from "metabase/selectors/settings";
import { updateSettings } from "metabase/admin/settings/settings";
......@@ -99,6 +100,7 @@ export function UploadSettingsView({
settings.uploads_table_prefix ?? null,
);
const [errorMessage, setErrorMessage] = useState<null | string>(null);
const dispatch = useDispatch();
const showSchema = dbId && dbHasSchema(databases, dbId);
const databaseOptions = getDatabaseOptions(databases);
......@@ -135,6 +137,7 @@ export function UploadSettingsView({
setSchemaName(schemaName);
setTablePrefix(tablePrefix);
saveStatusRef?.current?.setSaved();
dispatch(Databases.actions.invalidateLists());
})
.catch(() => showError(enableErrorMessage));
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment