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
d29aade0
Commit
d29aade0
authored
9 years ago
by
Allen Gilliland
Browse files
Options
Downloads
Plain Diff
Merge branch 'master' into orgless
parents
b8327627
c1cc38ac
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/api/meta/field.clj
+6
-7
6 additions, 7 deletions
src/metabase/api/meta/field.clj
test/metabase/task_test.clj
+4
-4
4 additions, 4 deletions
test/metabase/task_test.clj
with
10 additions
and
11 deletions
src/metabase/api/meta/field.clj
+
6
−
7
View file @
d29aade0
(
ns
metabase.api.meta.field
(
:require
[
compojure.core
:refer
[
GET
PUT
POST
]]
[
medley.core
:as
m
edley
]
[
medley.core
:as
m
]
[
metabase.api.common
:refer
:all
]
[
metabase.db
:refer
:all
]
[
metabase.db.metadata-queries
:as
metadata
]
...
...
@@ -36,14 +36,13 @@
(
defendpoint
PUT
"/:id"
"Update `Field` with ID."
[
id
:as
{{
:keys
[
field_type
special_type
preview_display
description
]}
:body
}]
{
field_type
FieldType
{
field_type
FieldType
special_type
FieldSpecialType
}
(
write-check
Field
id
)
(
check-500
(
upd-non-nil-keys
Field
id
:field_type
field_type
:special_type
special_type
:preview_display
preview_display
:description
description
))
(
check-500
(
m/mapply
upd
Field
id
(
merge
{
:description
description
; you're allowed to unset description and special_type
:special_type
special_type
}
; but field_type and preview_display must be replaced
(
when
field_type
{
:field_type
field_type
})
; with new non-nil values
(
when
preview_display
{
:preview_display
preview_display
}))))
(
sel
:one
Field
:id
id
))
(
defendpoint
GET
"/:id/summary"
...
...
This diff is collapsed.
Click to expand it.
test/metabase/task_test.clj
+
4
−
4
View file @
d29aade0
...
...
@@ -67,16 +67,16 @@
:restarted
]
[(
do
(
stop-task-runner!
)
(
with-redefs
[
metabase.task/hourly-task-delay
(
constantly
5
0
)
(
with-redefs
[
metabase.task/hourly-task-delay
(
constantly
10
0
)
metabase.task/hourly-tasks-hook
mock-hourly-tasks-hook
]
(
add-hook!
#
'hourly-tasks-hook
inc-task-test-atom-counter-by-system-hour
)
(
reset!
task-test-atom-counter
0
)
(
start-task-runner!
)
[
@
task-test-atom-counter
; should be 0, since not enough time has elaspsed for the hook to be executed
(
do
(
Thread/sleep
75
)
@
task-test-atom-counter
)
; should have been called once (~
2
5ms ago)
(
do
(
Thread/sleep
1
00
)
(
do
(
Thread/sleep
150
)
@
task-test-atom-counter
)
; should have been called once (~5
0
ms ago)
(
do
(
Thread/sleep
2
00
)
@
task-test-atom-counter
)
; should have been called two more times
(
do
(
stop-task-runner!
)
:stopped
)]))
...
...
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