Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
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 orlearn 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:GoogleCloudPlatform/functions-framework-python
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base:v3.6.0
Choose a base ref
Loading
...
head repository:GoogleCloudPlatform/functions-framework-python
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare:v3.7.0
Choose a head ref
Loading
  • 9commits
  • 23files changed
  • 5contributors

Commits on May 7, 2024

  1. feat: Add execution id (#320)

    * feat: Add execution idAdds an execution id for each request. When the LOG_EXECUTION_ID env var is set, the execution id will be included in logs.
    @nifflets
    nifflets authoredMay 7, 2024
    Configuration menu
    Copy the full SHA
    662bf4cView commit details
    Browse the repository at this point in the history

Commits on May 13, 2024

  1. feat: support disabling execution id logging (#325)

    * feat: support disabling execution id logging* Update test_execution_id.py* Update __init__.py* Update __init__.py
    @nifflets
    nifflets authoredMay 13, 2024
    Configuration menu
    Copy the full SHA
    2e7de92View commit details
    Browse the repository at this point in the history

Commits on May 16, 2024

  1. feat: restore gunicorn worker default configs from 3.5.0 (#326)

    * feat: restore defaults present < 3.6.0, but retain customizability* revert the test, too* also restore this assert :)---------Co-authored-by: Jeremy Fehr <jfehrforgithub2@gmail.com>
    @jrmfg
    jrmfg andjrmfg authoredMay 16, 2024
    Configuration menu
    Copy the full SHA
    f08757aView commit details
    Browse the repository at this point in the history
  2. chore(deps): update all non-major dependencies (#322)

    Co-authored-by: jrmfg <117788025+jrmfg@users.noreply.github.com>
    @renovate-bot@jrmfg
    renovate-bot andjrmfg authoredMay 16, 2024
    Configuration menu
    Copy the full SHA
    0ecd985View commit details
    Browse the repository at this point in the history
  3. chore(deps): update pypa/gh-action-pypi-publish digest to 699cd61 (#313)

    Co-authored-by: jrmfg <117788025+jrmfg@users.noreply.github.com>
    @renovate-bot@jrmfg
    renovate-bot andjrmfg authoredMay 16, 2024
    Configuration menu
    Copy the full SHA
    3d43892View commit details
    Browse the repository at this point in the history
  4. fix: update scorecard.yml (#327)

    needed for security scorecard
    @jrmfg
    jrmfg authoredMay 16, 2024
    Configuration menu
    Copy the full SHA
    fff38aeView commit details
    Browse the repository at this point in the history

Commits on May 17, 2024

  1. feat: (opt-in): terminate handling of work when the request has alrea…

    …dy timed out (#328)Overhead-free (or at least very cheap).The “timeout” gunicorn config means drastically different things forsync and non-sync workers:> Workers silent for more than this many seconds are killed and restarted.> > Value is a positive number or 0. Setting it to 0 has the effect of> infinite timeouts by disabling timeouts for all workers entirely.> > Generally, the default of thirty seconds should suffice. Only set this> noticeably higher if you’re sure of the repercussions for sync workers.> For the non sync workers it just means that the worker process is still> communicating and is not tied to the length of time required to handle a> single request.So.  For cases where threads = 1 (user set or our defaults), we’ll usethe sync worker and let the regular timeout functionality do its thing.For cases where threads > 1, we’re using the gthread worker, and timeoutmeans something completely different and not really user-observable.  Sowe’ll leave the communication timeout (default gunicorn “timeout”) at 30seconds, but create our own gthread-derived worker class to use instead,which terminates request handling (with no mind to gunicorn’s “gracefulshutdown” config), to emulate GCFv1.The arbiter spawns these workers, so we have to maintain some sort ofglobal timeout state for us to read in our custom gthread worker.In the future, we should consider letting the user adjust the gracefulshutdown seconds.  But the default of 30 seems like it’s worked finehistorically, so it’s hard to argue for changing it.  IIUC, this meansthat on gen 2, there’s a small behavior difference for the sync workerscompared to gen 1, in that gen 2 sync worker workloads will get an extra30 seconds of timeout to gracefully shut down.  I don’t think monkeyingwith this config and opting-in to sync workers is very common, though,so let’s not worry about it here; everyone should be on the gthread pathoutlined above.* fix tests* small test fixesgive up on coverage support for things that are tested in differentprocesses, or in gthread, because it looks like pytest-cov gave up onsupport for these, where as coverage has out-of-the-box support* format* isort everything* skip tests on macthere's something test-specific about how mac pickles functions forexecution in multiprocessing.Process which is causing problems.  itseems somewhere in the innards of flask and gunicorn and macos...since this feature is opt-in anyway, let's just skip testing darwin.* sort tuple of dicts in async tests before assertingcauses flakes sometimes in workflows* use double-quotes* also skip tests on windows - this is all built for gunicorn, there's novalue adding it for windows anyway* skip import on windows* easy stuff* add a few tests for sync worker timeoutsthese shouldn't have changed with this commit
    @jrmfg
    jrmfg authoredMay 17, 2024
    Configuration menu
    Copy the full SHA
    2601975View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    04c1fdcView commit details
    Browse the repository at this point in the history

Commits on May 22, 2024

  1. chore(main): release 3.7.0 (#324)

    Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
    @release-please
    release-please[bot] authoredMay 22, 2024
    Configuration menu
    Copy the full SHA
    0ebea7dView commit details
    Browse the repository at this point in the history
Loading

[8]ページ先頭

©2009-2025 Movatter.jp