8000 Comparing 1.1.3...1.1.4 · gabrielfalcao/HTTPretty · GitHub
[go: up one dir, main page]

Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: gabrielfalcao/HTTPretty
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.1.3
Choose a base ref
...
head repository: gabrielfalcao/HTTPretty
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1.1.4
Choose a head ref
  • 3 commits
  • 4 files changed
  • 2 contributors

Commits on Aug 16, 2021

  1. Fallback to WARNING when logging.getLogger().level is None (#435)

    We see the following errors in cloud-init that this solves:
    
        tests/unittests/test_data.py:66: in setUp
            super(TestConsumeUserData, self).setUp()
        cloudinit/tests/helpers.py:245: in setUp
            super(FilesystemMockingTestCase, self).setUp()
        cloudinit/tests/helpers.py:230: in setUp
            super(ResourceUsingTestCase, self).setUp()
        cloudinit/tests/helpers.py:362: in setUp
            httpretty.enable()
        /usr/lib/python3.9/site-packages/httpretty/core.py:1818: in enable
            logger.setLevel(logging.getLogger().level)
        /usr/lib64/python3.9/logging/__init__.py:1421: in setLevel
            self.level = _checkLevel(level)
        _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
        level = None
            def _checkLevel(level):
                if isinstance(level, int):
                    rv = level
                elif str(level) == level:
                    if level not in _nameToLevel:
                        raise ValueError("Unknown level: %r" % level)
                    rv = _nameToLevel[level]
                else:
        >           raise TypeError("Level not an integer or a valid string: %r" % level)
        E           TypeError: Level not an integer or a valid string: None
        /usr/lib64/python3.9/logging/__init__.py:201: TypeError
    hroncok authored Aug 16, 2021
    Configuration menu
    Copy the full SHA
    6758400 View commit details
    Browse the repository at this point in the history
  2. changelog

    gabrielfalcao committed Aug 16, 2021
    Configuration menu
    Copy the full SHA
    4ded096 View commit details
    Browse the repository at this point in the history
  3. New release: 1.1.4

    gabrielfalcao committed Aug 16, 2021
    Configuration menu
    Copy the full SHA
    a11874a View commit details
    Browse the repository at this point in the history
Loading
0