<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/gitlab/gitlab-ce.git/doc/administration/operations, branch docs/https-many-docs-links</title>
<subtitle>gitlab.com: gitlab-org/gitlab-ce.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/'/>
<entry>
<title>Docs: Update all links to relative in /workflow and /administration</title>
<updated>2019-06-05T03:29:33+00:00</updated>
<author>
<name>Marcel Amirault</name>
<email>ravlen@gmail.com</email>
</author>
<published>2019-06-05T03:29:33+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=3c31d793c8321e7b02c36ea81c82ff63fed55d12'/>
<id>3c31d793c8321e7b02c36ea81c82ff63fed55d12</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Docs: Realigning scattered EE docs into CE</title>
<updated>2019-05-06T00:56:13+00:00</updated>
<author>
<name>Marcel Amirault</name>
<email>ravlen@gmail.com</email>
</author>
<published>2019-05-06T00:56:13+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=1775c8c73b20cb637d85703a1ee03aaf7d1f5e5e'/>
<id>1775c8c73b20cb637d85703a1ee03aaf7d1f5e5e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Docs: Merge EE doc/administration/operations to CE</title>
<updated>2019-05-05T12:25:13+00:00</updated>
<author>
<name>Marcel Amirault</name>
<email>ravlen@gmail.com</email>
</author>
<published>2019-05-05T12:25:13+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=6c3fd911275f49a1697f11f5ca60bb4f9eaeda59'/>
<id>6c3fd911275f49a1697f11f5ca60bb4f9eaeda59</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Documentation for omnibus-gitlab!3191</title>
<updated>2019-04-09T18:11:24+00:00</updated>
<author>
<name>Sebastian Schweizer</name>
<email>sebastian@schweizer.tel</email>
</author>
<published>2019-04-09T18:11:24+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=5c0ebaf6ecafdf5b53ead7739ab0e5bcc37ba3a2'/>
<id>5c0ebaf6ecafdf5b53ead7739ab0e5bcc37ba3a2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Docs: Add automatic redirects to many moved files</title>
<updated>2019-03-11T05:54:25+00:00</updated>
<author>
<name>Marcel Amirault</name>
<email>ravlen@gmail.com</email>
</author>
<published>2019-03-11T05:54:25+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=125b4eb296f5e6fb86da47c865de13ebc634f27a'/>
<id>125b4eb296f5e6fb86da47c865de13ebc634f27a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>sidekiq: terminate child processes at shutdown</title>
<updated>2019-03-04T17:06:41+00:00</updated>
<author>
<name>Nick Thomas</name>
<email>nick@gitlab.com</email>
</author>
<published>2019-02-28T23:25:37+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=f0c52df5e540e825be0babd04cc557f3f40cf1c6'/>
<id>f0c52df5e540e825be0babd04cc557f3f40cf1c6</id>
<content type='text'>
Sidekiq jobs frequently spawn long-lived child processes to do work.
In some circumstances, these can be reparented to init when sidekiq is
terminated, leading to duplication of work and strange concurrency
problems.

This commit changes sidekiq so that, if run as a process group leader,
it will forward `INT` and `TERM` signals to the whole process group. If
the memory killer is active, it will also use the process group when
resorting to `kill -9` to shut down.

These changes mean that a naive `kill &lt;pid-of-sidekiq&gt;` will now do the
right thing, killing any child processes spawned by sidekiq, as long as
the process supervisor placed it in its own process group.

If sidekiq isn't a process group leader, this new code is skipped.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Sidekiq jobs frequently spawn long-lived child processes to do work.
In some circumstances, these can be reparented to init when sidekiq is
terminated, leading to duplication of work and strange concurrency
problems.

This commit changes sidekiq so that, if run as a process group leader,
it will forward `INT` and `TERM` signals to the whole process group. If
the memory killer is active, it will also use the process group when
resorting to `kill -9` to shut down.

These changes mean that a naive `kill &lt;pid-of-sidekiq&gt;` will now do the
right thing, killing any child processes spawned by sidekiq, as long as
the process supervisor placed it in its own process group.

If sidekiq isn't a process group leader, this new code is skipped.
</pre>
</div>
</content>
</entry>
<entry>
<title>Ensure all lists are surrounded by new lines</title>
<updated>2019-02-22T13:17:10+00:00</updated>
<author>
<name>Evan Read</name>
<email>eread@gitlab.com</email>
</author>
<published>2019-02-22T13:17:10+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=eb866309591f64a3cafb3c950b2cb6a0185595e8'/>
<id>eb866309591f64a3cafb3c950b2cb6a0185595e8</id>
<content type='text'>
Markdown renderers find it easier to determine
where lists start and end when lists are surrounded
by new lines.

For consistency, also ensure entries in the list
are aligned when they span multipls lines.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Markdown renderers find it easier to determine
where lists start and end when lists are surrounded
by new lines.

For consistency, also ensure entries in the list
are aligned when they span multipls lines.
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove consecutive blank lines from markdown files</title>
<updated>2019-02-18T09:36:13+00:00</updated>
<author>
<name>Evan Read</name>
<email>eread@gitlab.com</email>
</author>
<published>2019-02-18T09:36:13+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=47fb1c5235236c8e28bfdc87b013419ae1d85dc8'/>
<id>47fb1c5235236c8e28bfdc87b013419ae1d85dc8</id>
<content type='text'>
For the sake of consistency, removes any extraneous
consecutive blank lines from the doc suite.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
For the sake of consistency, removes any extraneous
consecutive blank lines from the doc suite.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add missing punctuation</title>
<updated>2019-02-08T00:46:45+00:00</updated>
<author>
<name>Evan Read</name>
<email>eread@gitlab.com</email>
</author>
<published>2019-02-08T00:46:45+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=66fbc2ca07e621c161789527469597fb19631c05'/>
<id>66fbc2ca07e621c161789527469597fb19631c05</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Include benchmarking with fio</title>
<updated>2019-02-07T23:40:30+00:00</updated>
<author>
<name>Stan Hu</name>
<email>stanhu@gmail.com</email>
</author>
<published>2019-02-07T07:26:28+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=0cca346ea3028b024792d2d656f1824f5e310943'/>
<id>0cca346ea3028b024792d2d656f1824f5e310943</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
