Skip to content

Commit

Permalink
Increase number of attempts to 20 (#11446)
Browse files Browse the repository at this point in the history
* Increase number of attempts to 20

* Bump version

* Update docs

* Bump version in dockerfile

* Update specs
  • Loading branch information
girarda authored Mar 28, 2022
1 parent 1d12c7c commit ec27d81
Show file tree
Hide file tree
Showing 5 changed files with 55 additions and 56 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@
- name: Facebook Marketing
sourceDefinitionId: e7778cfc-e97c-4458-9ecb-b4f2bba8946c
dockerRepository: airbyte/source-facebook-marketing
dockerImageTag: 0.2.40
dockerImageTag: 0.2.41
documentationUrl: https://docs.airbyte.io/integrations/sources/facebook-marketing
icon: facebook.svg
sourceType: api
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1684,7 +1684,7 @@
supportsNormalization: false
supportsDBT: false
supported_destination_sync_modes: []
- dockerImage: "airbyte/source-facebook-marketing:0.2.40"
- dockerImage: "airbyte/source-facebook-marketing:0.2.41"
spec:
documentationUrl: "https://docs.airbyte.io/integrations/sources/facebook-marketing"
changelogUrl: "https://docs.airbyte.io/integrations/sources/facebook-marketing"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ RUN pip install .
ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py"
ENTRYPOINT ["python", "/airbyte/integration_code/main.py"]

LABEL io.airbyte.version=0.2.40
LABEL io.airbyte.version=0.2.41
LABEL io.airbyte.name=airbyte/source-facebook-marketing
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class InsightAsyncJobManager:

# When current insights throttle hit this value no new jobs added.
THROTTLE_LIMIT = 70
MAX_NUMBER_OF_ATTEMPTS = 5
MAX_NUMBER_OF_ATTEMPTS = 20
# Time to wait before checking job status update again.
JOB_STATUS_UPDATE_SLEEP_SECONDS = 30
# Maximum of concurrent jobs that could be scheduled. Since throttling
Expand Down
Loading

0 comments on commit ec27d81

Please sign in to comment.