Skip to content

Commit

Permalink
chore: set maximum value for max_batch_size (#159)
Browse files Browse the repository at this point in the history
* chore: set maximum value for max_batch_size

* chore: remove has_advertiser_opted_in_odax as we use API v17
  • Loading branch information
am6010 authored Sep 18, 2023
1 parent 4bd415f commit 16b77dc
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -137,9 +137,6 @@
}
}
},
"has_advertiser_opted_in_odax": {
"type": ["null", "boolean"]
},
"has_migrated_permissions": {
"type": ["null", "boolean"]
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,7 @@ def schema_extra(schema: Dict[str, Any], model: Type["ConnectorConfig"]) -> None
title="Maximum size of Batched Requests",
order=9,
default=50,
maximum=50,
)

action_breakdowns_allow_empty: bool = Field(
Expand Down

0 comments on commit 16b77dc

Please sign in to comment.