diff stringlengths 65 26.7k | message stringlengths 7 9.92k |
|---|---|
diff --git a/tests/try_with.js b/tests/try_with.js
index <HASH>..<HASH> 100644
--- a/tests/try_with.js
+++ b/tests/try_with.js
@@ -45,4 +45,23 @@ describe('tryWith', function(){
},
function(reason){test_finished(reason ? reason : new Error('tryWith callback rejected!'));});
});
+
+ it('should immediately fail ... | Added a test case which checks whether the newly-added critical error checking in tryWith works as expected (i.e. rejects despite the strategy's decision). |
diff --git a/src/main/java/com/codeborne/selenide/impl/AbstractSelenideElement.java b/src/main/java/com/codeborne/selenide/impl/AbstractSelenideElement.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/codeborne/selenide/impl/AbstractSelenideElement.java
+++ b/src/main/java/com/codeborne/selenide/impl/AbstractSe... | make it compilable with Java 6 |
diff --git a/test/helper.rb b/test/helper.rb
index <HASH>..<HASH> 100644
--- a/test/helper.rb
+++ b/test/helper.rb
@@ -13,7 +13,7 @@ class TestSlim < MiniTest::Unit::TestCase
end
def teardown
- String.send(:remove_method, :html_safe?) if String.method_defined?(:html_safe?)
+ String.send(:undef_method, :ht... | Undefine the method more cleanly. |
diff --git a/src/consumer/runner.js b/src/consumer/runner.js
index <HASH>..<HASH> 100644
--- a/src/consumer/runner.js
+++ b/src/consumer/runner.js
@@ -113,6 +113,18 @@ module.exports = class Runner extends EventEmitter {
continue
}
+ if (e.type === 'UNKNOWN_MEMBER_ID') {
+ this.log... | fix: handle unknown_member_id from offsetCommit |
diff --git a/tests/test_cli.py b/tests/test_cli.py
index <HASH>..<HASH> 100755
--- a/tests/test_cli.py
+++ b/tests/test_cli.py
@@ -68,4 +68,11 @@ def test_convert_command(from_path, to_path, from_format, to_format):
mwtabfiles_study_ids_set = set(mwf.study_id for mwf in mwtabfiles_list)
mwtabfiles_analysis_id... | Begins adding unit test for download commandline method. |
diff --git a/internal/client/client.go b/internal/client/client.go
index <HASH>..<HASH> 100644
--- a/internal/client/client.go
+++ b/internal/client/client.go
@@ -2,7 +2,6 @@
package client
import (
- "fmt"
"os"
"github.com/goreleaser/goreleaser/pkg/config"
@@ -31,5 +30,5 @@ func New(ctx *context.Context) (Cl... | Fixed token required if release is disabled #<I> (#<I>) |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -1,5 +1,6 @@
#!/usr/bin/env python
+import os
import pypandoc
try:
@@ -9,14 +10,17 @@ except ImportError:
use_setuptools()
from setuptools import setup
-readme = pypandoc.convert_file('README.md', 'rst')
-ch... | setup.py: handle missing readme/changelog files
This is the case when running tests under tox. |
diff --git a/wurlitzer.py b/wurlitzer.py
index <HASH>..<HASH> 100644
--- a/wurlitzer.py
+++ b/wurlitzer.py
@@ -210,9 +210,9 @@ class Wurlitzer(object):
data = os.read(fd, 1024)
if not data:
# pipe closed, stop polling it
- os.clos... | closing socket descriptor after removing from array and unregistering from poller |
diff --git a/app/controllers/securities_controller.py b/app/controllers/securities_controller.py
index <HASH>..<HASH> 100644
--- a/app/controllers/securities_controller.py
+++ b/app/controllers/securities_controller.py
@@ -115,10 +115,9 @@ def __get_model_for_details(
# Profit/loss
model.profit_loss = model... | correcting the unrealized gains/loss % calc |
diff --git a/pifpaf/drivers/gnocchi.py b/pifpaf/drivers/gnocchi.py
index <HASH>..<HASH> 100644
--- a/pifpaf/drivers/gnocchi.py
+++ b/pifpaf/drivers/gnocchi.py
@@ -87,7 +87,7 @@ url = %s""" % (self.tempdir, self.port, pg.url))
self.putenv("GNOCCHI_PORT", str(self.port))
self.putenv("URL", "gnocchi://lo... | gnocchi: fix a regression on variable names
These ones should not be prefixed. |
diff --git a/core-bundle/src/Resources/contao/drivers/DC_Table.php b/core-bundle/src/Resources/contao/drivers/DC_Table.php
index <HASH>..<HASH> 100644
--- a/core-bundle/src/Resources/contao/drivers/DC_Table.php
+++ b/core-bundle/src/Resources/contao/drivers/DC_Table.php
@@ -4302,7 +4302,7 @@ Backend.makeParentViewSorta... | [Core] the callback is now named "panel_callback" |
diff --git a/marabunta/parser.py b/marabunta/parser.py
index <HASH>..<HASH> 100644
--- a/marabunta/parser.py
+++ b/marabunta/parser.py
@@ -14,7 +14,7 @@ YAML_EXAMPLE = u"""
migration:
options:
# --workers=0 --stop-after-init are automatically added
- install_command: odoo.py
+ install_command: odoo
... | Update docstring to use odoo command instead of odoo.py |
diff --git a/command/agent/config.go b/command/agent/config.go
index <HASH>..<HASH> 100644
--- a/command/agent/config.go
+++ b/command/agent/config.go
@@ -602,6 +602,9 @@ func (a *AdvertiseAddrs) Merge(b *AdvertiseAddrs) *AdvertiseAddrs {
if b.Serf != "" {
result.Serf = b.Serf
}
+ if b.HTTP != "" {
+ result.HTT... | Merging the value of http advertise addr if user is providing one |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -48,7 +48,7 @@ setup(
],
license='License :: OSI Approved :: MIT License',
keywords='design-by-contract precondition postcondition validation',
- packages=find_packages(exclude=['tests']),
+ packages=find_... | Excluded all tests from package (#<I>)
The test directories tests_* are erronously included in the package. With this patch they are excluded in the package building.
Fixes #<I>. |
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.0"
+__version__ = "0.1.1" | Update version number to <I> |
diff --git a/tests/lib/screenshot-testing/support/diff-viewer.js b/tests/lib/screenshot-testing/support/diff-viewer.js
index <HASH>..<HASH> 100644
--- a/tests/lib/screenshot-testing/support/diff-viewer.js
+++ b/tests/lib/screenshot-testing/support/diff-viewer.js
@@ -69,7 +69,7 @@ DiffViewerGenerator.prototype.generate ... | github changed their URLs to githubusercontent.com |
diff --git a/fmn/lib/models.py b/fmn/lib/models.py
index <HASH>..<HASH> 100644
--- a/fmn/lib/models.py
+++ b/fmn/lib/models.py
@@ -350,7 +350,9 @@ class Preference(BASE):
batch_count = sa.Column(sa.Integer, nullable=True)
# Hold the state of start/stop commands to the irc bot and others.
- enabled = sa.C... | Disable messaging out of the box. |
diff --git a/django_extensions/management/commands/find_template.py b/django_extensions/management/commands/find_template.py
index <HASH>..<HASH> 100644
--- a/django_extensions/management/commands/find_template.py
+++ b/django_extensions/management/commands/find_template.py
@@ -19,4 +19,4 @@ class Command(LabelCommand)... | change print into self.stdout |
diff --git a/lib/github3.js b/lib/github3.js
index <HASH>..<HASH> 100644
--- a/lib/github3.js
+++ b/lib/github3.js
@@ -235,5 +235,15 @@ github3.getForks = function (repo,name,callback) {
this._get('/repos/'+name+'/'+repo+'/forks',callback)
}
+/*
+ Repository Watchers
+ @class github3
+ @method getWatchers
+*/
... | added method/test to retrieve list of people watching a repository |
diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -107,45 +107,8 @@ function start (params = {}) {
serverClose('SIGINT')
})
- /**
- * A list of promises which listen to different
- * events in the application which need to resolved
- * until the server is ful... | Removed code after discussion with Emil, we don’t believe this is used and it is a bit strange |
diff --git a/storage/sql/config.go b/storage/sql/config.go
index <HASH>..<HASH> 100644
--- a/storage/sql/config.go
+++ b/storage/sql/config.go
@@ -242,6 +242,10 @@ func (s *MySQL) open(logger log.Logger) (*conn, error) {
if s.Host[0] != '/' {
cfg.Net = "tcp"
cfg.Addr = s.Host
+
+ if s.Port != 0 {
+ cfg.... | fix(storage/mysql): add missing port to the address |
diff --git a/Auth.php b/Auth.php
index <HASH>..<HASH> 100644
--- a/Auth.php
+++ b/Auth.php
@@ -980,6 +980,14 @@ class Auth
return $return;
}
+ $zxcvbn = new Zxcvbn();
+
+ if ($zxcvbn->passwordStrength($password)['score'] < intval($this->config->password_min_score)) {
+ ... | Added a password strength check to resetPass |
diff --git a/lxd/network/network.go b/lxd/network/network.go
index <HASH>..<HASH> 100644
--- a/lxd/network/network.go
+++ b/lxd/network/network.go
@@ -283,6 +283,20 @@ func (n *Network) setup(oldConfig map[string]string) error {
}
}
+ // Enable VLAN filtering for Linux bridges.
+ if n.config["bridge.driver"] != ... | lxd/network: Enable VLAN filtering for managed Linux bridges
Sets default PVID to 1. |
diff --git a/bigtable-client-core-parent/bigtable-client-core/src/main/java/com/google/cloud/bigtable/grpc/async/BulkMutation.java b/bigtable-client-core-parent/bigtable-client-core/src/main/java/com/google/cloud/bigtable/grpc/async/BulkMutation.java
index <HASH>..<HASH> 100644
--- a/bigtable-client-core-parent/bigtabl... | Increasing the staleness timeout to 7 minutes. (#<I>) |
diff --git a/salt/modules/iptables.py b/salt/modules/iptables.py
index <HASH>..<HASH> 100644
--- a/salt/modules/iptables.py
+++ b/salt/modules/iptables.py
@@ -116,6 +116,20 @@ def set_policy(table='filter', chain=None, policy=None):
return out
+def save(filename):
+ '''
+ Save the current in-memory rules... | Add the ability to save rules to disk |
diff --git a/src/LaravelRepositoriesServiceProvider.php b/src/LaravelRepositoriesServiceProvider.php
index <HASH>..<HASH> 100644
--- a/src/LaravelRepositoriesServiceProvider.php
+++ b/src/LaravelRepositoriesServiceProvider.php
@@ -6,10 +6,19 @@ use Illuminate\Support\ServiceProvider;
use Saritasa\LaravelRepositories\R... | Change type of implementation of IRepositoryFactory in DI container to singleton.
Improve package provider documentation. |
diff --git a/cnxpublishing/tests/test_db.py b/cnxpublishing/tests/test_db.py
index <HASH>..<HASH> 100644
--- a/cnxpublishing/tests/test_db.py
+++ b/cnxpublishing/tests/test_db.py
@@ -1077,7 +1077,7 @@ INSERT INTO modules
VALUES
(1, 'Module', 'referenced module',
DEFAULT, DEFAULT, 1, 1,
- 0, 'admin', 'log', NULL, NU... | Change tests to insert DEFAULT stateid instead of NULL |
diff --git a/test.js b/test.js
index <HASH>..<HASH> 100644
--- a/test.js
+++ b/test.js
@@ -115,10 +115,15 @@ describe('loads', function () {
/* istanbul ignore next */
.on('error', function (err) {
throw err;
+ })
+ /* istanbul ignore next */
+ .on('timeout', function (err) {
+ throw err;... | [test] Test that everything is cleared on `end` |
diff --git a/conftest.py b/conftest.py
index <HASH>..<HASH> 100644
--- a/conftest.py
+++ b/conftest.py
@@ -25,11 +25,18 @@ def client_token(client):
def clean_response(response):
"""Remove a few info from the response before writing cassettes."""
- if not isinstance(response, dict):
- return response
... | test: make clean response work with tornado client |
diff --git a/src/js/boards.js b/src/js/boards.js
index <HASH>..<HASH> 100644
--- a/src/js/boards.js
+++ b/src/js/boards.js
@@ -130,11 +130,12 @@
if (e.isNew)
{
var DROP = 'drop';
+ var result;
if (setting.hasOwnProperty(DROP)... | * drop action can be cancel in board. |
diff --git a/lib/plans.go b/lib/plans.go
index <HASH>..<HASH> 100644
--- a/lib/plans.go
+++ b/lib/plans.go
@@ -16,6 +16,8 @@ type Plan struct {
Disk string `json:"disk"`
Bandwidth string `json:"bandwidth"`
Price string `json:"price_per_month"`
+ PlanType string `json:"plan_type"`
+ Windows bool `jso... | Update plans.go
added PlanTypes and Windows to struct 'Plan' following Vultr's plan API response
<URL> |
diff --git a/extensions/multibindings/src/com/google/inject/multibindings/Multibinder.java b/extensions/multibindings/src/com/google/inject/multibindings/Multibinder.java
index <HASH>..<HASH> 100644
--- a/extensions/multibindings/src/com/google/inject/multibindings/Multibinder.java
+++ b/extensions/multibindings/src/co... | Fix issue <I>, cleanup javadoc for Multibinder
Revision created by MOE tool push_codebase.
MOE_MIGRATION=<I> |
diff --git a/impl/src/main/java/org/jboss/weld/bootstrap/events/BeanBuilderImpl.java b/impl/src/main/java/org/jboss/weld/bootstrap/events/BeanBuilderImpl.java
index <HASH>..<HASH> 100644
--- a/impl/src/main/java/org/jboss/weld/bootstrap/events/BeanBuilderImpl.java
+++ b/impl/src/main/java/org/jboss/weld/bootstrap/event... | Fix missing add of injection points in BeanBuilderImpl. |
diff --git a/src/Phug/Formatter.php b/src/Phug/Formatter.php
index <HASH>..<HASH> 100644
--- a/src/Phug/Formatter.php
+++ b/src/Phug/Formatter.php
@@ -141,7 +141,7 @@ class Formatter implements ModuleContainerInterface
$error->getMessage(),
$error->getCode(),
$error,
- ... | getFile will be available on Parser next release |
diff --git a/urbansim/utils/misc.py b/urbansim/utils/misc.py
index <HASH>..<HASH> 100644
--- a/urbansim/utils/misc.py
+++ b/urbansim/utils/misc.py
@@ -1,8 +1,6 @@
from __future__ import print_function
import os
-import yaml
-
import numpy as np
import pandas as pd | one more - no longer need to import yaml here |
diff --git a/src/main/java/com/bitmechanic/barrister/Idl2Java.java b/src/main/java/com/bitmechanic/barrister/Idl2Java.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/bitmechanic/barrister/Idl2Java.java
+++ b/src/main/java/com/bitmechanic/barrister/Idl2Java.java
@@ -414,7 +414,7 @@ public class Idl2Java {
... | Ensure file/dir paths have correct separator |
diff --git a/src/CoandaCMS/Coanda/Pages/Repositories/Eloquent/EloquentPageRepository.php b/src/CoandaCMS/Coanda/Pages/Repositories/Eloquent/EloquentPageRepository.php
index <HASH>..<HASH> 100644
--- a/src/CoandaCMS/Coanda/Pages/Repositories/Eloquent/EloquentPageRepository.php
+++ b/src/CoandaCMS/Coanda/Pages/Repositori... | When deleting a page, need to log the fact it was deleted first, otherwise the versions have gone and the name can't be generated. |
diff --git a/lib/WebDriverExpectedCondition.php b/lib/WebDriverExpectedCondition.php
index <HASH>..<HASH> 100644
--- a/lib/WebDriverExpectedCondition.php
+++ b/lib/WebDriverExpectedCondition.php
@@ -49,6 +49,20 @@ class WebDriverExpectedCondition {
}
/**
+ * An expectation for checking substring of a page Tit... | added expectation for substring of title. |
diff --git a/app/lib/katello/concerns/base_template_scope_extensions.rb b/app/lib/katello/concerns/base_template_scope_extensions.rb
index <HASH>..<HASH> 100644
--- a/app/lib/katello/concerns/base_template_scope_extensions.rb
+++ b/app/lib/katello/concerns/base_template_scope_extensions.rb
@@ -161,7 +161,7 @@ module Ka... | Fixes #<I> - wrong latest kernel version in Registered Content Hosts report (#<I>) |
diff --git a/cmd/geth/main.go b/cmd/geth/main.go
index <HASH>..<HASH> 100644
--- a/cmd/geth/main.go
+++ b/cmd/geth/main.go
@@ -218,7 +218,7 @@ func init() {
// Initialize the CLI app and start Geth
app.Action = geth
app.HideVersion = true // we have a command to print the version
- app.Copyright = "Copyright 2013... | cmd/geth: update copyright year (#<I>) |
diff --git a/web/web.go b/web/web.go
index <HASH>..<HASH> 100644
--- a/web/web.go
+++ b/web/web.go
@@ -140,6 +140,10 @@ func formatEndpoint(v *registry.Value, r int) string {
return fmt.Sprintf(strings.Join(fparts, ""), vals...)
}
+func faviconHandler(w http.ResponseWriter, r *http.Request) {
+ return
+}
+
func i... | add cruft favicon.ico handler so it doesn't error |
diff --git a/spec/cucumber/formatter/junit_spec.rb b/spec/cucumber/formatter/junit_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/cucumber/formatter/junit_spec.rb
+++ b/spec/cucumber/formatter/junit_spec.rb
@@ -66,6 +66,29 @@ module Cucumber
it { expect(@doc.xpath('//testsuite/testcase/system-out').first.con... | Add test for handling captured output encodings in junit |
diff --git a/tests/xml/test_MultiPartyCallElement.py b/tests/xml/test_MultiPartyCallElement.py
index <HASH>..<HASH> 100644
--- a/tests/xml/test_MultiPartyCallElement.py
+++ b/tests/xml/test_MultiPartyCallElement.py
@@ -37,7 +37,8 @@ class MultiPartyCallElementTest(TestCase, PlivoXmlTestCase):
def test_validation... | MultiPartyCallElementTest.test_validation_on_init: update expected error
this should probably not be hardcoded, but that looks like a bigger change across the test suite |
diff --git a/lib/emitter.js b/lib/emitter.js
index <HASH>..<HASH> 100644
--- a/lib/emitter.js
+++ b/lib/emitter.js
@@ -61,6 +61,12 @@ class Emitter {
callback(params[0]);
} else if (paramsLength === 2) {
callback(params[0], params[1]);
+ } else if (paramsLength === 3) {
+ callback(p... | :arrow_up: Upgrade dist file |
diff --git a/control/runner.go b/control/runner.go
index <HASH>..<HASH> 100644
--- a/control/runner.go
+++ b/control/runner.go
@@ -307,6 +307,12 @@ func (r *runner) Start() error {
// Stop handling, gracefully stop all plugins.
func (r *runner) Stop() []error {
var errs []error
+
+ // Stop the monitor
+ r.monitor.S... | Stop the monitor when runner.Stop() is called |
diff --git a/test/commands/console_test.rb b/test/commands/console_test.rb
index <HASH>..<HASH> 100644
--- a/test/commands/console_test.rb
+++ b/test/commands/console_test.rb
@@ -183,9 +183,17 @@ describe Lotus::Commands::Console do
end
end
- it 'preloads application' do
- assert defined?(... | Muted failing tests introduced by <I>ca<I>f9a<I>fd6c5d<I>f<I>ec. My apologies :crying_cat_face: |
diff --git a/src/sos/utils.py b/src/sos/utils.py
index <HASH>..<HASH> 100644
--- a/src/sos/utils.py
+++ b/src/sos/utils.py
@@ -895,10 +895,6 @@ def sos_handle_parameter_(key, defvalue):
NOTE: parmeters will not be handled if it is already defined in
the environment. This makes the parameters variable.
''... | Reduce the occurance of warning message #<I> |
diff --git a/nodejs/matrix/cost.js b/nodejs/matrix/cost.js
index <HASH>..<HASH> 100644
--- a/nodejs/matrix/cost.js
+++ b/nodejs/matrix/cost.js
@@ -81,6 +81,11 @@ function penalty_costs(penalty, bounds, prmname) {
if( bounds.LBDefined ) {
if( costs[0].lb !== bounds.LB ) {
costs[0].lb = bounds.LB;
+ ... | adjusting ub when moving k=0 to physical lower bound |
diff --git a/erizo_controller/common/semanticSdp/SimulcastInfo.js b/erizo_controller/common/semanticSdp/SimulcastInfo.js
index <HASH>..<HASH> 100755
--- a/erizo_controller/common/semanticSdp/SimulcastInfo.js
+++ b/erizo_controller/common/semanticSdp/SimulcastInfo.js
@@ -14,14 +14,14 @@ class SimulcastInfo {
send... | Fix cloning of SimulcastInfos (#<I>) |
diff --git a/src/js/components/Diagram/diagram.stories.js b/src/js/components/Diagram/diagram.stories.js
index <HASH>..<HASH> 100644
--- a/src/js/components/Diagram/diagram.stories.js
+++ b/src/js/components/Diagram/diagram.stories.js
@@ -48,7 +48,7 @@ class SimpleDiagram extends React.Component {
const connection... | Changed diagram story to remove swastika (#<I>) |
diff --git a/src/tokencontext.js b/src/tokencontext.js
index <HASH>..<HASH> 100644
--- a/src/tokencontext.js
+++ b/src/tokencontext.js
@@ -46,6 +46,8 @@ pp.braceIsBlock = function(prevType) {
return true
if (prevType == tt.braceL)
return this.curContext() === types.b_stat
+ if (prevType == tt._var || prev... | Fix token context for braces after let/var/const
Issue #<I> |
diff --git a/lib/specjour/manager.rb b/lib/specjour/manager.rb
index <HASH>..<HASH> 100644
--- a/lib/specjour/manager.rb
+++ b/lib/specjour/manager.rb
@@ -61,11 +61,15 @@ module Specjour
def dispatch_loader
@loader_pid = fork do
# at_exit { exit! }
- exec_cmd = "specjour load --printer-uri #... | Run loader outside of bundler's environment |
diff --git a/galpy/orbit_src/planarOrbit.py b/galpy/orbit_src/planarOrbit.py
index <HASH>..<HASH> 100644
--- a/galpy/orbit_src/planarOrbit.py
+++ b/galpy/orbit_src/planarOrbit.py
@@ -307,8 +307,8 @@ class planarOrbit(planarOrbitTop):
HISTORY:
2010-07-10 - Written - Bovy (NYU)
"""
- ... | fix plotEt for planarOrbit |
diff --git a/regions/core/attributes.py b/regions/core/attributes.py
index <HASH>..<HASH> 100644
--- a/regions/core/attributes.py
+++ b/regions/core/attributes.py
@@ -13,6 +13,10 @@ import numpy as np
from .core import PixelRegion, SkyRegion
from .pixcoord import PixCoord
+__all__ = ['RegionAttr', 'ScalarPix', 'One... | Add __all__ to attributes |
diff --git a/src/zoid/buttons/util.js b/src/zoid/buttons/util.js
index <HASH>..<HASH> 100644
--- a/src/zoid/buttons/util.js
+++ b/src/zoid/buttons/util.js
@@ -121,7 +121,7 @@ export function createNoPaylaterExperiment(fundingSource : ?$Values<typeof FUNDI
return;
}
- return createExperiment('disable_... | turn off pay later experiment (#<I>) |
diff --git a/consul/server_manager/server_manager.go b/consul/server_manager/server_manager.go
index <HASH>..<HASH> 100644
--- a/consul/server_manager/server_manager.go
+++ b/consul/server_manager/server_manager.go
@@ -173,15 +173,11 @@ func (sc *serverConfig) removeServerByKey(targetKey *server_details.Key) {
// sh... | Shuffle in place
Don't create a copy and save the copy, not necessary any more. |
diff --git a/yapsydir/trunk/test/test_settings.py b/yapsydir/trunk/test/test_settings.py
index <HASH>..<HASH> 100644
--- a/yapsydir/trunk/test/test_settings.py
+++ b/yapsydir/trunk/test/test_settings.py
@@ -13,12 +13,12 @@ TEMP_CONFIG_FILE_NAME=os.path.join(
"tempconfig")
# set correct loading path for yapsy's fil... | Make sure we actually import the version from trunk (and not the system
wide installed one ;) )
--HG--
extra : convert_revision : svn%3A3e6e<I>ca-<I>-<I>-a<I>-d<I>c<I>b3c<I>e%<I> |
diff --git a/cachalot/utils.py b/cachalot/utils.py
index <HASH>..<HASH> 100644
--- a/cachalot/utils.py
+++ b/cachalot/utils.py
@@ -128,10 +128,9 @@ def _get_tables(query, db_alias):
tables = set(query.table_map)
tables.add(query.get_meta().db_table)
- children = query.where.children
- if DJANGO_LTE_1_... | Fixes Django <I> compatibility. |
diff --git a/sumo/plotting/dos_plotter.py b/sumo/plotting/dos_plotter.py
index <HASH>..<HASH> 100644
--- a/sumo/plotting/dos_plotter.py
+++ b/sumo/plotting/dos_plotter.py
@@ -287,6 +287,15 @@ class SDOSPlotter(object):
ax.plot(energies, densities, label=label,
color=line['colou... | draw Fermi level line to the dos diagram |
diff --git a/packer/build.go b/packer/build.go
index <HASH>..<HASH> 100644
--- a/packer/build.go
+++ b/packer/build.go
@@ -312,10 +312,10 @@ PostProcessorRunSeqLoop:
}
keep := defaultKeep
- // When user has not set keep_input_artifuact
+ // When user has not set keep_input_artifact
// corePP.keepInput... | fix: mispelled variables names in packer/build.go (#<I>) |
diff --git a/lib/vagrant/util/subprocess.rb b/lib/vagrant/util/subprocess.rb
index <HASH>..<HASH> 100644
--- a/lib/vagrant/util/subprocess.rb
+++ b/lib/vagrant/util/subprocess.rb
@@ -26,6 +26,11 @@ module Vagrant
def initialize(*command)
@options = command.last.is_a?(Hash) ? command.pop : {}
@c... | Fixes [GH-<I>] on Windows 8x<I> and Ruby <I>p<I>
Replaces the command with absolute path version if it exists. |
diff --git a/bugwarrior/db.py b/bugwarrior/db.py
index <HASH>..<HASH> 100644
--- a/bugwarrior/db.py
+++ b/bugwarrior/db.py
@@ -234,10 +234,8 @@ def synchronize(issue_generator, conf):
else:
issue_updates['existing'].append(task)
issue_updates['closed'].remove(existing_uuid)
- ... | Pass along details of the MultipleMatches exception. |
diff --git a/spec/escher.spec.js b/spec/escher.spec.js
index <HASH>..<HASH> 100644
--- a/spec/escher.spec.js
+++ b/spec/escher.spec.js
@@ -229,20 +229,6 @@ describe('Escher', function() {
.toThrow('The request date is not within the accepted time range');
});
- it('should validate request using auth ... | remove test we don't need, as we already have a JSON test for it: authenticate-valid-get-vanilla-empty-query |
diff --git a/src/http/server/plugin/session.js b/src/http/server/plugin/session.js
index <HASH>..<HASH> 100644
--- a/src/http/server/plugin/session.js
+++ b/src/http/server/plugin/session.js
@@ -163,12 +163,12 @@ module.exports = class Session {
const decoded = await this.unsign(encoded);
if (!decoded... | renamed variable, removed line break |
diff --git a/lib/jrubyfx_tasks.rb b/lib/jrubyfx_tasks.rb
index <HASH>..<HASH> 100644
--- a/lib/jrubyfx_tasks.rb
+++ b/lib/jrubyfx_tasks.rb
@@ -19,7 +19,6 @@ limitations under the License.
require 'open-uri'
require 'rake'
require 'tmpdir'
-require "ant"
require "pathname"
module JRubyFX
@@ -108,6 +107,9 @@ modul... | Moving ant deps to native packaging |
diff --git a/test/fixtures/prepare.js b/test/fixtures/prepare.js
index <HASH>..<HASH> 100755
--- a/test/fixtures/prepare.js
+++ b/test/fixtures/prepare.js
@@ -5,7 +5,8 @@ var path = require('path')
var shell = require('shelljs')
var JAVA = 'java -Djava.awt.headless=true -jar'
-var PLANTUML_JAR = path.join(__dirname... | Make prepareation of fixtures use PLANTUML_HOME |
diff --git a/cli/src/main/java/org/jboss/as/cli/impl/ExtensionsLoader.java b/cli/src/main/java/org/jboss/as/cli/impl/ExtensionsLoader.java
index <HASH>..<HASH> 100644
--- a/cli/src/main/java/org/jboss/as/cli/impl/ExtensionsLoader.java
+++ b/cli/src/main/java/org/jboss/as/cli/impl/ExtensionsLoader.java
@@ -138,7 +138,7 ... | [WFCORE-<I>] Use fromString instead of create when the text may include a slot |
diff --git a/Rest/ContentUserGateway.php b/Rest/ContentUserGateway.php
index <HASH>..<HASH> 100644
--- a/Rest/ContentUserGateway.php
+++ b/Rest/ContentUserGateway.php
@@ -104,6 +104,7 @@ class ContentUserGateway implements EventSubscriberInterface
foreach ($requestHeaders as $headerName => $headerValue) {
... | Added 'Url' expected header to ContentUserGateway Message
Some REST Input Parsers expect an Url as a header, that gets
mapped to __url in the message by the ParsingDispatcher.
The Gateway wasn't setting this index. |
diff --git a/lib/knapsack/presenter.rb b/lib/knapsack/presenter.rb
index <HASH>..<HASH> 100644
--- a/lib/knapsack/presenter.rb
+++ b/lib/knapsack/presenter.rb
@@ -54,8 +54,7 @@ module Knapsack
Test on this CI node ran for longer than the max allowed node time execution.
Please regenerate your knapsack report.
-If t... | If that doesn't help, you can split your slowest test files into smaller files, or bump up the time_offset_in_seconds setting. |
diff --git a/emoticons/__init__.py b/emoticons/__init__.py
index <HASH>..<HASH> 100644
--- a/emoticons/__init__.py
+++ b/emoticons/__init__.py
@@ -1,5 +1,5 @@
"""django-emoticons"""
-__version__ = '1.0.1'
+__version__ = '1.1'
__license__ = 'BSD License'
__author__ = 'Fantomas42' | Bumping to version <I> |
diff --git a/caas/kubernetes/provider/bootstrap.go b/caas/kubernetes/provider/bootstrap.go
index <HASH>..<HASH> 100644
--- a/caas/kubernetes/provider/bootstrap.go
+++ b/caas/kubernetes/provider/bootstrap.go
@@ -72,7 +72,7 @@ var controllerServiceSpecs = map[string]*controllerServiceSpec{
ServiceType: core.ServiceTyp... | Remove TODO because bootstrap to 8ks tested on openstack already |
diff --git a/normalize-ice.js b/normalize-ice.js
index <HASH>..<HASH> 100644
--- a/normalize-ice.js
+++ b/normalize-ice.js
@@ -1,25 +1,20 @@
var detect = require('./detect');
-var match = require('./match');
var url = require('url');
-function useNewFormat() {
- return match('firefox') || match('chrome', '>=36');
... | Preserve the query component of the ice server url |
diff --git a/src/Multipart/index.js b/src/Multipart/index.js
index <HASH>..<HASH> 100644
--- a/src/Multipart/index.js
+++ b/src/Multipart/index.js
@@ -122,7 +122,7 @@ class Multipart {
/**
* No one wants to read this file, so simply advance it
*/
- if (!handler || !handler.callback) {
+ if (!hand... | fix(multipart): do not process file when filename is empty |
diff --git a/quantecon/tests/test_mc_tools.py b/quantecon/tests/test_mc_tools.py
index <HASH>..<HASH> 100644
--- a/quantecon/tests/test_mc_tools.py
+++ b/quantecon/tests/test_mc_tools.py
@@ -106,6 +106,16 @@ def test_markovchain_pmatrices():
'period': 1,
'is_aperiodic': True,
},
+ #... | Add the same test case as in the Julia version |
diff --git a/PgBulkInsert/pgbulkinsert-jpa/src/test/java/de/bytefish/pgbulkinsert/jpa/JpaMappingTests.java b/PgBulkInsert/pgbulkinsert-jpa/src/test/java/de/bytefish/pgbulkinsert/jpa/JpaMappingTests.java
index <HASH>..<HASH> 100644
--- a/PgBulkInsert/pgbulkinsert-jpa/src/test/java/de/bytefish/pgbulkinsert/jpa/JpaMapping... | Issue #<I> Rename Copy and Pasted Method |
diff --git a/geomdl/linalg.py b/geomdl/linalg.py
index <HASH>..<HASH> 100644
--- a/geomdl/linalg.py
+++ b/geomdl/linalg.py
@@ -339,6 +339,19 @@ def point_mid(pt1, pt2):
return point_translate(pt1, half_dist_vector)
+@lru_cache(maxsize=os.environ['GEOMDL_CACHE_SIZE'] if "GEOMDL_CACHE_SIZE" in os.environ else 16... | Initial commit of matrix_identitiy |
diff --git a/packages/browser/test/integration/common/init.js b/packages/browser/test/integration/common/init.js
index <HASH>..<HASH> 100644
--- a/packages/browser/test/integration/common/init.js
+++ b/packages/browser/test/integration/common/init.js
@@ -43,7 +43,7 @@ function initSDK() {
// One of the tests u... | fix: Act on allowSentryBreadcrumbs when appropriate (#<I>)
The included test, to check for a breadcrumb category starting with "sentry", was improperly written. |
diff --git a/angr/sim_type.py b/angr/sim_type.py
index <HASH>..<HASH> 100644
--- a/angr/sim_type.py
+++ b/angr/sim_type.py
@@ -35,6 +35,8 @@ class SimType:
return False
for attr in self._fields:
+ if attr == 'size' and self._arch is None and other._arch is None:
+ conti... | SimType: Do not crash during comparison if _arch is not set. |
diff --git a/src/master/master.js b/src/master/master.js
index <HASH>..<HASH> 100644
--- a/src/master/master.js
+++ b/src/master/master.js
@@ -83,6 +83,18 @@ export const isActionFromAuthenticPlayer = (
};
/**
+ * Remove player credentials from action payload
+ */
+const stripCredentialsFromAction = action => {
+ ... | fix(master): Remove credentials from action payloads after use (#<I>)
Credentials are only used to check if an action is authorized in the
master and should not then be passed on to the reducer etc.
This contributes towards #<I>, because now credentials should not leak
beyond the `Master.onUpdate` method and wo... |
diff --git a/salt/modules/zypper.py b/salt/modules/zypper.py
index <HASH>..<HASH> 100644
--- a/salt/modules/zypper.py
+++ b/salt/modules/zypper.py
@@ -1166,8 +1166,10 @@ def install(name=None,
# Handle packages which report multiple new versions
# (affects only kernel packages at this point)
- for pkg in... | Bugfix: handle multi-version package upgrades |
diff --git a/patroni/__init__.py b/patroni/__init__.py
index <HASH>..<HASH> 100644
--- a/patroni/__init__.py
+++ b/patroni/__init__.py
@@ -30,7 +30,7 @@ class Patroni:
return Etcd(name, config['etcd'])
if 'zookeeper' in config:
return ZooKeeper(name, config['zookeeper'])
- rais... | Fixed a typo in the error message. |
diff --git a/private_storage/fields.py b/private_storage/fields.py
index <HASH>..<HASH> 100644
--- a/private_storage/fields.py
+++ b/private_storage/fields.py
@@ -85,9 +85,6 @@ class PrivateFileField(models.FileField):
# Support list, so joining can be done in a storage-specific manner.
... | Fixed Django <I> compatibility in the new generate_filename() |
diff --git a/lib/conceptql/database.rb b/lib/conceptql/database.rb
index <HASH>..<HASH> 100644
--- a/lib/conceptql/database.rb
+++ b/lib/conceptql/database.rb
@@ -2,7 +2,7 @@ require 'facets/hash/revalue'
module ConceptQL
class Database
- attr :db
+ attr :db, :opts
def initialize(db, opts={})
... | Database#opts exposes options set on database
Also set MEM_LIMIT from environment variable in Database |
diff --git a/actionview/lib/action_view/helpers/cache_helper.rb b/actionview/lib/action_view/helpers/cache_helper.rb
index <HASH>..<HASH> 100644
--- a/actionview/lib/action_view/helpers/cache_helper.rb
+++ b/actionview/lib/action_view/helpers/cache_helper.rb
@@ -241,8 +241,6 @@ module ActionView
end
def... | Remove unnecessary comments in cache_helper.rb [ci skip] |
diff --git a/tests/unit/components/sl-menu-test.js b/tests/unit/components/sl-menu-test.js
index <HASH>..<HASH> 100755
--- a/tests/unit/components/sl-menu-test.js
+++ b/tests/unit/components/sl-menu-test.js
@@ -588,12 +588,12 @@ test( 'Stream action "hideAll" triggers hideAll()', function( assert ) {
items: te... | Closes softlayer/sl-ember-components#<I> |
diff --git a/src/trumbowyg.js b/src/trumbowyg.js
index <HASH>..<HASH> 100644
--- a/src/trumbowyg.js
+++ b/src/trumbowyg.js
@@ -205,7 +205,6 @@ jQuery.trumbowyg = {
'|', 'btnGrp-lists',
'|', 'horizontalRule',
'|', 'removeformat',
-
'fullscreen'
... | fix: fix some typos on justify |
diff --git a/packages/Sidenav/src/index.js b/packages/Sidenav/src/index.js
index <HASH>..<HASH> 100644
--- a/packages/Sidenav/src/index.js
+++ b/packages/Sidenav/src/index.js
@@ -45,6 +45,10 @@ const Overlay = styled.div`
export class Sidenav extends Component {
componentDidMount() {
+ if (this.props.opened &&... | :bug: Fixed small bug about scrolling |
diff --git a/lib/graphql/schema/member/build_type.rb b/lib/graphql/schema/member/build_type.rb
index <HASH>..<HASH> 100644
--- a/lib/graphql/schema/member/build_type.rb
+++ b/lib/graphql/schema/member/build_type.rb
@@ -109,8 +109,8 @@ module GraphQL
return string unless string.include?("_")
cameli... | fix: when camelizing a string that starts with `_`, keep them |
diff --git a/lib/searchkick/query.rb b/lib/searchkick/query.rb
index <HASH>..<HASH> 100644
--- a/lib/searchkick/query.rb
+++ b/lib/searchkick/query.rb
@@ -132,21 +132,23 @@ module Searchkick
pp options
puts
- puts "Model Search Data"
- begin
- pp klass.first(3).map { |r| {inde... | Fixed debug option with multiple models - #<I> [skip ci] |
diff --git a/alot/db.py b/alot/db.py
index <HASH>..<HASH> 100644
--- a/alot/db.py
+++ b/alot/db.py
@@ -300,6 +300,17 @@ class Thread(object):
"""returns id of this thread"""
return self._id
+ def has_tag(self, tag):
+ """
+ Checks whether this thread is tagged with the given tag.
+
... | Add helper to check mail thread for tag
This commit adds a method to Thread that allows to check whether the thread is
tagged with a given tag. |
diff --git a/client/blocks/google-my-business-stats-nudge/index.js b/client/blocks/google-my-business-stats-nudge/index.js
index <HASH>..<HASH> 100644
--- a/client/blocks/google-my-business-stats-nudge/index.js
+++ b/client/blocks/google-my-business-stats-nudge/index.js
@@ -37,7 +37,7 @@ class GoogleMyBusinessStatsNudg... | Make sure the calypso_google_my_business_stats_nudge_view event is only triggered when the nudge is visible |
diff --git a/spyderlib/config.py b/spyderlib/config.py
index <HASH>..<HASH> 100644
--- a/spyderlib/config.py
+++ b/spyderlib/config.py
@@ -136,7 +136,7 @@ DEFAULTS = [
('console',
{
'shortcut': "Ctrl+Shift+C",
- 'max_line_count': 300,
+ 'max_line_c... | Console: increased default maximum line count (buffer depth) up to <I>,<I> lines (instead of only <I> lines) |
diff --git a/src/main/java/org/sql2o/ResultSetIterator.java b/src/main/java/org/sql2o/ResultSetIterator.java
index <HASH>..<HASH> 100644
--- a/src/main/java/org/sql2o/ResultSetIterator.java
+++ b/src/main/java/org/sql2o/ResultSetIterator.java
@@ -92,12 +92,12 @@ public class ResultSetIterator<T> implements Iterator<T> ... | only executeScalar if selecting one column |
diff --git a/src/engine/sequencer.js b/src/engine/sequencer.js
index <HASH>..<HASH> 100644
--- a/src/engine/sequencer.js
+++ b/src/engine/sequencer.js
@@ -166,4 +166,14 @@ Sequencer.prototype.proceedThread = function (thread) {
}
};
+/**
+ * Retire a thread in the middle, without considering further blocks.
+ *... | Add `retireThread` to seqeuencer |
diff --git a/Source/com/drew/imaging/tiff/TiffReader.java b/Source/com/drew/imaging/tiff/TiffReader.java
index <HASH>..<HASH> 100644
--- a/Source/com/drew/imaging/tiff/TiffReader.java
+++ b/Source/com/drew/imaging/tiff/TiffReader.java
@@ -135,6 +135,7 @@ public class TiffReader
//
// Handle ea... | Don't stop processing TIFF tags when encountering an invalid tag type.
In some cases it _may_ be possible to continue reading tags. The entries
are fixed width, so it's possible to jump directly to the next one,
having stored an error.
However if we have 'left' the IFD (or perhaps were not in one all along)
then we m... |
diff --git a/upload/admin/controller/sale/order.php b/upload/admin/controller/sale/order.php
index <HASH>..<HASH> 100644
--- a/upload/admin/controller/sale/order.php
+++ b/upload/admin/controller/sale/order.php
@@ -1765,7 +1765,7 @@ class ControllerSaleOrder extends Controller {
$products = $this->model_sale_order... | Update order.php
it should be numberric |
diff --git a/class/StateMachine/FlupdoGenericListing.php b/class/StateMachine/FlupdoGenericListing.php
index <HASH>..<HASH> 100644
--- a/class/StateMachine/FlupdoGenericListing.php
+++ b/class/StateMachine/FlupdoGenericListing.php
@@ -252,7 +252,7 @@ class FlupdoGenericListing implements IListing
} else {
//... | Add `IS NULL` filter |
diff --git a/pyneuroml/analysis/NML2ChannelAnalysis.py b/pyneuroml/analysis/NML2ChannelAnalysis.py
index <HASH>..<HASH> 100644
--- a/pyneuroml/analysis/NML2ChannelAnalysis.py
+++ b/pyneuroml/analysis/NML2ChannelAnalysis.py
@@ -327,7 +327,7 @@ def process_channel_file(channel_file,a):
results = run_lems... | Pass entire namespace to plotting function since other attributes besides the end time of the voltage pulse might be used in the future |
diff --git a/server.js b/server.js
index <HASH>..<HASH> 100644
--- a/server.js
+++ b/server.js
@@ -195,7 +195,7 @@ function parseSummonerFactory(res) {
var temp;
var $ = cheerio.load(game);
game = {};
- game.type = stripNewLines($('.subType').contents().eq(0).text()).slice(0,-2);
+ game.t... | Fixed item name and game type returns in summoner |
diff --git a/lib/iron_mq/client.rb b/lib/iron_mq/client.rb
index <HASH>..<HASH> 100644
--- a/lib/iron_mq/client.rb
+++ b/lib/iron_mq/client.rb
@@ -1,9 +1,18 @@
+require 'yaml'
+
require 'iron_core'
module IronMQ
- # FIXME: read real version
+ @@version = nil
+
def self.version
- '2.0.0'
+ if @@version.ni... | Porting to iron_core - version reading. |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.