Skip to content
Snippets Groups Projects
  1. May 29, 2024
  2. May 22, 2024
  3. May 21, 2024
    • Stan Hu's avatar
      redis: Fix handling of passwords with a space · 191ff5a0879a
      Stan Hu authored
      Previously we used `CGI.escape(password)`, but this escapes spaces as
      `+` instead of `%20`. However, RFC 3986 says the password should be
      percent-encoded. In fact, while the Ruby Redis client appears to
      connect fine with the `+`, the Go client doesn't work with that.
      Update the helper to encode passwords according to RFC 3986.
      
      Changelog: fixed
      191ff5a0879a
  4. May 17, 2024
  5. May 16, 2024
  6. May 15, 2024
  7. May 22, 2024
  8. May 17, 2024
  9. May 10, 2024
  10. Apr 26, 2024
  11. May 09, 2024
  12. May 08, 2024
  13. Apr 29, 2024
  14. May 07, 2024
  15. May 04, 2024
  16. Apr 25, 2024
  17. Apr 24, 2024
  18. Apr 23, 2024
  19. Apr 16, 2024
  20. Apr 20, 2024
  21. Apr 15, 2024
  22. Apr 11, 2024
  23. Apr 15, 2024
  24. Apr 01, 2024
  25. Apr 10, 2024
  26. Apr 09, 2024
  27. Apr 08, 2024
  28. Apr 03, 2024
  29. Apr 01, 2024
  30. Mar 27, 2024
  31. Feb 29, 2024
    • Ahmad Sherif's avatar
      Create git_data_dirs even if gitlab_rails is disabled · ea069d9fe8c9
      Ahmad Sherif authored
      Currently, `gitlab_rails` service needs to be enabled in order for
      `gitaly` service to function properly. Specifically, `gitlab_rails`
      creates `git_data_dirs` (e.g. `/var/opt/gitlab/git-data/repositories`)
      which is needed for Gitaly to start-up. If only the `gitaly` service is
      enabled, then Gitaly won't start due to config validation error (i.e.
      storage directories have to be present).
      
      This MR makes the creation of these directories the responsibility of
      the `gitaly` cookbook. The `gitlab` cookbook still creates the
      directories as backward-compatibility measure, as I'm not sure if these
      directories are needed outside of Gitaly.
      
      This is needed as part of
      https://gitlab.com/gitlab-com/gl-infra/production-engineering/-/issues/24530.
      
      Changelog: fixed
      ea069d9fe8c9
  32. Mar 25, 2024
  33. Mar 19, 2024
Loading