Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
Metabase
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Engineering Digital Service
Metabase
Commits
e1853734
Commit
e1853734
authored
6 years ago
by
Maz Ameli
Browse files
Options
Downloads
Patches
Plain Diff
consolidate some strings
parent
a355411b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/metabase/models/collection.clj
+2
-2
2 additions, 2 deletions
src/metabase/models/collection.clj
src/metabase/models/setting.clj
+1
-1
1 addition, 1 deletion
src/metabase/models/setting.clj
with
3 additions
and
3 deletions
src/metabase/models/collection.clj
+
2
−
2
View file @
e1853734
...
...
@@ -632,9 +632,9 @@
;; You also can't archive a Personal Collection
(
when
(
api/column-will-change?
:archived
collection-before-updates
collection-updates
)
(
throw
(
ex-info
(
tru
"You cannot archive a Personal Collection
!
"
)
(
ex-info
(
tru
"You cannot archive a Personal Collection
.
"
)
{
:status-code
400
:errors
{
:archived
(
tru
"You cannot archive a Personal Collection
!
"
)}}))))
:errors
{
:archived
(
tru
"You cannot archive a Personal Collection
.
"
)}}))))
(
s/defn
^
:private
maybe-archive-or-unarchive!
"If `:archived` specified in the updates map, archive/unarchive as needed."
...
...
This diff is collapsed.
Click to expand it.
src/metabase/models/setting.clj
+
1
−
1
View file @
e1853734
...
...
@@ -147,7 +147,7 @@
(
db/simple-insert!
Setting
:key
settings-last-updated-key,
:value
current-timestamp-as-string-honeysql
)
(
catch
java.sql.SQLException
e
;; go ahead and log the Exception anyway on the off chance that it *wasn't* just a race condition issue
(
log/error
(
tru
"Error inserting new Setting:"
)
(
with-out-str
(
jdbc/print-sql-exception-chain
e
)))))))
(
log/error
(
tru
"Error inserting
a
new Setting:"
)
(
with-out-str
(
jdbc/print-sql-exception-chain
e
)))))))
;; Now that we updated the value in the DB, go ahead and update our cached value as well, because we know about the
;; changes
(
swap!
cache
assoc
settings-last-updated-key
(
db/select-one-field
:value
Setting
:key
settings-last-updated-key
)))
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment