<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/ruby-gems/chef.git/spec/functional/knife, branch ruby255</title>
<subtitle>github.com: opscode/chef.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/ruby-gems/chef.git/'/>
<entry>
<title>fix Layout/LeadingCommentSpace</title>
<updated>2018-07-02T17:31:50+00:00</updated>
<author>
<name>Lamont Granquist</name>
<email>lamont@scriptkiddie.org</email>
</author>
<published>2018-07-02T17:31:50+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/ruby-gems/chef.git/commit/?id=cdad2f684debda15e8cf773185e78f93892eda35'/>
<id>cdad2f684debda15e8cf773185e78f93892eda35</id>
<content type='text'>
Signed-off-by: Lamont Granquist &lt;lamont@scriptkiddie.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Lamont Granquist &lt;lamont@scriptkiddie.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>fix Style/HashSyntax</title>
<updated>2018-07-02T17:25:16+00:00</updated>
<author>
<name>Lamont Granquist</name>
<email>lamont@scriptkiddie.org</email>
</author>
<published>2018-07-02T17:25:16+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/ruby-gems/chef.git/commit/?id=35603c7ce1bd3ccf35334ed65152140f0ecaf080'/>
<id>35603c7ce1bd3ccf35334ed65152140f0ecaf080</id>
<content type='text'>
Signed-off-by: Lamont Granquist &lt;lamont@scriptkiddie.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Lamont Granquist &lt;lamont@scriptkiddie.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Add custom prefix attribute support to knife ssh</title>
<updated>2017-11-28T11:37:22+00:00</updated>
<author>
<name>Mal Graty</name>
<email>mal.graty@googlemail.com</email>
</author>
<published>2017-11-28T11:22:40+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/ruby-gems/chef.git/commit/?id=e01022409857d219d9e40438c900531ef433d622'/>
<id>e01022409857d219d9e40438c900531ef433d622</id>
<content type='text'>
Signed-off-by: Mal Graty &lt;mal.graty@googlemail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Mal Graty &lt;mal.graty@googlemail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Refactor SSH attribute</title>
<updated>2017-11-28T11:37:22+00:00</updated>
<author>
<name>Mal Graty</name>
<email>mal.graty@googlemail.com</email>
</author>
<published>2017-11-28T11:06:16+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/ruby-gems/chef.git/commit/?id=edd8a50fed5899129dff538be0e92f125c5c12fd'/>
<id>edd8a50fed5899129dff538be0e92f125c5c12fd</id>
<content type='text'>
Signed-off-by: Mal Graty &lt;mal.graty@googlemail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Mal Graty &lt;mal.graty@googlemail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Typos</title>
<updated>2017-11-28T10:56:14+00:00</updated>
<author>
<name>Mal Graty</name>
<email>mal.graty@googlemail.com</email>
</author>
<published>2017-11-28T10:56:14+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/ruby-gems/chef.git/commit/?id=4b52680a30d43c4c41595379b78fce09ec8e70d8'/>
<id>4b52680a30d43c4c41595379b78fce09ec8e70d8</id>
<content type='text'>
Signed-off-by: Mal Graty &lt;mal.graty@googlemail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Mal Graty &lt;mal.graty@googlemail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Set explicit page size for every search request</title>
<updated>2017-07-31T08:10:21+00:00</updated>
<author>
<name>Steven Danna</name>
<email>steve@chef.io</email>
</author>
<published>2017-07-31T00:13:38+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/ruby-gems/chef.git/commit/?id=5b4f08e1c6fc83a12b896b3949676ceff6436f52'/>
<id>5b4f08e1c6fc83a12b896b3949676ceff6436f52</id>
<content type='text'>
The previous code would advance the search start parameter by either
the user-provided rows parameter or (as a fallback) the number of rows
returned in that page.  Most code that calls the search() function
does not set rows, so the fallback is used often.

Since the search index may have stale results, it is possible to get
responses with a completely empty page. For example:

    {
       "start": 0,
       "total": 1,
       "rows": []
    }

In this case, if no rows parameter was passed, the search function
would infinitely recurse (eventually running out of stack).

To avoid this, we set rows to 1000 if no user-provided value was set.
This is the default page size of Chef Server so for most users it will
not be changing the default behavior.

Signed-off-by: Steven Danna &lt;steve@chef.io&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The previous code would advance the search start parameter by either
the user-provided rows parameter or (as a fallback) the number of rows
returned in that page.  Most code that calls the search() function
does not set rows, so the fallback is used often.

Since the search index may have stale results, it is possible to get
responses with a completely empty page. For example:

    {
       "start": 0,
       "total": 1,
       "rows": []
    }

In this case, if no rows parameter was passed, the search function
would infinitely recurse (eventually running out of stack).

To avoid this, we set rows to 1000 if no user-provided value was set.
This is the default page size of Chef Server so for most users it will
not be changing the default behavior.

Signed-off-by: Steven Danna &lt;steve@chef.io&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Missed a test.</title>
<updated>2017-03-21T00:06:13+00:00</updated>
<author>
<name>Noah Kantrowitz</name>
<email>noah@coderanger.net</email>
</author>
<published>2017-03-21T00:06:13+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/ruby-gems/chef.git/commit/?id=ecb4139243a08c0c92efc628a3a0ccb1eb12bc8a'/>
<id>ecb4139243a08c0c92efc628a3a0ccb1eb12bc8a</id>
<content type='text'>
Signed-off-by: Noah Kantrowitz &lt;noah@coderanger.net&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Noah Kantrowitz &lt;noah@coderanger.net&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Ensure that there are no pesky // in our paths</title>
<updated>2017-03-09T13:50:54+00:00</updated>
<author>
<name>Thom May</name>
<email>thom@chef.io</email>
</author>
<published>2017-03-09T13:50:54+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/ruby-gems/chef.git/commit/?id=e66ed8e864c1c002f7bf613543aae8740cd87cd5'/>
<id>e66ed8e864c1c002f7bf613543aae8740cd87cd5</id>
<content type='text'>
This is a continuation of #5873, using a blunter instrument.

Signed-off-by: Thom May &lt;thom@chef.io&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This is a continuation of #5873, using a blunter instrument.

Signed-off-by: Thom May &lt;thom@chef.io&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>fix spec for solaris 10</title>
<updated>2017-03-07T21:29:20+00:00</updated>
<author>
<name>Lamont Granquist</name>
<email>lamont@scriptkiddie.org</email>
</author>
<published>2017-03-07T21:29:20+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/ruby-gems/chef.git/commit/?id=227822c9134d3411a65f2e63c4368d9f9c091762'/>
<id>227822c9134d3411a65f2e63c4368d9f9c091762</id>
<content type='text'>
this only affects tests running as root on old solaris because ENV['HOME'] for
root is "/" there and that causes a "/.ssh" vs "//.ssh" error if we don't
File.expand_path in both the code and the spec.

Signed-off-by: Lamont Granquist &lt;lamont@scriptkiddie.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
this only affects tests running as root on old solaris because ENV['HOME'] for
root is "/" there and that causes a "/.ssh" vs "//.ssh" error if we don't
File.expand_path in both the code and the spec.

Signed-off-by: Lamont Granquist &lt;lamont@scriptkiddie.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix spec testing for ssh_gateway_identity option</title>
<updated>2017-02-22T00:16:46+00:00</updated>
<author>
<name>Grant Ridder</name>
<email>shortdudey123@gmail.com</email>
</author>
<published>2017-02-21T23:12:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/ruby-gems/chef.git/commit/?id=03e0bbe62ecdbcd6701544c638bf5e60c3c02885'/>
<id>03e0bbe62ecdbcd6701544c638bf5e60c3c02885</id>
<content type='text'>
Signed-off-by: Grant Ridder &lt;shortdudey123@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Grant Ridder &lt;shortdudey123@gmail.com&gt;
</pre>
</div>
</content>
</entry>
</feed>
