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

Timeout parameter #84

Draft
wants to merge 4 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 16 additions & 2 deletions schema/build/generate_schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,15 @@ def generate_component(op: str):
"example": [
"infores:aragorn"
],
"minLength": 1
"minLength": 1,
"nullable": True
},
"timeout": {
"type": "float",
"description": "Time allowed for this operation to completed by a service",
"example": 60.0,
"nullable": True
}
}
},
{
Expand All @@ -62,8 +69,15 @@ def generate_component(op: str):
"example": [
"infores:aragorn"
],
"minLength": 1
"minLength": 1,
"nullable": True
},
"timeout": {
"type": "float",
"description": "Time allowed for this operation to completed by a service",
"example": 60.0,
"nullable": True
}
}
},
]
Expand Down
Loading
Loading