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

Changing int64 to int32 for page_size and cpu_count #175

Merged
merged 2 commits into from
Sep 21, 2022
Merged
Changes from all 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
8 changes: 4 additions & 4 deletions openapi/task_execution_service.openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ paths:
Must be less than 2048. Defaults to 256.
schema:
type: integer
format: int64
format: int32
- name: page_token
in: query
description: |-
Expand Down Expand Up @@ -495,7 +495,7 @@ components:
cpu_cores:
type: integer
description: Requested number of CPUs
format: int64
format: int32
example: 4
preemptible:
type: boolean
Expand Down Expand Up @@ -554,7 +554,7 @@ components:
backend_parameters_strict:
type: boolean
description: |-
If set to true, backends should fail the task if any backend_parameters
If set to true, backends should fail the task if any backend_parameters
key/values are unsupported, otherwise, backends should attempt to run the task
format: boolean
default: false
Expand Down Expand Up @@ -589,7 +589,7 @@ components:
tesResources_backend_parameters:
type: array
description: |-
Lists all tesResources.backend_parameters keys supported
Lists all tesResources.backend_parameters keys supported
by the service
items:
type: string
Expand Down