Skip to content

Commit

Permalink
Bugfix/input limits (#154)
Browse files Browse the repository at this point in the history
  • Loading branch information
sanderegg authored May 26, 2023
1 parent fb0bbd8 commit 3e7c9cf
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion services/sleeper/.cookiecutterrc
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ default_context:
project_slug: "sleeper"
project_type: "computational"
release_date: "2020"
version: "2.1.5"
version: "2.1.6"
2 changes: 1 addition & 1 deletion services/sleeper/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.1.5
2.1.6
8 changes: 4 additions & 4 deletions services/sleeper/docker-compose-meta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ services:
with int number", "description": "Pick a file containing only one integer",
"type": "data:text/plain", "fileToKeyMap": {"single_number.txt": "input_1"}},
"input_2": {"displayOrder": 2, "label": "Sleep interval", "description":
"Choose an amount of time to sleep in range [0-5]", "defaultValue": 2, "type":
"ref_contentSchema", "contentSchema": {"title": "Sleep interval", "type":
"integer", "x_unit": "second", "minimum": 0, "maximum": 5}}, "input_3":
"Choose an amount of time to sleep in range [0-65]", "defaultValue": 2,
"type": "ref_contentSchema", "contentSchema": {"title": "Sleep interval",
"type": "integer", "x_unit": "second", "minimum": 0, "maximum": 65}}, "input_3":
{"displayOrder": 3, "label": "Fail after sleep", "description": "If set
to true will cause service to fail after it sleeps", "type": "boolean",
"defaultValue": false}, "input_4": {"displayOrder": 4, "label": "Distance
Expand All @@ -33,7 +33,7 @@ services:
"contentSchema": {"title": "Random sleep interval", "type": "integer", "x_unit":
"second"}}}}'
io.simcore.type: '{"type": "computational"}'
io.simcore.version: '{"version": "2.1.5"}'
io.simcore.version: '{"version": "2.1.6"}'
org.label-schema.build-date: ${BUILD_DATE}
org.label-schema.schema-version: '1.0'
org.label-schema.vcs-ref: ${VCS_REF}
Expand Down
6 changes: 3 additions & 3 deletions services/sleeper/metadata/metadata.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: sleeper
key: simcore/services/comp/itis/sleeper
type: computational
integration-version: 1.0.0
version: 2.1.5
version: 2.1.6
description: A service which awaits for time to pass, two times.
contact: [email protected]
authors:
Expand All @@ -26,15 +26,15 @@ inputs:
input_2:
displayOrder: 2
label: Sleep interval
description: Choose an amount of time to sleep in range [0-5]
description: Choose an amount of time to sleep in range [0-65]
defaultValue: 2
type: ref_contentSchema
contentSchema:
title: Sleep interval
type: integer
x_unit: second
minimum: 0
maximum: 5
maximum: 65
input_3:
displayOrder: 3
label: Fail after sleep
Expand Down
2 changes: 1 addition & 1 deletion services/sleeper/versioning/service.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 2.1.5
current_version = 2.1.6
commit = False
message = service/kernel version: {current_version} → {new_version}
tag = False
Expand Down

0 comments on commit 3e7c9cf

Please sign in to comment.