diff stringlengths 65 26.7k | message stringlengths 7 9.92k |
|---|---|
diff --git a/spec/runner.rb b/spec/runner.rb
index <HASH>..<HASH> 100755
--- a/spec/runner.rb
+++ b/spec/runner.rb
@@ -41,7 +41,7 @@ at_exit {
}
begin
- Selenium::WebDriver::Wait.new(timeout: 600, interval: 1) \
+ Selenium::WebDriver::Wait.new(timeout: 540, interval: 1) \
.until { not browser.find_element(:c... | spec: set the timeout at 9 minutes |
diff --git a/spout/outputs.py b/spout/outputs.py
index <HASH>..<HASH> 100644
--- a/spout/outputs.py
+++ b/spout/outputs.py
@@ -8,3 +8,18 @@ class PrintOperation(Operation):
"""
def perform(self, obj):
print obj
+
+
+class FileOutputOperation(Operation):
+ """
+ Operation that writes each input ... | Created operation to output plain text to a file. |
diff --git a/payout.go b/payout.go
index <HASH>..<HASH> 100644
--- a/payout.go
+++ b/payout.go
@@ -108,7 +108,7 @@ type Payout struct {
Card *Card `json:"card"`
Created int64 `json:"created"`
Currency Currency `json:"cu... | Changed the type of Payout.Destination from string to *PayoutDestination
to support expanding |
diff --git a/js/html/DomElement.js b/js/html/DomElement.js
index <HASH>..<HASH> 100644
--- a/js/html/DomElement.js
+++ b/js/html/DomElement.js
@@ -13,7 +13,7 @@ define(["require","js/core/Component", "js/core/Content", "js/core/Binding", "in
},
$behavesAsDomElement: true,
ctor: fu... | optimized late requireing of ContentPlaceHolder |
diff --git a/paramiko/sftp_client.py b/paramiko/sftp_client.py
index <HASH>..<HASH> 100644
--- a/paramiko/sftp_client.py
+++ b/paramiko/sftp_client.py
@@ -23,6 +23,7 @@ Client-mode SFTP support.
from binascii import hexlify
import errno
import os
+import stat
import threading
import time
import weakref
@@ -507,6 ... | patch from jim wilcoxson: raise an error early if chdir will fail. |
diff --git a/qtpylib/tools.py b/qtpylib/tools.py
index <HASH>..<HASH> 100644
--- a/qtpylib/tools.py
+++ b/qtpylib/tools.py
@@ -695,10 +695,15 @@ def resample(data, resolution="1T", tz=None, ffill=True, dropna=False,
['_idx_']].min().max().values[-1]).replace('T', ' ')
end_date = str(d... | fixed issue with resample's sync_last_timestamp |
diff --git a/findbugs/src/java/edu/umd/cs/findbugs/detect/FindOpenStream.java b/findbugs/src/java/edu/umd/cs/findbugs/detect/FindOpenStream.java
index <HASH>..<HASH> 100644
--- a/findbugs/src/java/edu/umd/cs/findbugs/detect/FindOpenStream.java
+++ b/findbugs/src/java/edu/umd/cs/findbugs/detect/FindOpenStream.java
@@ -4... | Don't warn about open streams not being closed in main methods
git-svn-id: <URL> |
diff --git a/src/provider/AbstractBsdProvider.php b/src/provider/AbstractBsdProvider.php
index <HASH>..<HASH> 100644
--- a/src/provider/AbstractBsdProvider.php
+++ b/src/provider/AbstractBsdProvider.php
@@ -127,10 +127,8 @@ abstract class AbstractBsdProvider extends AbstractUnixProvider
*/
public function ge... | fix getUptime in bsd |
diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -39,6 +39,7 @@ function addAssetsToStream(paths, files) {
name = paths.name,
basePath = paths.basePath,
filepaths = files[name].assets,
+ type = paths.type,
options = pluginOptions,
... | Apply newline to js files only. |
diff --git a/daemon/execdriver/native/seccomp_default.go b/daemon/execdriver/native/seccomp_default.go
index <HASH>..<HASH> 100644
--- a/daemon/execdriver/native/seccomp_default.go
+++ b/daemon/execdriver/native/seccomp_default.go
@@ -316,5 +316,17 @@ var defaultSeccompProfile = &configs.Seccomp{
Action: configs.Er... | Block vm<I> syscalls in default seccomp profile
These provide an in kernel virtual machine for x<I> real mode on x<I>
used by one very early DOS emulator. Not required for any normal use. |
diff --git a/lib/rack/ssl-enforcer.rb b/lib/rack/ssl-enforcer.rb
index <HASH>..<HASH> 100644
--- a/lib/rack/ssl-enforcer.rb
+++ b/lib/rack/ssl-enforcer.rb
@@ -44,7 +44,7 @@ module Rack
end
if redirect_required?
- call_before_redirect @options[:before_redirect]
+ call_before_redirect
... | #<I> refactoring to not pass parameter to call_before_redirect, to make consistent iwth rest of code |
diff --git a/arthur/_version.py b/arthur/_version.py
index <HASH>..<HASH> 100644
--- a/arthur/_version.py
+++ b/arthur/_version.py
@@ -1,2 +1,2 @@
# Versions compliant with PEP 440 https://www.python.org/dev/peps/pep-0440
-__version__ = "0.1.7"
+__version__ = "0.1.8" | Update version number to <I> |
diff --git a/nameko/context.py b/nameko/context.py
index <HASH>..<HASH> 100644
--- a/nameko/context.py
+++ b/nameko/context.py
@@ -34,6 +34,7 @@ class Context(object):
'auth_token': self.auth_token,
'project_id': None,
}
+ res.update(self.extra_kwargs)
return res
... | pass through extra kwargs when formatting context to_dict |
diff --git a/validation/features/steps/veewee_steps.rb b/validation/features/steps/veewee_steps.rb
index <HASH>..<HASH> 100644
--- a/validation/features/steps/veewee_steps.rb
+++ b/validation/features/steps/veewee_steps.rb
@@ -9,7 +9,7 @@ Given /^a veeweebox was build$/ do
end
When /^I sudorun "([^\"]*)" over ssh$/... | Prevent "validate" error on sudo
Validate prints "unexpected exit code" and a stacktrace on the "sudo whoami" step.
This is caused by insufficient permissions on /tmp/validation.sh - when it is written, the "execute" flag is not set.
I added a chmod after file creation to fix the permissions. |
diff --git a/facade/src/main/java/org/jboss/pnc/facade/providers/UserProviderImpl.java b/facade/src/main/java/org/jboss/pnc/facade/providers/UserProviderImpl.java
index <HASH>..<HASH> 100644
--- a/facade/src/main/java/org/jboss/pnc/facade/providers/UserProviderImpl.java
+++ b/facade/src/main/java/org/jboss/pnc/facade/p... | [NCL-<I>] Get the updated user with id on new user store |
diff --git a/src/core/textures/BaseTexture.js b/src/core/textures/BaseTexture.js
index <HASH>..<HASH> 100644
--- a/src/core/textures/BaseTexture.js
+++ b/src/core/textures/BaseTexture.js
@@ -321,7 +321,7 @@ BaseTexture.prototype.updateSourceImage = function (newSrc) {
BaseTexture.fromImage = function (imageUrl, crosso... | Fix typo in fromImage logic
This bug was introduced in 1a<I>f<I>f9ebaa<I>b<I>fb<I>b2bd<I> |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -9,13 +9,12 @@ with open('README.md', encoding='utf-8') as readme_file:
requirements = [
'binaryornot>=0.4.4',
- 'Jinja2<4.0.0',
+ 'Jinja2>=2.7,<4.0.0',
'click>=7.0',
'pyyaml>=5.3.1',
'jinja2-time>... | Remove direct dependency on markupsafe
This sorts potential dependency conflicts with jinja2 which is the
only place where markupsafe is used (since version <I>) |
diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -13,7 +13,7 @@ exports.getPropertyInfo = function(address, callback) {
],
function generateResponse(error, body) {
if(!error) {
- callback(error, JSON.parse(body));
+ callback(null, JSON.parse(body));
}
... | Modified error handling in main callback |
diff --git a/src/main/java/javascalautils/TryCompanion.java b/src/main/java/javascalautils/TryCompanion.java
index <HASH>..<HASH> 100644
--- a/src/main/java/javascalautils/TryCompanion.java
+++ b/src/main/java/javascalautils/TryCompanion.java
@@ -41,7 +41,10 @@ package javascalautils;
* @author Peter Nerg
* @since ... | Adde private constructor to TryCompanion |
diff --git a/db/sql/session.php b/db/sql/session.php
index <HASH>..<HASH> 100644
--- a/db/sql/session.php
+++ b/db/sql/session.php
@@ -143,8 +143,9 @@ class Session extends Mapper {
* @param $db object
* @param $table string
* @param $force bool
+ * @param $onsuspect callback
**/
- function __construct(\DB\SQL ... | SQL Session: custom callback for suspect sessions |
diff --git a/hyperid.js b/hyperid.js
index <HASH>..<HASH> 100644
--- a/hyperid.js
+++ b/hyperid.js
@@ -62,10 +62,17 @@ function pad (count) {
function baseId (id, urlSafe) {
var base64Id = Buffer.from(parser.parse(id)).toString('base64')
+ var l = base64Id.length
if (urlSafe) {
- return base64Id.replace(/\... | feat: avoid regex for end of id (#<I>) |
diff --git a/lib/Controller/ADForm.php b/lib/Controller/ADForm.php
index <HASH>..<HASH> 100644
--- a/lib/Controller/ADForm.php
+++ b/lib/Controller/ADForm.php
@@ -193,7 +193,7 @@ class Controller_ADForm extends AbstractController
$list = isset($field->ui['valueList'])
? $field->ui['value... | lets fix enum() proprely, it should use values as keys |
diff --git a/term2048/ui.py b/term2048/ui.py
index <HASH>..<HASH> 100644
--- a/term2048/ui.py
+++ b/term2048/ui.py
@@ -28,10 +28,14 @@ def print_version_and_exit():
print("term2048 v%s" % __version__)
sys.exit(0)
+
def print_rules_and_exit():
- print("Use your arrow keys to move the tiles. When two tile... | PEP8 compliance in ui.py |
diff --git a/packages/@uppy/react/src/useUppy.js b/packages/@uppy/react/src/useUppy.js
index <HASH>..<HASH> 100644
--- a/packages/@uppy/react/src/useUppy.js
+++ b/packages/@uppy/react/src/useUppy.js
@@ -18,8 +18,9 @@ module.exports = function useUppy (factory) {
useEffect(() => {
return () => {
uppy.curr... | Reset uppy instance when React component is unmounted (#<I>) |
diff --git a/lenses/ui/base.py b/lenses/ui/base.py
index <HASH>..<HASH> 100644
--- a/lenses/ui/base.py
+++ b/lenses/ui/base.py
@@ -314,7 +314,7 @@ class BaseUiLens(Generic[S, T, A, B]):
'''
return self._compose_optic(optics.GetitemLens(key))
- def getter_setter_(self, getter, setter):
+ def le... | renamed getter_setter_ method to lens_
lets break everything while we're at it
a much better name |
diff --git a/git/diff.py b/git/diff.py
index <HASH>..<HASH> 100644
--- a/git/diff.py
+++ b/git/diff.py
@@ -108,6 +108,7 @@ class Diffable(object):
args.append("-p")
else:
args.append("--raw")
+ args.append("-z")
# in any way, assure we don't see colored output,
... | Add '-z' on top of '--raw' to avoid path name mangling
Authored based on
<URL> |
diff --git a/spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/data/redis/RedisAutoConfigurationTests.java b/spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/data/redis/RedisAutoConfigurationTests.java
index <HASH>..<HASH... | Polish "Add Redis Sentinel database support"
Closes gh-<I> |
diff --git a/lib/email.js b/lib/email.js
index <HASH>..<HASH> 100644
--- a/lib/email.js
+++ b/lib/email.js
@@ -118,10 +118,7 @@ var send = exports.send = function(to, subject, text_body, html_body, from, doma
smtpTransport.sendMail(mailOptions, function(error, response){
if(error){
console.log("Err... | don't log successful email send message |
diff --git a/Model/Service/TransactionHandlerService.php b/Model/Service/TransactionHandlerService.php
index <HASH>..<HASH> 100755
--- a/Model/Service/TransactionHandlerService.php
+++ b/Model/Service/TransactionHandlerService.php
@@ -574,7 +574,9 @@ class TransactionHandlerService
if ($transactionType && !emp... | Added code improvements in transaction handler service |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -15,7 +15,7 @@ tests_require = [
"Contexts",
"fakeredis",
"freezegun",
- "HTTPretty",
+ "HTTPretty==0.8.10",
]
extras = { | repin httpretty
lost it after the merge |
diff --git a/js/coinex.js b/js/coinex.js
index <HASH>..<HASH> 100644
--- a/js/coinex.js
+++ b/js/coinex.js
@@ -3870,9 +3870,9 @@ module.exports = class coinex extends Exchange {
path = this.implodeParams (path, params);
let url = this.urls['api'][api] + '/' + this.version + '/' + path;
let qu... | check credentials only private #<I> |
diff --git a/sos/plugins/rpm.py b/sos/plugins/rpm.py
index <HASH>..<HASH> 100644
--- a/sos/plugins/rpm.py
+++ b/sos/plugins/rpm.py
@@ -23,7 +23,13 @@ class Rpm(Plugin, RedHatPlugin):
option_list = [("rpmq", "queries for package information via rpm -q", "fast", True),
("rpmva", "runs a verify on ... | Add new patterns to the RPM plug-in verify list |
diff --git a/src/Repository.php b/src/Repository.php
index <HASH>..<HASH> 100644
--- a/src/Repository.php
+++ b/src/Repository.php
@@ -105,12 +105,10 @@ class Repository implements NamespacableInterface, \ArrayAccess
*/
protected function load($group, $namespace, $collection)
{
- $mode = $this->mo... | No need to assign mode to a variable in as we only really use it once |
diff --git a/src/org/mozilla/javascript/ScriptRuntime.java b/src/org/mozilla/javascript/ScriptRuntime.java
index <HASH>..<HASH> 100644
--- a/src/org/mozilla/javascript/ScriptRuntime.java
+++ b/src/org/mozilla/javascript/ScriptRuntime.java
@@ -640,19 +640,6 @@ public class ScriptRuntime {
// A non-hexadecimal, ... | Remove ancient workaround for MS JVM bug |
diff --git a/pygal/test/test_graph.py b/pygal/test/test_graph.py
index <HASH>..<HASH> 100644
--- a/pygal/test/test_graph.py
+++ b/pygal/test/test_graph.py
@@ -19,6 +19,7 @@
import os
from pygal import Line
import pygal
+import uuid
def test_multi_render():
@@ -35,7 +36,7 @@ def test_multi_render():
def tes... | Add uuid to temp |
diff --git a/sdk/src/com/socialize/util/DefaultAppUtils.java b/sdk/src/com/socialize/util/DefaultAppUtils.java
index <HASH>..<HASH> 100644
--- a/sdk/src/com/socialize/util/DefaultAppUtils.java
+++ b/sdk/src/com/socialize/util/DefaultAppUtils.java
@@ -32,7 +32,6 @@ import android.content.pm.ApplicationInfo;
import andr... | Fixed lookup of application name so that it gets it from the
PackageManager, instead of assuming it is stored in a String
resource called "app_name" |
diff --git a/lib/transforms/subsetGoogleFonts.js b/lib/transforms/subsetGoogleFonts.js
index <HASH>..<HASH> 100644
--- a/lib/transforms/subsetGoogleFonts.js
+++ b/lib/transforms/subsetGoogleFonts.js
@@ -472,20 +472,16 @@ module.exports = function (options) {
});
... | Only remove relations to original google subset CSS once all work on them has been done |
diff --git a/lib/acts_as_paranoid/validations.rb b/lib/acts_as_paranoid/validations.rb
index <HASH>..<HASH> 100644
--- a/lib/acts_as_paranoid/validations.rb
+++ b/lib/acts_as_paranoid/validations.rb
@@ -18,7 +18,11 @@ module ActsAsParanoid
end
relation = build_relation(finder_class, table, attribute... | corrected the uniqueness validation for models with composite primary keys |
diff --git a/lib/themes_for_rails/version.rb b/lib/themes_for_rails/version.rb
index <HASH>..<HASH> 100644
--- a/lib/themes_for_rails/version.rb
+++ b/lib/themes_for_rails/version.rb
@@ -1,4 +1,4 @@
# encoding: utf-8
module ThemesForRails
- VERSION = "0.4.3"
+ VERSION = "0.5.0.pre"
end
\ No newline at end of file | Bumping version to <I>.pre |
diff --git a/Swat/SwatTableView.php b/Swat/SwatTableView.php
index <HASH>..<HASH> 100644
--- a/Swat/SwatTableView.php
+++ b/Swat/SwatTableView.php
@@ -899,8 +899,22 @@ class SwatTableView extends SwatControl implements SwatUIParent
$tr_tag->close();
// display the row columns
- foreach ($this->row_columns a... | Table view is now responsible for displaying tr tags on table-view row columns.
svn commit r<I> |
diff --git a/tests/config_test.py b/tests/config_test.py
index <HASH>..<HASH> 100644
--- a/tests/config_test.py
+++ b/tests/config_test.py
@@ -104,19 +104,25 @@ class TestConfigurationNamespace(object):
def test_get_config_dict(self):
self.namespace['one.two.three.four'] = 5
- self.namespace['a.b... | Add overlapping keys to config_test.py::TestConfigurationNamespace::test_get_config_dict to ensure non-clobbery |
diff --git a/jaraco/itertools.py b/jaraco/itertools.py
index <HASH>..<HASH> 100644
--- a/jaraco/itertools.py
+++ b/jaraco/itertools.py
@@ -711,9 +711,12 @@ def takewhile_peek(predicate, iterable):
[4]
"""
while True:
- if not predicate(iterable.peek()):
+ try:
+ if not predicate(iterable.peek()):
+ break
+... | Fix error about StopIteration raised in generator. |
diff --git a/lib/slather/coverage_file.rb b/lib/slather/coverage_file.rb
index <HASH>..<HASH> 100644
--- a/lib/slather/coverage_file.rb
+++ b/lib/slather/coverage_file.rb
@@ -31,7 +31,7 @@ module Slather
def gcov_data
@gcov_data ||= begin
- gcov_output = `gcov #{source_file_pathname} --object-direc... | Wrap paths in quotes incase they contain spaces |
diff --git a/wkhtmltopdf/__init__.py b/wkhtmltopdf/__init__.py
index <HASH>..<HASH> 100644
--- a/wkhtmltopdf/__init__.py
+++ b/wkhtmltopdf/__init__.py
@@ -3,5 +3,4 @@ if 'DJANGO_SETTINGS_MODULE' in os.environ:
from .utils import *
__author__ = 'Incuna Ltd'
-__version__ = '0.3'
-
+__version__ = '1.0-rc1' | Update version to <I>-rc1. |
diff --git a/packages/ember-routing/lib/system/route.js b/packages/ember-routing/lib/system/route.js
index <HASH>..<HASH> 100644
--- a/packages/ember-routing/lib/system/route.js
+++ b/packages/ember-routing/lib/system/route.js
@@ -1878,7 +1878,8 @@ let Route = EmberObject.extend(ActionHandler, Evented, {
The strin... | [DOC beta] Improve `Route#render` documentation
This PR makes explicit that render only accepts a live template
as its `into` option.
Fix #<I> |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100755
--- a/setup.py
+++ b/setup.py
@@ -38,7 +38,7 @@ setup(
author='Blockstack.org',
author_email='support@blockstack.org',
description='Name registrations on the Bitcoin blockchain with external storage',
- long_description=README,
+ # long_d... | disable long_description in setup.py since it inteferes with twine |
diff --git a/plugin/kubernetes/kubernetes.go b/plugin/kubernetes/kubernetes.go
index <HASH>..<HASH> 100644
--- a/plugin/kubernetes/kubernetes.go
+++ b/plugin/kubernetes/kubernetes.go
@@ -284,8 +284,6 @@ func (k *Kubernetes) InitKubeCache(ctx context.Context) (onStart func() error, o
checkSyncTicker := time.NewTicker... | fix k8s start up timeout ticker (#<I>) |
diff --git a/src/html/js/sg.js b/src/html/js/sg.js
index <HASH>..<HASH> 100644
--- a/src/html/js/sg.js
+++ b/src/html/js/sg.js
@@ -39,20 +39,18 @@
* ==================================================== */
let toggleSgMenuBar = function() {
- const navCookie = 'sgNavActive=false;path=/';
-
if (sgNavActi... | Constant for cookie name was a fail D: |
diff --git a/tests/unit/states/boto_elb_test.py b/tests/unit/states/boto_elb_test.py
index <HASH>..<HASH> 100644
--- a/tests/unit/states/boto_elb_test.py
+++ b/tests/unit/states/boto_elb_test.py
@@ -97,21 +97,13 @@ class BotoElbTestCase(TestCase):
self.assertDictEqual(boto_elb.present
... | Remove cnames_present test |
diff --git a/decl.go b/decl.go
index <HASH>..<HASH> 100644
--- a/decl.go
+++ b/decl.go
@@ -441,6 +441,8 @@ func checkForBuiltinFuncs(typ *ast.Ident, c *ast.CallExpr, scope *Scope) (ast.Ex
return e, scope
case "make":
return c.Args[0], scope
+ case "append":
+ return c.Args[0], scope
case "cmplx":... | Add support for built-in 'append'. |
diff --git a/src/components/SurveyForm/SurveyForm.js b/src/components/SurveyForm/SurveyForm.js
index <HASH>..<HASH> 100755
--- a/src/components/SurveyForm/SurveyForm.js
+++ b/src/components/SurveyForm/SurveyForm.js
@@ -29,7 +29,7 @@ function asyncValidate(data) {
export default
class SurveyForm extends Component {
... | Fix Survey Form (active prop type)
The active propType should be a string a not required |
diff --git a/src/main/java/org/graylog2/indexer/EmbeddedElasticSearchClient.java b/src/main/java/org/graylog2/indexer/EmbeddedElasticSearchClient.java
index <HASH>..<HASH> 100644
--- a/src/main/java/org/graylog2/indexer/EmbeddedElasticSearchClient.java
+++ b/src/main/java/org/graylog2/indexer/EmbeddedElasticSearchClien... | Also update index ranges after retention cleaning |
diff --git a/apitools/gen/client_generation_test.py b/apitools/gen/client_generation_test.py
index <HASH>..<HASH> 100644
--- a/apitools/gen/client_generation_test.py
+++ b/apitools/gen/client_generation_test.py
@@ -7,8 +7,7 @@ import shutil
import subprocess
import sys
import tempfile
-
-from google.apputils import ... | Update one test to use unittest.
I'm likely to do this for all tests, but this one's a start. |
diff --git a/gulpfile.babel.js b/gulpfile.babel.js
index <HASH>..<HASH> 100644
--- a/gulpfile.babel.js
+++ b/gulpfile.babel.js
@@ -9,7 +9,7 @@ import WebpackDevServer from 'webpack-dev-server';
gulp.task('default', ['webpack']);
gulp.task('babel', () => {
- return gulp.src(['src/*.js','src/*/*.js','example/*.js'])... | Updated webpack and gulp config files |
diff --git a/webpack.config.js b/webpack.config.js
index <HASH>..<HASH> 100644
--- a/webpack.config.js
+++ b/webpack.config.js
@@ -2,6 +2,8 @@ const webpack = require("webpack");
const path = require("path");
const env = require("yargs").argv.env; // use --env with webpack 2
const ClosureCompilerPlugin = require("we... | build(webpack): prepend license banner in minified JS files |
diff --git a/intranet/settings/__init__.py b/intranet/settings/__init__.py
index <HASH>..<HASH> 100644
--- a/intranet/settings/__init__.py
+++ b/intranet/settings/__init__.py
@@ -469,7 +469,7 @@ REST_FRAMEWORK = {
"DEFAULT_PAGINATION_CLASS": "rest_framework.pagination.PageNumberPagination",
"PAGE_SIZE": 50,
... | Temporary Fix: Disable Session Auth for API |
diff --git a/tests/test_websocket.py b/tests/test_websocket.py
index <HASH>..<HASH> 100644
--- a/tests/test_websocket.py
+++ b/tests/test_websocket.py
@@ -127,7 +127,6 @@ class TestWebsocketClient(unittest.TestCase):
self.assertEqual('Ontology Network ONT Token', response['Description'])
hex_contract_... | remove unsed keyword (#<I>)
* fix bug
* remove unsed keyword |
diff --git a/p2p/host/peerstore/addr_manager_ds.go b/p2p/host/peerstore/addr_manager_ds.go
index <HASH>..<HASH> 100644
--- a/p2p/host/peerstore/addr_manager_ds.go
+++ b/p2p/host/peerstore/addr_manager_ds.go
@@ -272,8 +272,8 @@ func newTTLManager(parent context.Context, d ds.Datastore, tick time.Duration) *
// To be ... | Acquire full lock when ticking ttlmanager |
diff --git a/mutagen/musepack.py b/mutagen/musepack.py
index <HASH>..<HASH> 100644
--- a/mutagen/musepack.py
+++ b/mutagen/musepack.py
@@ -188,7 +188,7 @@ class MusepackInfo(StreamInfo):
remaining_size -= l1 + l2
data = fileobj.read(remaining_size)
- if len(data) != remaining_size:
+ i... | musepack: handle truncated stream header |
diff --git a/lib/ErrorHandler.js b/lib/ErrorHandler.js
index <HASH>..<HASH> 100644
--- a/lib/ErrorHandler.js
+++ b/lib/ErrorHandler.js
@@ -1,7 +1,8 @@
module.exports = (error, req, res, next) => {
const details = reason(error);
+ console.error(details);
- if (error.code && error.code >= 300 && error.code ... | fixed error handler where standard wasn't use properly |
diff --git a/languagetool-office-extension/src/main/java/org/languagetool/openoffice/ResultCache.java b/languagetool-office-extension/src/main/java/org/languagetool/openoffice/ResultCache.java
index <HASH>..<HASH> 100644
--- a/languagetool-office-extension/src/main/java/org/languagetool/openoffice/ResultCache.java
+++ ... | [LO extension] fixed bug in cache management |
diff --git a/examples/with-redux-saga/store.js b/examples/with-redux-saga/store.js
index <HASH>..<HASH> 100644
--- a/examples/with-redux-saga/store.js
+++ b/examples/with-redux-saga/store.js
@@ -1,11 +1,9 @@
-import { createStore, applyMiddleware } from 'redux'
+import { applyMiddleware, createStore } from 'redux'
imp... | recreate stdChannel (or saga middleware). (#<I>) |
diff --git a/tornado/httpserver.py b/tornado/httpserver.py
index <HASH>..<HASH> 100644
--- a/tornado/httpserver.py
+++ b/tornado/httpserver.py
@@ -113,6 +113,7 @@ class HTTPServer(object):
self.xheaders = xheaders
self.ssl_options = ssl_options
self._socket = None
+ self._started = Fal... | Add basic error checking so you can't add a server to the IOLoop twice |
diff --git a/client/state/sites/actions.js b/client/state/sites/actions.js
index <HASH>..<HASH> 100644
--- a/client/state/sites/actions.js
+++ b/client/state/sites/actions.js
@@ -15,6 +15,10 @@ import {
SITES_REQUEST_SUCCESS,
SITES_REQUEST_FAILURE
} from 'state/action-types';
+import {
+ bumpStat,
+ recordTracksEv... | Pages: record Tracks and bump stat on homepage change (#<I>) |
diff --git a/codec-stomp/src/main/java/io/netty/handler/codec/stomp/DefaultStompFrame.java b/codec-stomp/src/main/java/io/netty/handler/codec/stomp/DefaultStompFrame.java
index <HASH>..<HASH> 100644
--- a/codec-stomp/src/main/java/io/netty/handler/codec/stomp/DefaultStompFrame.java
+++ b/codec-stomp/src/main/java/io/ne... | [#<I>] Fix typo in DefaultStompFrame.toString() method.
Motivation:
DefaultStompFrame.toString() implementations returned a String that contained DefaultFullStompFrame.
Modifications:
Replace DefaultFullStompFrame with DefaultStompFrame.
Result:
Less confusing and more correct return value of toString() |
diff --git a/lnwallet/wallet.go b/lnwallet/wallet.go
index <HASH>..<HASH> 100644
--- a/lnwallet/wallet.go
+++ b/lnwallet/wallet.go
@@ -189,7 +189,7 @@ type addCounterPartySigsMsg struct {
type LightningWallet struct {
// This mutex is to be held when generating external keys to be used
// as multi-sig, and commitm... | lnwallet: make KeyGenMtx public, roc server needs to synchronize |
diff --git a/fcrepo-http-api/src/main/java/org/fcrepo/http/api/ViewAssets.java b/fcrepo-http-api/src/main/java/org/fcrepo/http/api/ViewAssets.java
index <HASH>..<HASH> 100644
--- a/fcrepo-http-api/src/main/java/org/fcrepo/http/api/ViewAssets.java
+++ b/fcrepo-http-api/src/main/java/org/fcrepo/http/api/ViewAssets.java
@... | Added support for wildcard accept headers to accomodate deficiencies in HtmlUnit web client. |
diff --git a/xchange-bitbay/src/main/java/org/knowm/xchange/bitbay/BitbayExchange.java b/xchange-bitbay/src/main/java/org/knowm/xchange/bitbay/BitbayExchange.java
index <HASH>..<HASH> 100644
--- a/xchange-bitbay/src/main/java/org/knowm/xchange/bitbay/BitbayExchange.java
+++ b/xchange-bitbay/src/main/java/org/knowm/xcha... | BitBay API host name changed from <URL> |
diff --git a/lib/rails_sortable/version.rb b/lib/rails_sortable/version.rb
index <HASH>..<HASH> 100644
--- a/lib/rails_sortable/version.rb
+++ b/lib/rails_sortable/version.rb
@@ -1,3 +1,3 @@
module RailsSortable
- VERSION = '1.1.1'
+ VERSION = '1.1.2'
end | Bump up version to <I> |
diff --git a/src/network/index.js b/src/network/index.js
index <HASH>..<HASH> 100644
--- a/src/network/index.js
+++ b/src/network/index.js
@@ -47,14 +47,12 @@ module.exports = class Network {
}
_onConnection (conn) {
+ log('connected')
pull(
conn,
lp.decode(),
- pull.collect((err, msg... | fix(network): correct msg processing |
diff --git a/test/AbstractContextTest.php b/test/AbstractContextTest.php
index <HASH>..<HASH> 100644
--- a/test/AbstractContextTest.php
+++ b/test/AbstractContextTest.php
@@ -39,7 +39,7 @@ abstract class AbstractContextTest extends TestCase {
$context->start();
- $this->assertRunTimeLessThan([$conte... | Allow more time for kill
Threads only check once every <I> ms. |
diff --git a/Eloquent/Builder.php b/Eloquent/Builder.php
index <HASH>..<HASH> 100755
--- a/Eloquent/Builder.php
+++ b/Eloquent/Builder.php
@@ -1237,6 +1237,19 @@ class Builder
}
/**
+ * Set the relationships that should be eager loaded while removing any previously added eager loading specifications.
+ ... | [8.x] Add withOnly method (#<I>)
* Added in new withOnly method + tests
* Refactored function
* Update Builder.php |
diff --git a/src/connection.js b/src/connection.js
index <HASH>..<HASH> 100644
--- a/src/connection.js
+++ b/src/connection.js
@@ -1542,7 +1542,7 @@ export class Connection {
const id = ++this._slotSubscriptionCounter;
this._slotSubscriptions[id] = {
callback,
- subscriptionId: id,
+ subscrip... | fix: broken rpc slot change subscription |
diff --git a/spec/mongoid/criteria_spec.rb b/spec/mongoid/criteria_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/mongoid/criteria_spec.rb
+++ b/spec/mongoid/criteria_spec.rb
@@ -2222,7 +2222,7 @@ describe Mongoid::Criteria do
context "when the criteria has limiting options" do
let!(:criteria) do
- ... | Ensure we get back the exact game |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -33,6 +33,14 @@ setup(
'jinja2',
'arrow'
],
+ entry_points={
+ 'cookiecutter_ext': [
+ 'TimeExtension = jinja2_time:TimeExtension',
+ ],
+ 'cookiecutter_filter': [
+ ... | Set up entry_points for cookiecutter |
diff --git a/etc/config.php b/etc/config.php
index <HASH>..<HASH> 100644
--- a/etc/config.php
+++ b/etc/config.php
@@ -14,7 +14,7 @@ $conf['db']['default']['charset'] = 'utf8';
$conf['db']['tests'] = $conf['db']['default'];
$conf['db']['tests']['database'] = 'psc-cms_tests';
-if (\Psc\PSC::isTravis()) {
+if (getenv... | make config loadable by webforge |
diff --git a/mixins/sync.js b/mixins/sync.js
index <HASH>..<HASH> 100644
--- a/mixins/sync.js
+++ b/mixins/sync.js
@@ -41,7 +41,7 @@ function sync(local, remote, ref, depth, callback) {
if (typeof type !== "string") throw new TypeError("type must be string");
if (typeof hash !== "string") throw new TypeError(... | hasHash no longer has type argument |
diff --git a/embed_video/backends.py b/embed_video/backends.py
index <HASH>..<HASH> 100644
--- a/embed_video/backends.py
+++ b/embed_video/backends.py
@@ -356,7 +356,7 @@ class VimeoBackend(VideoBackend):
re_detect = re.compile(r"^((http(s)?:)?//)?(www\.)?(player\.)?vimeo\.com/.*", re.I)
re_code = re.compil... | Make trailing slash after 'review' in Vimeo URL pattern required. |
diff --git a/support/test-runner/public/javascript/runner.js b/support/test-runner/public/javascript/runner.js
index <HASH>..<HASH> 100644
--- a/support/test-runner/public/javascript/runner.js
+++ b/support/test-runner/public/javascript/runner.js
@@ -1,6 +1,6 @@
// useful globals
-var currentSuite, currentCase;
+var... | Fixed test runner on IE6/7. Odd jquery bug |
diff --git a/test/macros/net.js b/test/macros/net.js
index <HASH>..<HASH> 100644
--- a/test/macros/net.js
+++ b/test/macros/net.js
@@ -61,6 +61,9 @@ exports.shouldSendData = function (options, nested) {
if (nested) {
Object.keys(nested).forEach(function (vow) {
+ if(!context.hasOwnProperty('after data is... | [fix] Ensure key exists before attempting to add methods to object in should send data macro |
diff --git a/src/OpenSSL/_util.py b/src/OpenSSL/_util.py
index <HASH>..<HASH> 100644
--- a/src/OpenSSL/_util.py
+++ b/src/OpenSSL/_util.py
@@ -1,3 +1,4 @@
+import os
import sys
import warnings
@@ -89,19 +90,19 @@ def native(s):
def path_string(s):
"""
- Convert a Python string to a :py:class:`bytes` stri... | Accept pathlib.Path as a valid path (#<I>)
And also whatever supports the protocol.
Way more pythonic now! |
diff --git a/opal/action_pack/action_controller.rb b/opal/action_pack/action_controller.rb
index <HASH>..<HASH> 100644
--- a/opal/action_pack/action_controller.rb
+++ b/opal/action_pack/action_controller.rb
@@ -82,6 +82,7 @@ class ActionController
@__locals = name_or_options[:locals]
@renderer.loc... | handle views that start with layouts for non-relative paths |
diff --git a/src/ArrowDirectionMixin.js b/src/ArrowDirectionMixin.js
index <HASH>..<HASH> 100644
--- a/src/ArrowDirectionMixin.js
+++ b/src/ArrowDirectionMixin.js
@@ -198,8 +198,12 @@ function ArrowDirectionMixin(Base) {
rightToLeft ?
'rotateZ(180deg)' :
'';
- this[internal.i... | Check to see if arrow icons are actually being used before trying to style them. |
diff --git a/type_map.go b/type_map.go
index <HASH>..<HASH> 100644
--- a/type_map.go
+++ b/type_map.go
@@ -1,3 +1,5 @@
+// +build !gccgo
+
package reflect2
import ( | #6, #9: TypeByName/TypeByPackageName use a hack that only works with gcgo and doesn't work with gccgo. Disabling compilation of type_map.go for gccgo. |
diff --git a/slave/setup.py b/slave/setup.py
index <HASH>..<HASH> 100755
--- a/slave/setup.py
+++ b/slave/setup.py
@@ -133,9 +133,10 @@ else:
'pyflakes',
],
}
- setup_args['setup_requires'] = [
- 'setuptools_trial',
- ]
+ if '--help-commands' in sys.argv or 'trial' in sys.argv... | require setuptools_trial on slave only if tests/help command requested |
diff --git a/lspreader/flds.py b/lspreader/flds.py
index <HASH>..<HASH> 100644
--- a/lspreader/flds.py
+++ b/lspreader/flds.py
@@ -9,7 +9,7 @@ def rect(d,s=None):
if key not in dims ];
shape = [ len( np.unique(d[l]) )
for l in dims ];
- if not s:
+ if s is not None:
s ... | flds.py fix, we need testing |
diff --git a/safe/storage/test_io.py b/safe/storage/test_io.py
index <HASH>..<HASH> 100644
--- a/safe/storage/test_io.py
+++ b/safe/storage/test_io.py
@@ -677,7 +677,7 @@ class Test_IO(unittest.TestCase):
V_ref = V.get_topN('FLOOR_AREA', 5)
geometry = V_ref.get_geometry()
- data = V_ref.get_d... | Debugging test that failed at GEM code sprint |
diff --git a/src/main/resources/META-INF/resources/primefaces/schedule/1-schedule.js b/src/main/resources/META-INF/resources/primefaces/schedule/1-schedule.js
index <HASH>..<HASH> 100644
--- a/src/main/resources/META-INF/resources/primefaces/schedule/1-schedule.js
+++ b/src/main/resources/META-INF/resources/primefaces/... | fix: schedule: URL events enable phishing attacks (#<I>) |
diff --git a/state/testing/suite.go b/state/testing/suite.go
index <HASH>..<HASH> 100644
--- a/state/testing/suite.go
+++ b/state/testing/suite.go
@@ -27,6 +27,7 @@ type StateSuite struct {
NewPolicy state.NewPolicyFunc
Controller *state.Controller
State *state.S... | state/testing: Add a StatePool to StateSuite
This will be useful in a number of tests. |
diff --git a/source/DatePicker.js b/source/DatePicker.js
index <HASH>..<HASH> 100644
--- a/source/DatePicker.js
+++ b/source/DatePicker.js
@@ -167,9 +167,9 @@ enyo.kind({
this.refresh();
},
disabledChanged: function() {
- this.yearPickerButton.setDisabled(this.disabled);
- this.monthPickerButton.setDisabled(th... | Update source/DatePicker.js
Fix problem where disabledChanged didn't use $ to find items in the hash, reported on forums at <URL> |
diff --git a/test/httpstress_test.go b/test/httpstress_test.go
index <HASH>..<HASH> 100644
--- a/test/httpstress_test.go
+++ b/test/httpstress_test.go
@@ -51,7 +51,10 @@ func TestStressHTTP(t *testing.T) {
tc := &tls.Config{InsecureSkipVerify: true}
tr := &http.Transport{
- TLSClientConfig: tc,
+ TLSClientConfi... | Slightly more robust HTTP stress test |
diff --git a/prow/plugins/cla/cla.go b/prow/plugins/cla/cla.go
index <HASH>..<HASH> 100644
--- a/prow/plugins/cla/cla.go
+++ b/prow/plugins/cla/cla.go
@@ -43,7 +43,8 @@ It may take a couple minutes for the CLA signature to be fully registered; after
- If you've already signed a CLA, it's possible we don't have your ... | Update CLA message with LF helpdesk information. |
diff --git a/gitconsensus/repository.py b/gitconsensus/repository.py
index <HASH>..<HASH> 100644
--- a/gitconsensus/repository.py
+++ b/gitconsensus/repository.py
@@ -228,7 +228,7 @@ class PullRequest:
def shouldClose(self):
if 'timeout' in self.repository.rules:
- if self.hoursSinceLastCommi... | Fix `shouldClose` to use time since last update, not last commit |
diff --git a/client/src/main/java/io/pravega/client/batch/impl/BatchClientImpl.java b/client/src/main/java/io/pravega/client/batch/impl/BatchClientImpl.java
index <HASH>..<HASH> 100644
--- a/client/src/main/java/io/pravega/client/batch/impl/BatchClientImpl.java
+++ b/client/src/main/java/io/pravega/client/batch/impl/Ba... | Issue <I>: Remove duplicative logic of fetching offsets for a stream head. (#<I>)
* Remove duplicate logic of fetching offsets for a Stream Head. |
diff --git a/src/Symfony/Component/HttpFoundation/Request.php b/src/Symfony/Component/HttpFoundation/Request.php
index <HASH>..<HASH> 100644
--- a/src/Symfony/Component/HttpFoundation/Request.php
+++ b/src/Symfony/Component/HttpFoundation/Request.php
@@ -757,12 +757,11 @@ class Request
$clientIps = array_map('... | Removed useless check if self::$trustProxies is set
In Request::getClientIps() on line <I> there is a check if self::$trustedProxies is not set. If this condition evaluates to true the method will return.
Because of this the second identical check on line <I> will never evaluate to true, as when reaching this position... |
diff --git a/pmxbot/storage.py b/pmxbot/storage.py
index <HASH>..<HASH> 100644
--- a/pmxbot/storage.py
+++ b/pmxbot/storage.py
@@ -35,7 +35,7 @@ class SelectableStorage(object):
@classmethod
def from_URI(cls, URI):
- candidates = itersubclasses(cls)
+ candidates = reversed(list(itersubclasses(cls)))
if ... | Prefer the most specialized implementation for which uri_matches passes. |
diff --git a/lib/fog/bin/aws.rb b/lib/fog/bin/aws.rb
index <HASH>..<HASH> 100644
--- a/lib/fog/bin/aws.rb
+++ b/lib/fog/bin/aws.rb
@@ -29,6 +29,8 @@ class AWS < Fog::Bin
Fog::Storage::AWS
when :rds
Fog::AWS::RDS
+ when :sns
+ Fog::AWS::SNS
else
# @todo Replace most i... | Add sns to fog bin. |
diff --git a/experiments/concurrency/stub.rb b/experiments/concurrency/stub.rb
index <HASH>..<HASH> 100644
--- a/experiments/concurrency/stub.rb
+++ b/experiments/concurrency/stub.rb
@@ -10,13 +10,12 @@ class Listener
@socket = socket
@cache = cache
@app = Rack::HelloWorld.new
- @block = true
- @ob... | Updated stub.rb to debug problem with benchmarking in Rubinius. |
diff --git a/src/Logging/MonologBase.php b/src/Logging/MonologBase.php
index <HASH>..<HASH> 100755
--- a/src/Logging/MonologBase.php
+++ b/src/Logging/MonologBase.php
@@ -2,6 +2,7 @@
namespace Modulus\Hibernate\Logging;
+use Monolog\Logger;
use Modulus\Support\Config;
use Modulus\Hibernate\Logging\Driver;
use M... | fix: throw exception on __construct if driver is not a valid driver
also, expect a logger instance on log function |
diff --git a/tasks/nodemon.js b/tasks/nodemon.js
index <HASH>..<HASH> 100644
--- a/tasks/nodemon.js
+++ b/tasks/nodemon.js
@@ -12,7 +12,7 @@ module.exports = function (grunt) {
var options = this.options();
var done = this.async();
- var args = [__dirname + '/../node_modules/nodemon/nodemon'];
+ var a... | Use require.resolve to determine nodemon location instead of hard-coding |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.