Skip to content

Commit eb2c245

Browse files
committed
update description for clarity
1 parent c8b4cfc commit eb2c245

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

airbyte_cdk/sources/declarative/declarative_component_schema.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ properties:
4444
"$ref": "#/definitions/HTTPAPIBudget"
4545
max_concurrent_job_count:
4646
title: Maximum Concurrent Async Jobs
47-
description: Maximum number of concurrent async jobs to run. This is often set by the API's maximum number of concurrent jobs on the account level.
47+
description: Maximum number of concurrent async jobs to run. This property is only relevant for sources/streams that support asynchronous job execution (e.g. a Report stream that requires that initiates a job, polls the job status, and then fetches the job results). This is often set by the API's maximum number of concurrent jobs on the account level.
4848
type: integer
4949
metadata:
5050
type: object

airbyte_cdk/sources/declarative/models/declarative_component_schema.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1873,7 +1873,7 @@ class Config:
18731873
api_budget: Optional[HTTPAPIBudget] = None
18741874
max_concurrent_job_count: Optional[int] = Field(
18751875
None,
1876-
description="Maximum number of concurrent async jobs to run. This is often set by the API's maximum number of concurrent jobs on the account level.",
1876+
description="Maximum number of concurrent async jobs to run. This property is only relevant for sources/streams that support asynchronous job execution (e.g. a Report stream that requires that initiates a job, polls the job status, and then fetches the job results). This is often set by the API's maximum number of concurrent jobs on the account level.",
18771877
title="Maximum Concurrent Async Jobs",
18781878
)
18791879
metadata: Optional[Dict[str, Any]] = Field(
@@ -1905,7 +1905,7 @@ class Config:
19051905
api_budget: Optional[HTTPAPIBudget] = None
19061906
max_concurrent_job_count: Optional[int] = Field(
19071907
None,
1908-
description="Maximum number of concurrent async jobs to run. This is often set by the API's maximum number of concurrent jobs on the account level.",
1908+
description="Maximum number of concurrent async jobs to run. This property is only relevant for sources/streams that support asynchronous job execution (e.g. a Report stream that requires that initiates a job, polls the job status, and then fetches the job results). This is often set by the API's maximum number of concurrent jobs on the account level.",
19091909
title="Maximum Concurrent Async Jobs",
19101910
)
19111911
metadata: Optional[Dict[str, Any]] = Field(

0 commit comments

Comments
 (0)