1. 05 May, 2020 1 commit
  2. 14 Apr, 2020 2 commits
    • OpenStack Release Bot's avatar
      Update TOX/UPPER_CONSTRAINTS_FILE for stable/ussuri · 437e04dd
      OpenStack Release Bot authored
      Update the URL to the upper-constraints file to point to the redirect
      rule on releases.openstack.org so that anyone working on this branch
      will switch to the correct upper-constraints list automatically when
      the requirements repository branches.
      
      Until the requirements repository has as stable/ussuri branch, tests will
      continue to use the upper-constraints list on master.
      
      Change-Id: I11128848e17b13f1bb83651dc659c6d41632df95
      437e04dd
    • OpenStack Release Bot's avatar
      Update .gitreview for stable/ussuri · 1cb905cd
      OpenStack Release Bot authored
      Change-Id: I0e0e58f1d912f3199dd51ac71bef4c255969dd22
      1cb905cd
  3. 02 Apr, 2020 1 commit
    • Andreas Jaeger's avatar
      Update hacking for Python3 · b7dc0d72
      Andreas Jaeger authored
      The repo is Python 3 now, so update hacking to version 3.0 which
      supports Python 3.
      
      Fix problems found.
      
      Remove hacking and friends from lower-constraints, they are not needed
      for installation.
      
      Change-Id: I0564dc6c961a55387a430f095ed83b392a81c119
      b7dc0d72
  4. 09 Mar, 2020 1 commit
    • Daniel Bengtsson's avatar
      Update eventlet. · 19517d0b
      Daniel Bengtsson authored
      Update eventlet to align with others OpenStack projects.
      
      Change-Id: Idb9b8ca280e5fcb90ab9fe29478dda72bf4a82e0
      19517d0b
  5. 03 Mar, 2020 1 commit
  6. 10 Feb, 2020 1 commit
  7. 06 Feb, 2020 1 commit
  8. 03 Feb, 2020 1 commit
  9. 08 Jan, 2020 1 commit
  10. 27 Nov, 2019 1 commit
    • Stephen Finucane's avatar
      Add 'is_available' function · e86fb9dc
      Stephen Finucane authored
      
      
      Resolves the following warnings seen in the likes of nova:
      
          DeprecationWarning: Please provide `is_available()` function in your
          custom Eventlet hub <module 'oslo_service' from
          '../oslo_service/__init__.py'>."
      
          It must return bool: whether hub supports current platform. See
          eventlet/hubs/{epoll,kqueue} for example.
      
      Since we're simply taking the default hub provided by eventlet and
      overriding a single attribute, we will always have support so set the
      attribute.
      
      Change-Id: I219cf652526802b8212fe8a8f6c499e9aa24a3cf
      Signed-off-by: default avatarStephen Finucane <sfinucan@redhat.com>
      e86fb9dc
  11. 13 Nov, 2019 1 commit
  12. 06 Nov, 2019 1 commit
  13. 25 Oct, 2019 1 commit
    • caoyuan's avatar
      tox: Keeping going with docs · 4a78c318
      caoyuan authored
      Sphinx 1.8 introduced [1] the '--keep-going' argument which, as its name
      suggests, keeps the build running when it encounters non-fatal errors.
      This is exceptionally useful in avoiding a continuous edit-build loop
      when undertaking large doc reworks where multiple errors may be
      introduced.
      
      [1] https://github.com/sphinx-doc/sphinx/commit/e3483e9b045
      
      Change-Id: I7b4cc4b171e5605f2967378e9949d31ac0e1290c
      4a78c318
  14. 11 Oct, 2019 1 commit
  15. 10 Oct, 2019 2 commits
    • Zuul's avatar
      Merge "Update master for stable/train" · ede1cfae
      Zuul authored
      ede1cfae
    • Bernhard M. Wiedemann's avatar
      Extend test cert validity to 2049 · af8e8c25
      Bernhard M. Wiedemann authored
      to make tests pass after 2023
      
      Background:
      As part of my work on reproducible builds for openSUSE, I check
      that software still gives identical build results in the future.
      The usual offset is +15 years, because that is how long I expect
      some software will be used in some places.
      This showed up failing tests in our package build.
      
      See https://reproducible-builds.org/ for why this matters.
      
      Note: I tested that i586 builds still pass tests on 2037-12-01
      so this change introduces no year2038 problem.
      
      Change-Id: I0110914432c4b557dcabcac0fad1ba54bcd8be85
      af8e8c25
  16. 26 Sep, 2019 1 commit
  17. 20 Sep, 2019 1 commit
    • OpenStack Release Bot's avatar
      Update master for stable/train · d19c0179
      OpenStack Release Bot authored
      Add file to the reno documentation build to show release notes for
      stable/train.
      
      Use pbr instruction to increment the minor version number
      automatically so that master versions are higher than the versions on
      stable/train.
      
      Change-Id: I67830fa805b4b53a2483582fc532386dcb86d182
      Sem-Ver: feature
      d19c0179
  18. 30 Aug, 2019 3 commits
  19. 29 Aug, 2019 2 commits
    • Eric Fried's avatar
      Polish usage.rst · f48b1502
      Eric Fried authored
      - Use some more :roles: to make more things linky.
      - Add some ``decoration`` around literals.
      - Fix up some grammar.
      
      Change-Id: I6b51a8774e502a34757a50aef5f4bc1fb37d8b96
      f48b1502
    • Mohammed Naser's avatar
      restart: don't stop process on sighup when mutating · e7dd2916
      Mohammed Naser authored
      
      
      It seems that the code for handling SIGHUP currently calls stop()
      on the service, then calls reset(), then calls start() on it again.
      
      This is effectively a full service restart, which breaks the whole
      point behind using SIGHUP for hot and quick reloads.  It also breaks
      our downstream projects in a few ways where they lose RPC on reload
      due to the fact that they don't expect to have stop() called on a
      reset().
      
      This patch removes the stop and start when the restart_method is
      set to 'mutate' because in that case we should just be signaling
      the service to check for changes in its mutable config options.
      It also changes the signal sent to children in that case to
      SIGHUP, since SIGTERM will cause unnecessary restarts of child
      processes.
      
      The previous behavior is maintained for the 'reload' restart_method
      since that does a complete reload of the service config, which is
      not safe to do without restarting the service completely.
      
      Change-Id: I86a34c22d41d87a9cce2d4ac6d95562d05823ecf
      Closes-Bug: #1794708
      Co-Authored-By: default avatarBen Nemec <bnemec@redhat.com>
      e7dd2916
  20. 24 Aug, 2019 1 commit
  21. 05 Jul, 2019 1 commit
  22. 30 May, 2019 1 commit
  23. 29 May, 2019 1 commit
  24. 22 May, 2019 2 commits
    • Ben Nemec's avatar
      Stop using pbr to build docs · b85818a4
      Ben Nemec authored
      We should be calling sphinx-build directly now.
      
      Change-Id: I030d79a9fb7639553a9f469b54e1888aa62bcef5
      b85818a4
    • Sebastian Lohff's avatar
      Make PID availabe as formatstring in backdoor path · dd174fbf
      Sebastian Lohff authored
      When multiple processes are spawned with the same configuration
      each process has the same backdoor_socket path configured and
      only the first process able to bind to the socket can later be
      accessed via the backdoor. To give each process a unique socket path
      we now expose the PID of the process as a format string argument,
      which can then be used like this:
      
      backdoor_socket = /var/lib/neutron/backdoor-{pid}
      
      Change-Id: I3f86f4867eb0cd5010abadf68620aa3450d3e64d
      dd174fbf
  25. 15 May, 2019 1 commit
  26. 14 May, 2019 2 commits
  27. 09 May, 2019 1 commit
    • chenke's avatar
      Add workers' type check before launching the services · 60e16036
      chenke authored
      If user set the type of worker to str or others, there will
      be no error here, but a lot of processes will be created,
      which may cause the system to crash.
      
      I recommend adding a type check here.
      
      Change-Id: I3ad0f7ec59f29a3106d23b057327c3dfef19a98f
      60e16036
  28. 30 Apr, 2019 1 commit
  29. 19 Apr, 2019 1 commit
  30. 15 Apr, 2019 1 commit
  31. 18 Mar, 2019 1 commit
    • OpenStack Release Bot's avatar
      Update master for stable/stein · 5b57ff19
      OpenStack Release Bot authored
      Add file to the reno documentation build to show release notes for
      stable/stein.
      
      Use pbr instruction to increment the minor version number
      automatically so that master versions are higher than the versions on
      stable/stein.
      
      Change-Id: Ifc8a52c83ab2f192ca4a265f4764218e6f42e591
      Sem-Ver: feature
      5b57ff19
  32. 21 Feb, 2019 1 commit
  33. 20 Feb, 2019 1 commit