diff
stringlengths
65
26.7k
message
stringlengths
7
9.92k
diff --git a/tests/unit/models/physics/HydraulicConductanceTest.py b/tests/unit/models/physics/HydraulicConductanceTest.py index <HASH>..<HASH> 100644 --- a/tests/unit/models/physics/HydraulicConductanceTest.py +++ b/tests/unit/models/physics/HydraulicConductanceTest.py @@ -46,7 +46,12 @@ class HydraulicConductanceTest...
removing bug from test valvatne model.
diff --git a/webpack.demo.config.js b/webpack.demo.config.js index <HASH>..<HASH> 100644 --- a/webpack.demo.config.js +++ b/webpack.demo.config.js @@ -28,7 +28,7 @@ module.exports = function(directory) { rules: [ { test: /\.jsx?$/, - exclude: 'node-modules/', + exclude: /nod...
fix exclude in webpack demo config
diff --git a/consolemenu/menu_component.py b/consolemenu/menu_component.py index <HASH>..<HASH> 100644 --- a/consolemenu/menu_component.py +++ b/consolemenu/menu_component.py @@ -192,7 +192,7 @@ class MenuComponent(object): # apply indentation to any lines after the first that were split by a users new...
text wrapping and ascii handling is now handled within the row function
diff --git a/src/Cache/Pool.php b/src/Cache/Pool.php index <HASH>..<HASH> 100644 --- a/src/Cache/Pool.php +++ b/src/Cache/Pool.php @@ -7,6 +7,7 @@ use Psr\Cache\CacheItemInterface; use Dabble\Adapter\Sqlite; use Dabble\Query\Exception; use Dabble\Query\DeleteException; +use ErrorException; /** * A simple cache ...
place temp sqlite db in /tmp, and delete when done
diff --git a/src/map/parser.js b/src/map/parser.js index <HASH>..<HASH> 100644 --- a/src/map/parser.js +++ b/src/map/parser.js @@ -141,6 +141,9 @@ export default class MapParser extends EventEmitter { * @private */ _parseChunk (id, size) { + // Clear Lookback + this.parser.resetLookBackStrings(); + ...
Fix, reset lookback after each chunk.
diff --git a/contrib/mesos/pkg/executor/service/service.go b/contrib/mesos/pkg/executor/service/service.go index <HASH>..<HASH> 100644 --- a/contrib/mesos/pkg/executor/service/service.go +++ b/contrib/mesos/pkg/executor/service/service.go @@ -99,6 +99,12 @@ func NewKubeletExecutorServer() *KubeletExecutorServer { k.A...
Stop the kubelet from taking control over cgroups and other processes
diff --git a/sos/plugins/as7.py b/sos/plugins/as7.py index <HASH>..<HASH> 100644 --- a/sos/plugins/as7.py +++ b/sos/plugins/as7.py @@ -2,6 +2,7 @@ import os import re import zipfile import urllib2 +import tempfile try: import json @@ -282,6 +283,23 @@ class AS7(Plugin, IndependentPlugin): ...
adding a tree of all zipped deployments
diff --git a/src/Annotator/EntityAnnotator.php b/src/Annotator/EntityAnnotator.php index <HASH>..<HASH> 100644 --- a/src/Annotator/EntityAnnotator.php +++ b/src/Annotator/EntityAnnotator.php @@ -28,6 +28,7 @@ class EntityAnnotator extends AbstractAnnotator { 'longtext' => 'string', 'array' => 'array', 'json' =...
Make binaryuuid annotate as string.
diff --git a/test/functional/ft_14_re_apply.rb b/test/functional/ft_14_re_apply.rb index <HASH>..<HASH> 100644 --- a/test/functional/ft_14_re_apply.rb +++ b/test/functional/ft_14_re_apply.rb @@ -115,6 +115,7 @@ class FtReApplyTest < Test::Unit::TestCase stalled_exp.tree = [ 'participant', { 'ref' => 'alph...
when there is no caching, persisting the modified exp before re_applying is necessary
diff --git a/ginga/version.py b/ginga/version.py index <HASH>..<HASH> 100644 --- a/ginga/version.py +++ b/ginga/version.py @@ -1,7 +1,7 @@ # this file was automatically generated major = 2 minor = 0 -release = 20131222233539 +release = 20131224023332 version = '%d.%d.%d' % (major, minor, release) diff --git a/s...
Fix for setup.py bumped release
diff --git a/features/step_definitions/steps.js b/features/step_definitions/steps.js index <HASH>..<HASH> 100644 --- a/features/step_definitions/steps.js +++ b/features/step_definitions/steps.js @@ -47,11 +47,11 @@ defineSupportCode(function ({ Given, When, Then }) { return this.assertOutputIncludes(expectedOutput...
Sane param names in step defs
diff --git a/config/addresses.go b/config/addresses.go index <HASH>..<HASH> 100644 --- a/config/addresses.go +++ b/config/addresses.go @@ -2,7 +2,9 @@ package config // Addresses stores the (string) multiaddr addresses for the node. type Addresses struct { - Swarm []string // addresses for the swarm network - API...
go-ipfs-config: core: make announced swarm addresses configurable License: MIT
diff --git a/lnd.go b/lnd.go index <HASH>..<HASH> 100644 --- a/lnd.go +++ b/lnd.go @@ -224,6 +224,7 @@ func Main(lisCfg ListenerCfg) error { // Open the channeldb, which is dedicated to storing channel, and // network related metadata. + ltndLog.Infof("Opening the channeldb, might take a few minutes") chanDB, e...
Update channeldb opening log It might take a few minutes and it should therefore state it...
diff --git a/lib/discordrb/data.rb b/lib/discordrb/data.rb index <HASH>..<HASH> 100644 --- a/lib/discordrb/data.rb +++ b/lib/discordrb/data.rb @@ -121,6 +121,14 @@ module Discordrb @bot.add_await(key, Discordrb::Events::MessageEvent, { from: @id }.merge(attributes), &block) end + # Gets the member this...
Create a method to get a user as a member on a particular server
diff --git a/utp.go b/utp.go index <HASH>..<HASH> 100644 --- a/utp.go +++ b/utp.go @@ -674,8 +674,14 @@ func (s *Socket) LocalAddr() net.Addr { return s.pc.LocalAddr() } -func (s *Socket) ReadFrom([]byte) (int, net.Addr, error) { - return 0, nil, nil +func (s *Socket) ReadFrom(p []byte) (n int, addr net.Addr, err ...
Implement some net.Conn functions on Socket
diff --git a/tests/test_oauth.py b/tests/test_oauth.py index <HASH>..<HASH> 100644 --- a/tests/test_oauth.py +++ b/tests/test_oauth.py @@ -397,8 +397,18 @@ class TestRequest(unittest.TestCase): del foo["oauth_signature"] self.assertEqual(urllib.urlencode(sorted(foo.items())), res) - - ...
Add a test to prove the code...
diff --git a/tool.py b/tool.py index <HASH>..<HASH> 100755 --- a/tool.py +++ b/tool.py @@ -754,6 +754,7 @@ class IANA(object): 'athleta': 'whois.nic.athleta', 'audible': 'whois.nic.audible', 'author': 'whois.nic.author', + 'aws': 'whois.nic.aws', 'bm': 'who...
Introduction of `aws` whois server cf: Whois lookup to whois.nic.aws
diff --git a/cake/libs/controller/controller.php b/cake/libs/controller/controller.php index <HASH>..<HASH> 100644 --- a/cake/libs/controller/controller.php +++ b/cake/libs/controller/controller.php @@ -292,6 +292,32 @@ class Controller extends Object { */ var $methods = array(); /** + * This controller's primary ...
Adding doc blocks for properties that previously had no documentation. Closes #<I> git-svn-id: <URL>
diff --git a/src/vue-data-scooper.js b/src/vue-data-scooper.js index <HASH>..<HASH> 100644 --- a/src/vue-data-scooper.js +++ b/src/vue-data-scooper.js @@ -46,12 +46,6 @@ export const getInitialData = function(doc) { const obj = {} const inputs = doc.querySelectorAll("[v-model]") - if (doc.dataset) { - for (...
Do not initialize data from data-* attribute of root
diff --git a/tests/automated/eventLimit-popover.js b/tests/automated/eventLimit-popover.js index <HASH>..<HASH> 100644 --- a/tests/automated/eventLimit-popover.js +++ b/tests/automated/eventLimit-popover.js @@ -79,6 +79,17 @@ describe('eventLimit popover', function() { expect($('.fc-more-popover .fc-event').length)...
automated test for issue <I>
diff --git a/model/MediaSource.php b/model/MediaSource.php index <HASH>..<HASH> 100644 --- a/model/MediaSource.php +++ b/model/MediaSource.php @@ -180,10 +180,7 @@ class MediaSource extends ConfigurableService implements MediaManagement, Proces return $file; } - /** - * @return FileReferenceSeria...
Cr fix , added return type and removed is string check
diff --git a/activerecord/test/cases/associations/has_many_through_associations_test.rb b/activerecord/test/cases/associations/has_many_through_associations_test.rb index <HASH>..<HASH> 100644 --- a/activerecord/test/cases/associations/has_many_through_associations_test.rb +++ b/activerecord/test/cases/associations/has...
Fix HasManyThroughAssociationsTest tests. [#<I> state:resolved]
diff --git a/src/feat/database/conflicts.py b/src/feat/database/conflicts.py index <HASH>..<HASH> 100644 --- a/src/feat/database/conflicts.py +++ b/src/feat/database/conflicts.py @@ -431,13 +431,22 @@ def cleanup_logs(connection, rconnection): continue in_conflict, raw_doc = yield _check_conflict(...
Fix condition on when can we cleanup the update logs imported from the external database.
diff --git a/adapters/http/adapter_test.go b/adapters/http/adapter_test.go index <HASH>..<HASH> 100644 --- a/adapters/http/adapter_test.go +++ b/adapters/http/adapter_test.go @@ -39,7 +39,7 @@ func TestSend(t *testing.T) { } s := genMockServer(3100) - adapter, err := NewAdapter(log.TestLogger{Tag: "BRK_HDL_ADAPTE...
[broker] Change logger tag in adapters test
diff --git a/docs/conf.py b/docs/conf.py index <HASH>..<HASH> 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -33,7 +33,7 @@ extensions = [ 'sphinx.ext.intersphinx', 'sphinx.ext.viewcode', 'sphinxcontrib.napoleon', - 'sphinxcontrib.aafig', + 'sphinx.ext.aafig', ] # Add any paths that contain te...
switch from sphinxcontrib to sphinx.ext
diff --git a/lib/node_modules/@stdlib/utils/is-node/test/test.is_node.js b/lib/node_modules/@stdlib/utils/is-node/test/test.is_node.js index <HASH>..<HASH> 100644 --- a/lib/node_modules/@stdlib/utils/is-node/test/test.is_node.js +++ b/lib/node_modules/@stdlib/utils/is-node/test/test.is_node.js @@ -238,7 +238,8 @@ tape(...
Add test support for Node <<I>
diff --git a/parser/pigeon.go b/parser/pigeon.go index <HASH>..<HASH> 100644 --- a/parser/pigeon.go +++ b/parser/pigeon.go @@ -1135,7 +1135,7 @@ func (p *parser) addErrAt(err error, pos position) { buf.WriteString("rule " + rule.name) } } - pe := &parserError{Inner: err, prefix: buf.String()} + pe := &parserEr...
Minor update to generated pigeon.go
diff --git a/deployutils/mixins.py b/deployutils/mixins.py index <HASH>..<HASH> 100644 --- a/deployutils/mixins.py +++ b/deployutils/mixins.py @@ -122,7 +122,7 @@ class AccountMixin(object): def get_context_data(self, *args, **kwargs): context = super(AccountMixin, self).get_context_data(*args, **kwargs...
uses account_url_kwarg as key
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100755 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ os.environ['DJANGO_SETTINGS_MODULE'] = 'django_mailbox.tests.settings' from django.core import management -if sys.argv[-1] == 'test': +if len(sys.argv) > 1 and sys.argv[1] == 'test': management.execute_f...
Add support to args in tests
diff --git a/internal/service/autoscaling/group.go b/internal/service/autoscaling/group.go index <HASH>..<HASH> 100644 --- a/internal/service/autoscaling/group.go +++ b/internal/service/autoscaling/group.go @@ -1,6 +1,6 @@ package autoscaling -import ( // nosemgrep: aws-sdk-go-multiple-service-imports +import ( "b...
Fix semgrep 'aws-sdk-go-multiple-service-imports' errors.
diff --git a/controller/Results.php b/controller/Results.php index <HASH>..<HASH> 100644 --- a/controller/Results.php +++ b/controller/Results.php @@ -357,9 +357,9 @@ class Results extends \tao_actions_CommonModule // quick hack to gain performance: caching the entire result page if it is cacheable ...
TAO-<I> Check if cache has been created before log message filed
diff --git a/mozilla/gcli/ui/tooltip.js b/mozilla/gcli/ui/tooltip.js index <HASH>..<HASH> 100644 --- a/mozilla/gcli/ui/tooltip.js +++ b/mozilla/gcli/ui/tooltip.js @@ -21,7 +21,7 @@ var domtemplate = require('../util/domtemplate'); var host = require('../util/host'); var CommandAssignment = require('../cli').Command...
refactor-<I>: Fix nasty typo Some automatic search and replace left us with an extra '
diff --git a/src/render.js b/src/render.js index <HASH>..<HASH> 100644 --- a/src/render.js +++ b/src/render.js @@ -324,5 +324,12 @@ function _render(callback) { graphvizInstance._dispatch.call('renderEnd', graphvizInstance); + if (transitionInstance == null) { + this._dispatch.call('end', this); + ...
Fire callback and end event even when transition is not used Fixes <URL>
diff --git a/tests/_processors/test_when.py b/tests/_processors/test_when.py index <HASH>..<HASH> 100644 --- a/tests/_processors/test_when.py +++ b/tests/_processors/test_when.py @@ -156,7 +156,7 @@ def test_item_many_eggs(testapp): [r"item.author == 'yoda'", "item.source.suffix == '.md'"], id...
Fix deprecation warnings in tests
diff --git a/lib/polyfill/fullscreen.js b/lib/polyfill/fullscreen.js index <HASH>..<HASH> 100644 --- a/lib/polyfill/fullscreen.js +++ b/lib/polyfill/fullscreen.js @@ -59,6 +59,13 @@ shaka.polyfill.Fullscreen.install = function() { document.webkitFullscreenElement; } }); + Object.definePro...
Expanded the fullscreen polyfill. Now it includes fullscreenEnabled. Closes #<I> Change-Id: I7df3c<I>ecc<I>a<I>ba<I>ac<I>aae2bc9b<I>d5
diff --git a/bean-validation/src/test/java/com/kumuluz/ee/beanvalidation/test/HibernateValidatorTest.java b/bean-validation/src/test/java/com/kumuluz/ee/beanvalidation/test/HibernateValidatorTest.java index <HASH>..<HASH> 100644 --- a/bean-validation/src/test/java/com/kumuluz/ee/beanvalidation/test/HibernateValidatorTe...
Added additional tests to bean-validation
diff --git a/lib/lockup.rb b/lib/lockup.rb index <HASH>..<HASH> 100644 --- a/lib/lockup.rb +++ b/lib/lockup.rb @@ -9,10 +9,10 @@ module Lockup if cookies[:lockup] == ENV["LOCKUP_CODEWORD"].to_s.downcase return else - redirect_to :controller => 'lockup', :action => 'unlock',...
routing - force lockup at root
diff --git a/examples/tprattribute/sleeper_event_handler.go b/examples/tprattribute/sleeper_event_handler.go index <HASH>..<HASH> 100644 --- a/examples/tprattribute/sleeper_event_handler.go +++ b/examples/tprattribute/sleeper_event_handler.go @@ -49,6 +49,7 @@ func (h *SleeperEventHandler) handle(obj interface{}) { ...
Do not start sleeping if failed to update status
diff --git a/_example/main.go b/_example/main.go index <HASH>..<HASH> 100644 --- a/_example/main.go +++ b/_example/main.go @@ -1,5 +1,6 @@ // Example application that uses all of the available API options. package main + import ( "log" "time" diff --git a/spinner.go b/spinner.go index <HASH>..<HASH> 100644 --- a...
properly remove previous line for macOS Terminal
diff --git a/src/ConfigCommand/CreateConfigEvent.php b/src/ConfigCommand/CreateConfigEvent.php index <HASH>..<HASH> 100644 --- a/src/ConfigCommand/CreateConfigEvent.php +++ b/src/ConfigCommand/CreateConfigEvent.php @@ -19,6 +19,8 @@ class CreateConfigEvent implements IOInterface, StoppableEventInterface { + ...
fixup: compose IOTrait into CreateConfigEvent
diff --git a/lib/vagrant/util/platform.rb b/lib/vagrant/util/platform.rb index <HASH>..<HASH> 100644 --- a/lib/vagrant/util/platform.rb +++ b/lib/vagrant/util/platform.rb @@ -1,4 +1,5 @@ require 'rbconfig' +require 'shellwords' require 'tmpdir' require "vagrant/util/subprocess" @@ -67,7 +68,7 @@ module Vagrant ...
Properly escape path in cygwin bash check Quick attempt at properly fixing #<I>
diff --git a/gcs/bucket.go b/gcs/bucket.go index <HASH>..<HASH> 100644 --- a/gcs/bucket.go +++ b/gcs/bucket.go @@ -97,7 +97,32 @@ func toRawAcls(in []storage.ACLRule) []*storagev1.ObjectAccessControl { return out } -func fromRawObject(*storagev1.Object) *storage.Object +func fromRawAcls(in []*storagev1.ObjectAcces...
Partially implemented fromRawObject.
diff --git a/docs/src/ComponentsPage.js b/docs/src/ComponentsPage.js index <HASH>..<HASH> 100644 --- a/docs/src/ComponentsPage.js +++ b/docs/src/ComponentsPage.js @@ -317,8 +317,6 @@ const ComponentsPage = React.createClass({ <h4><Anchor id='modals-props-modal-footer'>Modal.Footer</Anchor></h4> ...
Remove leftover for 'ModalTrigger' from docs.
diff --git a/tests/django_settings.py b/tests/django_settings.py index <HASH>..<HASH> 100644 --- a/tests/django_settings.py +++ b/tests/django_settings.py @@ -4,7 +4,8 @@ import warnings from django.utils import deprecation # NOQA warnings.filterwarnings('error', category=deprecation.RemovedInNextVersionWarning) #...
only add RemovedInDjango<I>Warning if present)
diff --git a/spec/features/renalware/set_default_days_pd_regime_bag_spec.rb b/spec/features/renalware/set_default_days_pd_regime_bag_spec.rb index <HASH>..<HASH> 100644 --- a/spec/features/renalware/set_default_days_pd_regime_bag_spec.rb +++ b/spec/features/renalware/set_default_days_pd_regime_bag_spec.rb @@ -41,7 +41,...
Updated feature spec tests for 'set_default_days_pd_regime_bag' to work with changed pd regime bag volume input - now fixed options.
diff --git a/py_linq/py_linq.py b/py_linq/py_linq.py index <HASH>..<HASH> 100644 --- a/py_linq/py_linq.py +++ b/py_linq/py_linq.py @@ -1106,11 +1106,11 @@ class SortedEnumerable(Enumerable): def __iter__(self): for o in reversed(self._key_funcs): self._data = sorted(self._data, key=o.key, rev...
PEP8 failures fixed from previous commit
diff --git a/tests/test_qrcode.py b/tests/test_qrcode.py index <HASH>..<HASH> 100644 --- a/tests/test_qrcode.py +++ b/tests/test_qrcode.py @@ -64,7 +64,7 @@ def test_invalid_mode_provided(): def test_binary_data(): - qr = pyqrcode.create('Märchenbuch'.encode('utf-8')) + qr = pyqrcode.create('Märchenbuch'.enc...
Fixed binary data test to use utf-8 encoding
diff --git a/src/de/lmu/ifi/dbs/elki/visualization/visualizers/VisualizerContext.java b/src/de/lmu/ifi/dbs/elki/visualization/visualizers/VisualizerContext.java index <HASH>..<HASH> 100644 --- a/src/de/lmu/ifi/dbs/elki/visualization/visualizers/VisualizerContext.java +++ b/src/de/lmu/ifi/dbs/elki/visualization/visualiz...
Make more robust by doing more fallback to label clustering...
diff --git a/core/src/playn/core/Layer.java b/core/src/playn/core/Layer.java index <HASH>..<HASH> 100644 --- a/core/src/playn/core/Layer.java +++ b/core/src/playn/core/Layer.java @@ -178,13 +178,14 @@ public interface Layer { Layer setOrigin(float x, float y); /** - * Sets the depth of this layer. Within a si...
Fixed the Javadoc for Layer's depth() and setDepth() methods.
diff --git a/cmd/gmq-cli/command_conn.go b/cmd/gmq-cli/command_conn.go index <HASH>..<HASH> 100644 --- a/cmd/gmq-cli/command_conn.go +++ b/cmd/gmq-cli/command_conn.go @@ -135,7 +135,7 @@ func newCommandConn(args []string, ctx *context) (*commandConn, error) { host := flg.String("h", defaultHost, "host name of the Ser...
Update cmd/gmq-cli/command_conn.go
diff --git a/linkcheck/gui/options.py b/linkcheck/gui/options.py index <HASH>..<HASH> 100644 --- a/linkcheck/gui/options.py +++ b/linkcheck/gui/options.py @@ -37,19 +37,16 @@ class LinkCheckerOptions (QtGui.QDialog, Ui_Options): def reset (self): """Reset GUI and config options.""" - config = con...
Do not use configuration file options for GUI defaults.
diff --git a/src/test/java/org/scribe/examples/FacebookExample.java b/src/test/java/org/scribe/examples/FacebookExample.java index <HASH>..<HASH> 100644 --- a/src/test/java/org/scribe/examples/FacebookExample.java +++ b/src/test/java/org/scribe/examples/FacebookExample.java @@ -16,10 +16,13 @@ public class FacebookExam...
Explicited that you need a personal pair of keys to use Facebook's example
diff --git a/lib/geminabox_client.rb b/lib/geminabox_client.rb index <HASH>..<HASH> 100644 --- a/lib/geminabox_client.rb +++ b/lib/geminabox_client.rb @@ -10,6 +10,7 @@ class GeminaboxClient @http_client.set_auth(url_for(:upload), @username, @password) if @username or @password @http_client.www_auth.basic_aut...
Establish a larger send timeout. resolves #<I>
diff --git a/aiohue/config.py b/aiohue/config.py index <HASH>..<HASH> 100644 --- a/aiohue/config.py +++ b/aiohue/config.py @@ -14,6 +14,16 @@ class Config: return self.raw['name'] @property + def swversion(self): + """Software version of the bridge.""" + return self.raw['swversion'] + +...
Add swversion, modelid bridge (#<I>)
diff --git a/tests/unit/router-test.js b/tests/unit/router-test.js index <HASH>..<HASH> 100644 --- a/tests/unit/router-test.js +++ b/tests/unit/router-test.js @@ -6,8 +6,13 @@ var container, registry, router, originalTitle; module('router:main', { beforeEach: function() { originalTitle = document.title; - c...
Fix tests using `container._registry`. `container._registry` has been removed in <I>.
diff --git a/test/common/base/index.js b/test/common/base/index.js index <HASH>..<HASH> 100755 --- a/test/common/base/index.js +++ b/test/common/base/index.js @@ -274,6 +274,12 @@ describe('base', function () { }) }) + it('should be able to differentiate an empty array from an empty object', function () { + ...
Added test to demonstrate issue #<I>
diff --git a/src/nls/zh-cn/strings.js b/src/nls/zh-cn/strings.js index <HASH>..<HASH> 100644 --- a/src/nls/zh-cn/strings.js +++ b/src/nls/zh-cn/strings.js @@ -327,7 +327,7 @@ define({ "CMD_PREV_DOC" : "上一个文件", "CMD_SHOW_IN_TREE" : "在侧边栏显示", "CMD_SHOW_IN_EXPLORER"...
Update zh-cn translation. 1. No translation for 'Finder'. 2. Translate also 'Project Setting for...'.
diff --git a/lib/rest_pki/rest_pki_client.rb b/lib/rest_pki/rest_pki_client.rb index <HASH>..<HASH> 100644 --- a/lib/rest_pki/rest_pki_client.rb +++ b/lib/rest_pki/rest_pki_client.rb @@ -31,7 +31,7 @@ module RestPki response = nil begin - response = RestPki::Request.execute pa...
Fixed request method call on post request;
diff --git a/wafer/talks/models.py b/wafer/talks/models.py index <HASH>..<HASH> 100644 --- a/wafer/talks/models.py +++ b/wafer/talks/models.py @@ -113,9 +113,9 @@ class Talk(models.Model): talk_id = models.AutoField(primary_key=True) talk_type = models.ForeignKey( - TalkType, null=True, blank=True, o...
Use SET_NULL for Talk.talk_type and Talk.track so that talks are retained when these are deleted.
diff --git a/Tank/stepper/missile.py b/Tank/stepper/missile.py index <HASH>..<HASH> 100644 --- a/Tank/stepper/missile.py +++ b/Tank/stepper/missile.py @@ -127,7 +127,8 @@ class AmmoFileReader(object): fields = chunk_header.split() chunk_size = int(fields[0]) ...
inform about zero-sized chunk only once
diff --git a/jones/web.py b/jones/web.py index <HASH>..<HASH> 100644 --- a/jones/web.py +++ b/jones/web.py @@ -94,7 +94,7 @@ def service_create(env, jones): env = None return redirect(url_for( - 'service', service=jones.service, env=env)) + 'services', service=jones.service...
update "url_for" references.
diff --git a/src/index.js b/src/index.js index <HASH>..<HASH> 100644 --- a/src/index.js +++ b/src/index.js @@ -30,7 +30,11 @@ function parsePath (filePath) { function attachReporter (reporterFilePath) { // Assign the reporter if it's directly passed as an argument try { - reporter = require(reporterFi...
feat: accept reporters not only as filepath but as objects also
diff --git a/lib/airbrake-ruby/truncator.rb b/lib/airbrake-ruby/truncator.rb index <HASH>..<HASH> 100644 --- a/lib/airbrake-ruby/truncator.rb +++ b/lib/airbrake-ruby/truncator.rb @@ -25,11 +25,9 @@ module Airbrake # Performs deep truncation of arrays, hashes and sets. Uses a # placeholder for recursive object...
truncator: update comments for #truncate_object As pointed out by <URL>
diff --git a/pydle/utils/irccat.py b/pydle/utils/irccat.py index <HASH>..<HASH> 100644 --- a/pydle/utils/irccat.py +++ b/pydle/utils/irccat.py @@ -5,14 +5,11 @@ import sys import threading import logging -from .. import features -from .. import protocol - -from .. import featurize, __version__ +from .. import Clien...
Clean up irccat code a bit.
diff --git a/bin/whistle.js b/bin/whistle.js index <HASH>..<HASH> 100755 --- a/bin/whistle.js +++ b/bin/whistle.js @@ -105,7 +105,7 @@ program.setConfig({ program .option('-d, --debug', 'debug mode') - .option('-A, --ATS', 'generate iOS ATS Root CA') + .option('-A, --ATS', 'generate Root CA for iOS ATS (Node >=...
refactor: Refine cmd tips
diff --git a/modules/backend/database/migrations/2016_10_01_000009_Db_Backend_Timestamp_Fix.php b/modules/backend/database/migrations/2016_10_01_000009_Db_Backend_Timestamp_Fix.php index <HASH>..<HASH> 100644 --- a/modules/backend/database/migrations/2016_10_01_000009_Db_Backend_Timestamp_Fix.php +++ b/modules/backend/...
Stable prep: Reset the brand settings and backend prefs These have been restructured since RC version and so should be reset to avoid common bugs
diff --git a/config/application.php b/config/application.php index <HASH>..<HASH> 100644 --- a/config/application.php +++ b/config/application.php @@ -15,11 +15,7 @@ return array( * Session component */ 'session' => array( - 'handler' => 'sql', - 'options' => array( - 'connection' => 'mysql', - 'ta...
Replaced handler db to native one
diff --git a/xlog_examples_test.go b/xlog_examples_test.go index <HASH>..<HASH> 100644 --- a/xlog_examples_test.go +++ b/xlog_examples_test.go @@ -1,3 +1,5 @@ +// +build go1.7 + package xlog_test import (
Make example compile with go <I> only
diff --git a/jre_emul/android/libcore/luni/src/main/java/java/lang/ClassLoader.java b/jre_emul/android/libcore/luni/src/main/java/java/lang/ClassLoader.java index <HASH>..<HASH> 100644 --- a/jre_emul/android/libcore/luni/src/main/java/java/lang/ClassLoader.java +++ b/jre_emul/android/libcore/luni/src/main/java/java/lan...
Search for resource in [NSBundle allFrameworks] Previously ClassLoader.findResources finds resource in [NSBundle allBundles], which are non-framework bundles. With -allFrameworks we enable the use of dynamic frameworks.
diff --git a/tests/test_corpus.py b/tests/test_corpus.py index <HASH>..<HASH> 100644 --- a/tests/test_corpus.py +++ b/tests/test_corpus.py @@ -1349,7 +1349,7 @@ def test_dtm(corpora_en_serial_and_parallel_module, select, as_table, dtype, ret assert dtm.iloc[expected_labels.index('small1'), expected...
fixed problem in test_dtm
diff --git a/astroid/scoped_nodes.py b/astroid/scoped_nodes.py index <HASH>..<HASH> 100644 --- a/astroid/scoped_nodes.py +++ b/astroid/scoped_nodes.py @@ -452,19 +452,6 @@ class Module(LocalsDictNodeNG): It doesn't include the '__builtins__' name which is added by the current CPython implementation of...
Drop code that inspects sys.modules unconditionally, since it breaks the expectancy of a static analysis tool.
diff --git a/etcdserver/api/v2store/store.go b/etcdserver/api/v2store/store.go index <HASH>..<HASH> 100644 --- a/etcdserver/api/v2store/store.go +++ b/etcdserver/api/v2store/store.go @@ -747,7 +747,7 @@ func (s *store) SaveNoCopy() ([]byte, error) { } func (s *store) Clone() Store { - s.worldLock.Lock() + s.worldLo...
etcdserver: take read lock when cloning store
diff --git a/cutil/signals/signals.go b/cutil/signals/signals.go index <HASH>..<HASH> 100644 --- a/cutil/signals/signals.go +++ b/cutil/signals/signals.go @@ -70,9 +70,7 @@ func (h *Handler) GetState() int { } func (h *Handler) Reset() { - if !h.timer.Stop() { - <-h.timer.C - } + h.timer.Stop() } // Register s...
Bugfix - Remove not needed channel drain
diff --git a/lib/helper.js b/lib/helper.js index <HASH>..<HASH> 100644 --- a/lib/helper.js +++ b/lib/helper.js @@ -16,7 +16,7 @@ var delegate = require('dom-delegate'); */ module.exports = function(view) { - view.on('initialize', function() { + view.on('before initialize', function() { this.delegate = deleg...
Hook into `before initialize` event so that the delegate is available during `initialize` callback
diff --git a/django_afip/apps.py b/django_afip/apps.py index <HASH>..<HASH> 100644 --- a/django_afip/apps.py +++ b/django_afip/apps.py @@ -5,6 +5,7 @@ class AfipConfig(AppConfig): name = "django_afip" label = "afip" verbose_name = "AFIP" + default_auto_field = "django.db.models.AutoField" def r...
Avoid primary key issues in future Djangos
diff --git a/doc.go b/doc.go index <HASH>..<HASH> 100644 --- a/doc.go +++ b/doc.go @@ -27,15 +27,15 @@ Thus, to get a User with id 2: Key Specifications -src must be a S or *S for some struct type S. The key is extracted based on -various fields of S. If a field of type int64 or string has a struct tag -named goon...
Describe where keys are used since it's no longer clear
diff --git a/prometheus/registry.go b/prometheus/registry.go index <HASH>..<HASH> 100644 --- a/prometheus/registry.go +++ b/prometheus/registry.go @@ -266,7 +266,7 @@ func (r *Registry) Register(c Collector) error { descChan = make(chan *Desc, capDescChan) newDescIDs = map[uint64]struct{}{} n...
Minimal “fix” for hash collisions This makes the collisions a bit less likely by XOR'ing descIDs rather than adding them up for the collectorID.
diff --git a/contrib/mergeBenchmarkSets.py b/contrib/mergeBenchmarkSets.py index <HASH>..<HASH> 100755 --- a/contrib/mergeBenchmarkSets.py +++ b/contrib/mergeBenchmarkSets.py @@ -142,12 +142,13 @@ def main(argv=None): result.append(newColumn) witnessSet.pop(run) ...
Refactor control flow for setting new status according to witness; prefer unknown result over error result
diff --git a/notes/edit.php b/notes/edit.php index <HASH>..<HASH> 100644 --- a/notes/edit.php +++ b/notes/edit.php @@ -22,7 +22,7 @@ if ($noteid) { $userid = required_param('userid', PARAM_INT); $state = optional_param('publishstate', NOTES_STATE_PUBLIC, PARAM_ALPHA); - $note = new object(); + $n...
MDL-<I> switching to stdClass in /notes/
diff --git a/peer/peer.go b/peer/peer.go index <HASH>..<HASH> 100644 --- a/peer/peer.go +++ b/peer/peer.go @@ -5,6 +5,7 @@ import ( "encoding/hex" "encoding/json" "fmt" + "strings" b58 "github.com/jbenet/go-ipfs/Godeps/_workspace/src/github.com/jbenet/go-base58" ma "github.com/jbenet/go-ipfs/Godeps/_workspa...
Implemented @jbenet's suggestion to avoid panics if peerID is of length 0.
diff --git a/vendors.php b/vendors.php index <HASH>..<HASH> 100755 --- a/vendors.php +++ b/vendors.php @@ -40,8 +40,8 @@ foreach ($deps as $dep) { $installDir = $vendorDir.'/'.$name; if (!is_dir($installDir)) { - system(sprintf('git clone %s "%s"', $url, $installDir)); + system(sprintf('git cl...
Using escapeshellarg() instead of quotes
diff --git a/src/main/java/org/jfrog/hudson/release/scm/perforce/PerforceCoordinator.java b/src/main/java/org/jfrog/hudson/release/scm/perforce/PerforceCoordinator.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/jfrog/hudson/release/scm/perforce/PerforceCoordinator.java +++ b/src/main/java/org/jfrog/hudson/rel...
HAP-<I> - Support Perforce in release management
diff --git a/src/js/components/Select/Select.js b/src/js/components/Select/Select.js index <HASH>..<HASH> 100644 --- a/src/js/components/Select/Select.js +++ b/src/js/components/Select/Select.js @@ -83,7 +83,7 @@ const Select = forwardRef( const inputRef = useRef(); const formContext = useContext(FormContext)...
Changed Select to fix an issue with setting value with FormContext (#<I>)
diff --git a/lib/bud/viz.rb b/lib/bud/viz.rb index <HASH>..<HASH> 100644 --- a/lib/bud/viz.rb +++ b/lib/bud/viz.rb @@ -6,7 +6,7 @@ require 'set' class VizOnline #:nodoc: all attr_reader :logtab - META_TABLES = %w[t_cycle t_depends t_provides t_rules + META_TABLES = %w[t_cycle t_depends t_depends_tc t_provides t...
On second thought, reinstitute depends_tc. When the dependency analysis code is loaded, it is effectively a builtin table.
diff --git a/gyp/pylib/gyp/generator/make.py b/gyp/pylib/gyp/generator/make.py index <HASH>..<HASH> 100644 --- a/gyp/pylib/gyp/generator/make.py +++ b/gyp/pylib/gyp/generator/make.py @@ -1883,11 +1883,13 @@ $(obj).$(TOOLSET)/$(TARGET)/%%.o: $(obj)/%%%s FORCE_DO_CMD """Returns the location of the final output for a...
gyp: always install into $PRODUCT_DIR
diff --git a/lib/bud/rewrite.rb b/lib/bud/rewrite.rb index <HASH>..<HASH> 100644 --- a/lib/bud/rewrite.rb +++ b/lib/bud/rewrite.rb @@ -647,7 +647,7 @@ module ModuleRewriter # :nodoc: all def self.get_raw_parse_tree(klass) pt = RawParseTree.new(false) klassname = klass.name - klassname = klass.to_s if kl...
Tweak comment. Commented-out code should generally be avoided.
diff --git a/testing/test_git.py b/testing/test_git.py index <HASH>..<HASH> 100644 --- a/testing/test_git.py +++ b/testing/test_git.py @@ -414,7 +414,8 @@ def signed_commit_wd(tmp_path, monkeypatch, wd): """\ %no-protection %transient-key -Key-Type: default +Key-Type: RSA +Key-Length: 2048 Name-Real: a test...
Pick and configure an explicit `Key-Type` If the default `Key-Type` happens to be an ECC, then `Key-Curve` would be a required parameter, so let's just pick RSA<I> and be done with it.
diff --git a/Reminders/PasswordBroker.php b/Reminders/PasswordBroker.php index <HASH>..<HASH> 100755 --- a/Reminders/PasswordBroker.php +++ b/Reminders/PasswordBroker.php @@ -259,4 +259,14 @@ class PasswordBroker { return $this->getRequest()->input('password_confirmation'); } + /** + * Get the password reminder...
Added getRepository method to password broker.
diff --git a/UI/src/components/widgets/codeanalysis/view.js b/UI/src/components/widgets/codeanalysis/view.js index <HASH>..<HASH> 100644 --- a/UI/src/components/widgets/codeanalysis/view.js +++ b/UI/src/components/widgets/codeanalysis/view.js @@ -87,7 +87,7 @@ ctrl.securityIssues = [ get...
String spelling correction - "critcal" vs "critical"
diff --git a/chickpea/static/chickpea/js/leaflet.chickpea.features.js b/chickpea/static/chickpea/js/leaflet.chickpea.features.js index <HASH>..<HASH> 100644 --- a/chickpea/static/chickpea/js/leaflet.chickpea.features.js +++ b/chickpea/static/chickpea/js/leaflet.chickpea.features.js @@ -153,7 +153,7 @@ L.ChickpeaMarker ...
ChickpeaFeature has no prototype...
diff --git a/Entity/Translation.php b/Entity/Translation.php index <HASH>..<HASH> 100644 --- a/Entity/Translation.php +++ b/Entity/Translation.php @@ -6,9 +6,15 @@ namespace Bundle\DoctrineExtensionsBundle\Entity; * Bundle\DoctrineExtensionsBundle\Entity\Translation * * @orm:Entity(repositoryClass="Gedmo\Translat...
Updated indexes to match the latest update of the vendor
diff --git a/lib/src/main/java/com/github/kevinsawicki/http/HttpRequest.java b/lib/src/main/java/com/github/kevinsawicki/http/HttpRequest.java index <HASH>..<HASH> 100644 --- a/lib/src/main/java/com/github/kevinsawicki/http/HttpRequest.java +++ b/lib/src/main/java/com/github/kevinsawicki/http/HttpRequest.java @@ -710,6...
Add toString implementation that includes URL and method
diff --git a/eZ/Publish/API/Repository/Values/Content/URLWildcard.php b/eZ/Publish/API/Repository/Values/Content/URLWildcard.php index <HASH>..<HASH> 100644 --- a/eZ/Publish/API/Repository/Values/Content/URLWildcard.php +++ b/eZ/Publish/API/Repository/Values/Content/URLWildcard.php @@ -22,7 +22,7 @@ use eZ\Publish\API\...
Fixed: Typo in property name.
diff --git a/app/controllers/neighborly/balanced/bankaccount/accounts_controller.rb b/app/controllers/neighborly/balanced/bankaccount/accounts_controller.rb index <HASH>..<HASH> 100644 --- a/app/controllers/neighborly/balanced/bankaccount/accounts_controller.rb +++ b/app/controllers/neighborly/balanced/bankaccount/acco...
Move prepare_new_view to new method
diff --git a/nameko/testing/services.py b/nameko/testing/services.py index <HASH>..<HASH> 100644 --- a/nameko/testing/services.py +++ b/nameko/testing/services.py @@ -7,7 +7,7 @@ from contextlib import contextmanager import inspect from eventlet import event -from mock import Mock +from mock import MagicMock fro...
use magicmocks for replacement injections
diff --git a/src/CustomElements.php b/src/CustomElements.php index <HASH>..<HASH> 100644 --- a/src/CustomElements.php +++ b/src/CustomElements.php @@ -642,6 +642,12 @@ class CustomElements } } + if ($fieldConfig['inputType'] === 'pageTree' || $fieldConfig['inputType'] === 'fileTree') { + if (!isset($fie...
Fixed bug with missing fieldType for pageTree
diff --git a/docs/source/conf.py b/docs/source/conf.py index <HASH>..<HASH> 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -14,16 +14,12 @@ import os import sys -import unittest.mock - -MOCK_MODULES = ['lxml'] -for mod_name in MOCK_MODULES: - sys.modules[mod_name] = unittest.mock.Mock() - # If ex...
Reworked doc generation to fix newly occurring autodoc problem.
diff --git a/converters/toZigbee.js b/converters/toZigbee.js index <HASH>..<HASH> 100644 --- a/converters/toZigbee.js +++ b/converters/toZigbee.js @@ -859,6 +859,7 @@ const converters = { state = meta.message.state = brightness === 0 ? 'off' : 'on'; } + let publishBrightness =...
Publish brightness 0 when explicitly requested (#<I>) Not sure this is even technically a valid value but whatever. Koenkk/zigbee2mqtt#<I>
diff --git a/tools/docker/phd_base_tf_cpu/tests/tf_test.py b/tools/docker/phd_base_tf_cpu/tests/tf_test.py index <HASH>..<HASH> 100644 --- a/tools/docker/phd_base_tf_cpu/tests/tf_test.py +++ b/tools/docker/phd_base_tf_cpu/tests/tf_test.py @@ -1,4 +1,5 @@ """Test that Tensorflow works.""" +import site import sys fr...
Fix Tensorflow support in docker images. Signed-off-by: format <I> <github.com/ChrisCummins/format>
diff --git a/lib/rapns.rb b/lib/rapns.rb index <HASH>..<HASH> 100644 --- a/lib/rapns.rb +++ b/lib/rapns.rb @@ -17,7 +17,6 @@ require 'rapns/upgraded' require 'rapns/apns/binary_notification_validator' require 'rapns/apns/device_token_format_validator' -require 'rapns/apns/required_fields_validator' require 'rapns/...
don't require a deleted file (ileitch/rapns#<I>)