Skip to content
This repository has been archived by the owner on Dec 7, 2022. It is now read-only.

Commits

Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?

Commits on Dec 7, 2022

  1. Update README.rst

    ipanova committed Dec 7, 2022
    Copy the full SHA
    cf91ed2 View commit details
    Browse the repository at this point in the history

Commits on Dec 4, 2020

  1. Automatic commit of package [python-nectar] release [1.6.4-1].

    Created by command:
    
    /usr/bin/tito tag --use-version 1.6.4
    evgeni committed Dec 4, 2020
    Copy the full SHA
    3ab2489 View commit details
    Browse the repository at this point in the history
  2. add provides and obsoletes on python2-nectar

    to ease upgrades
    evgeni committed Dec 4, 2020
    Copy the full SHA
    f55740f View commit details
    Browse the repository at this point in the history
  3. Merge pull request #76 from ipanova/args

    Check on the exception args.
    ipanova committed Dec 4, 2020
    Copy the full SHA
    e36e79b View commit details
    Browse the repository at this point in the history

Commits on Dec 3, 2020

  1. Check on the exception args.

    [noissue]
    ipanova committed Dec 3, 2020
    Copy the full SHA
    9afa0e9 View commit details
    Browse the repository at this point in the history

Commits on Dec 2, 2020

  1. Automatic commit of package [python-nectar] release [1.6.3-1].

    Created by command:
    
    /usr/bin/tito tag --use-version 1.6.3
    evgeni committed Dec 2, 2020
    Copy the full SHA
    65eb6c4 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #75 from ipanova/i7911

    Fixed RST handling.
    ipanova committed Dec 2, 2020
    Copy the full SHA
    bcd75a2 View commit details
    Browse the repository at this point in the history
  3. Fixed RST handling.

    Check correct item in tuple.
    
    closes #7911
    https://pulp.plan.io/issues/7911
    ipanova committed Dec 2, 2020
    Copy the full SHA
    f19d8a3 View commit details
    Browse the repository at this point in the history

Commits on Sep 14, 2020

  1. Automatic commit of package [python-nectar] release [1.6.2-1].

    Created by command:
    
    /usr/bin/tito tag --use-version 1.6.2
    evgeni committed Sep 14, 2020
    Copy the full SHA
    f278ed3 View commit details
    Browse the repository at this point in the history

Commits on Sep 4, 2020

  1. Merge pull request #74 from ipanova/fix-test

    Fix timeout test.
    ipanova committed Sep 4, 2020
    Copy the full SHA
    e9080b2 View commit details
    Browse the repository at this point in the history
  2. Fix timeout test.

    [noissue]
    ipanova committed Sep 4, 2020
    Copy the full SHA
    e009001 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #73 from ipanova/fix-comments

    Remove outdated comments.
    ipanova committed Sep 4, 2020
    Copy the full SHA
    ce464d3 View commit details
    Browse the repository at this point in the history
  4. Remove outdated comments.

    [noissue]
    ipanova committed Sep 4, 2020
    Copy the full SHA
    8ea1bf6 View commit details
    Browse the repository at this point in the history
  5. Better retries for nectar which can handle interrupted connections (#72)

    * Better retries for nectar which can handle interrupted connections
    
    When server send connection reset during streaming data, standard
    urllib retry adapter is not able to handle this and download
    immediatelly fail. To improve this, all exceptions from server
    but DownloadCancelled are retried by default with 5 retries
    
    * - Changed default retries to 3
    - Removed retrying when TimeoutException is raised
    
    * Retry on DownloadFailed only when there's indication of connection reset
    
    * Changed DEFAULT_TRIES to DEFAULT_GENERIC_TRIES for DownloadFailed
    
    * - fixed typo
    
    * Checking status code in exception args instead of response
    
    * - retry only on ECONNRESET
    - do not retry on DownloadFailed
    midnightercz committed Sep 4, 2020
    Copy the full SHA
    338d025 View commit details
    Browse the repository at this point in the history

Commits on Aug 17, 2020

  1. Added 'extra_headers' attribute as replacement for session.headers (#70)

    * Removed unused session attribute from __init__
    
    * Revert "Removed unused session attribute from __init__"
    
    This reverts commit f508ba5.
    
    * Added 'extra_headers' attribute as replacement for session.headers
    
    Because session was previously shared for whole Downloader and now
    it's created for every request, it's not possible to use it as
    holder for required http headers. HTTPThreadedDownloader.extra_headers
    should be now used as replacement for
    HTTPThreadedDownloader.session.headers
    
    * Use global session only when set to downloader
    midnightercz committed Aug 17, 2020
    Copy the full SHA
    b9b1e13 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #69 from midnightercz/session-fixes

    Fixed changes in _make_session
    ipanova committed Aug 17, 2020
    Copy the full SHA
    51e8e64 View commit details
    Browse the repository at this point in the history

Commits on Jul 20, 2020

  1. Copy the full SHA
    52fe12c View commit details
    Browse the repository at this point in the history

Commits on Jul 15, 2020

  1. Merge pull request #68 from midnightercz/no-shared-session

    Do not share requests session within multiple threads
    dkliban committed Jul 15, 2020
    Copy the full SHA
    cad47d3 View commit details
    Browse the repository at this point in the history
  2. Do not share requests session within multiple threads

    If one session object is shared within multiple threads, it can
    happen it ran out of retries even for new connections which is not
    desired. Constant number of retries should be applied to every
    request. In this commit session object is created per every
    worker thread
    
    Fixes #7149.
    midnightercz committed Jul 15, 2020
    Copy the full SHA
    061751a View commit details
    Browse the repository at this point in the history

Commits on Sep 19, 2019

  1. Automatic commit of package [python-nectar] release [1.6.1-1].

    Created by command:
    
    /usr/bin/tito tag --use-version 1.6.1
    pcreech committed Sep 19, 2019
    Copy the full SHA
    19fd43b View commit details
    Browse the repository at this point in the history

Commits on Jul 31, 2019

  1. Merge pull request #66 from twaugh/retry-after

    Always retry on 429 response, even without a retry-after header
    ipanova committed Jul 31, 2019
    Copy the full SHA
    812b58a View commit details
    Browse the repository at this point in the history
  2. Always retry on 429 response, even without a retry-after header

    Requests with 429 responses ('Too many requests') are only retried by
    default if the retry-after header is present.
    
    Instead, always retry these requests. This fixes interoperability with
    Quay.io, which presents 429 requests without a retry-after header.
    
    Fixes #5173.
    
    Signed-off-by: Tim Waugh <twaugh@redhat.com>
    twaugh committed Jul 31, 2019
    Copy the full SHA
    d94087d View commit details
    Browse the repository at this point in the history

Commits on Apr 2, 2019

  1. Merge pull request #65 from dkliban/stream

    Problem: downloader can't be configured to NOT decode
    dkliban committed Apr 2, 2019
    Copy the full SHA
    f1c7321 View commit details
    Browse the repository at this point in the history
  2. Problem: downloader can't be configured to NOT decode

    Solution: add downloader config option 'stream'
    
    When 'stream' is True, the downloader does not decode the response.
    When 'stream' is False, the downloader decodes the response unless it's a file ending in .gz.
    
    re: #4603
    https://pulp.plan.io/issues/4603
    dkliban committed Apr 2, 2019
    Copy the full SHA
    00a21c8 View commit details
    Browse the repository at this point in the history

Commits on Oct 18, 2017

  1. Automatic commit of package [python-nectar] release [1.5.6-1].

    Created by command:
    
    /usr/bin/tito tag
    ipanova committed Oct 18, 2017
    Copy the full SHA
    75445de View commit details
    Browse the repository at this point in the history

Commits on Oct 4, 2017

  1. Merge pull request #63 from ammaritiz/2960-nectar-unicode

    UnicodeEncodeError in comments provided with SSL cert/key/CA
    ammaritiz committed Oct 4, 2017
    Copy the full SHA
    7f6f8ae View commit details
    Browse the repository at this point in the history

Commits on Sep 29, 2017

  1. UnicodeEncodeError in comments provided with SSL cert/key/CA

    A UnicodeError was being raised if non-ascii characters
    were present in comments provided with SSL cert/key/CA
    
    closes #2960
    ammaritiz committed Sep 29, 2017
    Copy the full SHA
    db4adfd View commit details
    Browse the repository at this point in the history

Commits on Sep 7, 2017

  1. Merge pull request #62 from pulp/revert-61-2960-nectar-unicode

    Revert "UnicodeEncodeError in comments provided with SSL cert/key/CA"
    ammaritiz committed Sep 7, 2017
    Copy the full SHA
    f91cf75 View commit details
    Browse the repository at this point in the history

Commits on Sep 6, 2017

  1. Copy the full SHA
    ec86ae5 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #61 from ammaritiz/2960-nectar-unicode

    UnicodeEncodeError in comments provided with SSL cert/key/CA
    ammaritiz committed Sep 6, 2017
    Copy the full SHA
    caaae84 View commit details
    Browse the repository at this point in the history

Commits on Sep 1, 2017

  1. UnicodeEncodeError in comments provided with SSL cert/key/CA

    A UnicodeError was being raised if non-ascii characters
    were present in comments provided with SSL cert/key/CA
    
    closes #2960
    ammaritiz committed Sep 1, 2017
    Copy the full SHA
    e0863db View commit details
    Browse the repository at this point in the history

Commits on Aug 2, 2017

  1. Automatic commit of package [python-nectar] release [1.5.5-1].

    Created by command:
    
    /usr/bin/tito tag
    ipanova committed Aug 2, 2017
    Copy the full SHA
    90629df View commit details
    Browse the repository at this point in the history

Commits on Jun 6, 2017

  1. Merge pull request #60 from zjhuntin/2784

    Update spec files Source0
    pcreech committed Jun 6, 2017
    Copy the full SHA
    2853582 View commit details
    Browse the repository at this point in the history

Commits on May 31, 2017

  1. Update spec files Source0

    The Source0 currently does not lead to the correct source file.
    This updates the spec file and renames the source to what would be
    the expected source name.
    
    ref #2784
    https://pulp.plan.io/issues/2784
    zjhuntin committed May 31, 2017
    Copy the full SHA
    32e65c2 View commit details
    Browse the repository at this point in the history

Commits on May 18, 2017

  1. Merge pull request #58 from werwty/feature/1282

    Update nectar to also read headers from config
    werwty committed May 18, 2017
    Copy the full SHA
    ed20c3c View commit details
    Browse the repository at this point in the history
Older