Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
658eff65
Commit
658eff65
authored
Aug 22, 2019
by
GitLab Bot
Browse files
Options
Browse Files
Download
Plain Diff
Automatic merge of gitlab-org/gitlab-ce master
parents
3be32462
ba67965a
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
4 deletions
+11
-4
changelogs/unreleased/sh-revert-redis-cache-store.yml
changelogs/unreleased/sh-revert-redis-cache-store.yml
+5
-0
config/application.rb
config/application.rb
+1
-4
qa/README.md
qa/README.md
+5
-0
No files found.
changelogs/unreleased/sh-revert-redis-cache-store.yml
0 → 100644
View file @
658eff65
---
title
:
Fix "ERR value is not an integer or out of range" errors
merge_request
:
32126
author
:
type
:
fixed
config/application.rb
View file @
658eff65
...
...
@@ -241,10 +241,7 @@ module Gitlab
end
# Use caching across all environments
# Full list of options:
# https://api.rubyonrails.org/classes/ActiveSupport/Cache/RedisCacheStore.html#method-c-new
caching_config_hash
=
Gitlab
::
Redis
::
Cache
.
params
caching_config_hash
[
:compress
]
=
false
caching_config_hash
[
:namespace
]
=
Gitlab
::
Redis
::
Cache
::
CACHE_NAMESPACE
caching_config_hash
[
:expires_in
]
=
2
.
weeks
# Cache should not grow forever
if
Sidekiq
.
server?
# threaded context
...
...
@@ -252,7 +249,7 @@ module Gitlab
caching_config_hash
[
:pool_timeout
]
=
1
end
config
.
cache_store
=
:redis_
cache_
store
,
caching_config_hash
config
.
cache_store
=
:redis_store
,
caching_config_hash
config
.
active_job
.
queue_adapter
=
:sidekiq
...
...
qa/README.md
View file @
658eff65
...
...
@@ -39,6 +39,11 @@ have an instance available you can follow the instructions below to use
the
[
GitLab Development Kit (GDK)
][
GDK
]
.
This is the recommended option if you would like to contribute to the tests.
Note: GitLab QA uses
[
Selenium WebDriver
](
https://www.seleniumhq.org/
)
via
[
Cabybara
](
http://teamcapybara.github.io/capybara/
)
, and by default it targets Chrome as
the browser to use. You will need to have Chrome (or Chromium) and
[
chromedriver
](
https://chromedriver.chromium.org/
)
installed / in your
`$PATH`
.
### Run the end-to-end tests in a local development environment
Follow the GDK instructions to
[
prepare
](
https://gitlab.com/gitlab-org/gitlab-development-kit/blob/master/doc/prepare.md
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment