diff
stringlengths
65
26.7k
message
stringlengths
7
9.92k
diff --git a/src/promise.js b/src/promise.js index <HASH>..<HASH> 100644 --- a/src/promise.js +++ b/src/promise.js @@ -4,6 +4,11 @@ var $$iterator, ArrayIteratorPrototype; + // don't trample native promises if they exist + if ( 'Promise' in global && typeof global.Promise.all === 'function' ) { + return; + ...
Don't trample native Promise if it exists
diff --git a/src/run.py b/src/run.py index <HASH>..<HASH> 100644 --- a/src/run.py +++ b/src/run.py @@ -16,7 +16,7 @@ import rnn_ctc #import datasets.kunwinjku #import datasets.timit #import datasets.japhug -import datasets.babel +#import datasets.babel from corpus_reader import CorpusReader
Removed Babel import to run.
diff --git a/src/test/java/org/mockito/internal/exceptions/stacktrace/StackTraceFilterTest.java b/src/test/java/org/mockito/internal/exceptions/stacktrace/StackTraceFilterTest.java index <HASH>..<HASH> 100644 --- a/src/test/java/org/mockito/internal/exceptions/stacktrace/StackTraceFilterTest.java +++ b/src/test/java/or...
Add test for removal of ByteBuddy stacktrace elements
diff --git a/src/SilexCMS/Set/DataSet.php b/src/SilexCMS/Set/DataSet.php index <HASH>..<HASH> 100644 --- a/src/SilexCMS/Set/DataSet.php +++ b/src/SilexCMS/Set/DataSet.php @@ -37,7 +37,7 @@ class DataSet implements ServiceProviderInterface public function filter(Response $resp) { if ($resp instanceof ...
Fixes a variable name (again)
diff --git a/app/models/resource.rb b/app/models/resource.rb index <HASH>..<HASH> 100644 --- a/app/models/resource.rb +++ b/app/models/resource.rb @@ -9,6 +9,8 @@ class Resource < ActiveRecord::Base def write_to_disk(up) begin + # create the public/files dir if it doesn't exist + FileUtils.mkdir(f...
Fix resource upload when dir doesn't exist. (closes #<I>) git-svn-id: <URL>
diff --git a/src/middleware/api.js b/src/middleware/api.js index <HASH>..<HASH> 100644 --- a/src/middleware/api.js +++ b/src/middleware/api.js @@ -1,5 +1,6 @@ import axios from 'axios' -import { canUseDOM } from 'fbjs/lib/ExecutionEnvironment'; +import { canUseDOM } from 'fbjs/lib/ExecutionEnvironment' +import invaria...
use invariant to assert state shape in middleware
diff --git a/distributed/src/test/java/com/orientechnologies/orient/server/distributed/DistributedSecurityTest.java b/distributed/src/test/java/com/orientechnologies/orient/server/distributed/DistributedSecurityTest.java index <HASH>..<HASH> 100755 --- a/distributed/src/test/java/com/orientechnologies/orient/server/dis...
Fixed test case according to the restricted visibility of reader/writer on OUser class/cluster
diff --git a/mbdata/replication.py b/mbdata/replication.py index <HASH>..<HASH> 100644 --- a/mbdata/replication.py +++ b/mbdata/replication.py @@ -245,7 +245,7 @@ def load_tar(filename, db, config, ignored_schemas, ignored_tables): logger.info("Skipping %s (table %s already contains data)", name, fulltable...
Make the changes compatible with python2
diff --git a/example/api.py b/example/api.py index <HASH>..<HASH> 100644 --- a/example/api.py +++ b/example/api.py @@ -1,4 +1,4 @@ -from flaskext.rest import RestAPI, RestResource, UserAuthentication +from flaskext.rest import RestAPI, RestResource, UserAuthentication, AdminAuthentication, RestrictOwnerResource from...
Cleaning up the example app's API
diff --git a/blimpy/file_wrapper.py b/blimpy/file_wrapper.py index <HASH>..<HASH> 100644 --- a/blimpy/file_wrapper.py +++ b/blimpy/file_wrapper.py @@ -9,7 +9,10 @@ import h5py from astropy.coordinates import Angle -from . import sigproc +try: + from . import sigproc +except: + import sigproc # import pdb;...
Removing unused imports and adding fail-over for non-package usage
diff --git a/src/main/java/com/hubspot/jinjava/lib/tag/SetTag.java b/src/main/java/com/hubspot/jinjava/lib/tag/SetTag.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/hubspot/jinjava/lib/tag/SetTag.java +++ b/src/main/java/com/hubspot/jinjava/lib/tag/SetTag.java @@ -64,6 +64,13 @@ import org.apache.commons.lang...
Add code snippet for set block
diff --git a/core/IP.php b/core/IP.php index <HASH>..<HASH> 100644 --- a/core/IP.php +++ b/core/IP.php @@ -83,6 +83,9 @@ class IP // examine proxy headers foreach ($proxyHeaders as $proxyHeader) { if (!empty($_SERVER[$proxyHeader])) { + // this may be buggy if someone has p...
refs #<I> added a comment that this code may be buggy
diff --git a/tests/utils.py b/tests/utils.py index <HASH>..<HASH> 100644 --- a/tests/utils.py +++ b/tests/utils.py @@ -14,6 +14,9 @@ # Yoda. If not, see <http://www.gnu.org/licenses/gpl-3.0.html>. import mock +import os +import shutil + from mock import Mock from mock import MagicMock from yoda import Config @@ ...
Added Sandbox utility for tests.
diff --git a/girder/api/v1/system.py b/girder/api/v1/system.py index <HASH>..<HASH> 100644 --- a/girder/api/v1/system.py +++ b/girder/api/v1/system.py @@ -411,7 +411,8 @@ class System(Resource): models = ['folder', 'item'] steps = sum(self.model(model).find().count() for model in models) prog...
Include Step N of 3 in progress message
diff --git a/lib/carapace.js b/lib/carapace.js index <HASH>..<HASH> 100644 --- a/lib/carapace.js +++ b/lib/carapace.js @@ -14,6 +14,9 @@ var events = require('eventemitter2'), evref = require('../build/default/evref'); module.exports = carapace = new events.EventEmitter2(); +for (var k in carapace) { + car...
[fix] reset the prototype methods to be directly on carapace so dnode picks them up
diff --git a/src/main/php/response/Headers.php b/src/main/php/response/Headers.php index <HASH>..<HASH> 100644 --- a/src/main/php/response/Headers.php +++ b/src/main/php/response/Headers.php @@ -87,6 +87,8 @@ class Headers implements \IteratorAggregate /** * checks if header with given name is present ...
add note about case sensitivity of header names
diff --git a/p2p/protocol/internal/circuitv1-deprecated/relay.go b/p2p/protocol/internal/circuitv1-deprecated/relay.go index <HASH>..<HASH> 100644 --- a/p2p/protocol/internal/circuitv1-deprecated/relay.go +++ b/p2p/protocol/internal/circuitv1-deprecated/relay.go @@ -107,12 +107,12 @@ func (r *Relay) rmLiveHop(from, to ...
Only decrement hop counter when actually removing live hop
diff --git a/lib/gir_ffi/builder/type/object.rb b/lib/gir_ffi/builder/type/object.rb index <HASH>..<HASH> 100644 --- a/lib/gir_ffi/builder/type/object.rb +++ b/lib/gir_ffi/builder/type/object.rb @@ -83,6 +83,7 @@ module GirFFI @klass.class_eval builder.setter_def end + # TODO: Guard agains ...
Move a FIXME to a TODO in the right location
diff --git a/application/setup.py b/application/setup.py index <HASH>..<HASH> 100644 --- a/application/setup.py +++ b/application/setup.py @@ -42,6 +42,7 @@ setup( 'python-gnupg', 'repoze.xmliter', 'Paste', + 'watchdog', ], extras_require={ 'development': [
we (apparently) now require the watchdog module
diff --git a/packages/core/renderers/bolt-base.js b/packages/core/renderers/bolt-base.js index <HASH>..<HASH> 100644 --- a/packages/core/renderers/bolt-base.js +++ b/packages/core/renderers/bolt-base.js @@ -15,14 +15,6 @@ export function BoltBase(Base = HTMLElement) { if (!this.slots) { this.setupSlots(...
refactor: remove auto `updated()` call in component's connected callback — fixes issue with components using context not always having data available initially
diff --git a/lib/gitlog-md/version.rb b/lib/gitlog-md/version.rb index <HASH>..<HASH> 100644 --- a/lib/gitlog-md/version.rb +++ b/lib/gitlog-md/version.rb @@ -1,5 +1,5 @@ module GitlogMD module Version - STRING = '0.0.2' + STRING = '0.0.3' end end
(GEM) update gitlog-md version to <I>
diff --git a/tests/test_debuglink.py b/tests/test_debuglink.py index <HASH>..<HASH> 100644 --- a/tests/test_debuglink.py +++ b/tests/test_debuglink.py @@ -9,9 +9,12 @@ from trezorlib.client import PinException class TestDebugLink(common.TrezorTest): + # disable for now + """ def test_layout(self): ...
disable layout retrieval in debuglink for now
diff --git a/vsphere/virtual_machine_config_structure.go b/vsphere/virtual_machine_config_structure.go index <HASH>..<HASH> 100644 --- a/vsphere/virtual_machine_config_structure.go +++ b/vsphere/virtual_machine_config_structure.go @@ -540,6 +540,11 @@ func flattenExtraConfig(d *schema.ResourceData, opts []types.BaseOpt...
Reboot required for change in vApp config
diff --git a/kubernetes/check.py b/kubernetes/check.py index <HASH>..<HASH> 100644 --- a/kubernetes/check.py +++ b/kubernetes/check.py @@ -372,7 +372,6 @@ class Kubernetes(AgentCheck): self.publish_gauge(self, '{}.{}.limits'.format(NAMESPACE, limit), values[0], _tags) except (K...
[kubernetes] Remove debug log lines (#<I>) Those logs line can leak sensitive data. We should not log them.
diff --git a/lib/sshkit/backends/abstract.rb b/lib/sshkit/backends/abstract.rb index <HASH>..<HASH> 100644 --- a/lib/sshkit/backends/abstract.rb +++ b/lib/sshkit/backends/abstract.rb @@ -127,6 +127,12 @@ module SSHKit end end + # Backends which extend the Abstract backend should implement the fol...
Added stub implementations for abstract methods on Abstract backend Stub methods throw MethodUnavailableError to be consistent with previous behaviour
diff --git a/lib/ffmpeg/movie.rb b/lib/ffmpeg/movie.rb index <HASH>..<HASH> 100644 --- a/lib/ffmpeg/movie.rb +++ b/lib/ffmpeg/movie.rb @@ -114,7 +114,7 @@ module FFMPEG end def calculated_aspect_ratio - aspect_from_dar || aspect_from_dimensions + aspect_from_dimensions end def calculat...
Ignore DAR when calculating dimensions
diff --git a/lib/beaker-pe/install/pe_utils.rb b/lib/beaker-pe/install/pe_utils.rb index <HASH>..<HASH> 100644 --- a/lib/beaker-pe/install/pe_utils.rb +++ b/lib/beaker-pe/install/pe_utils.rb @@ -111,8 +111,8 @@ module Beaker pe_debug = host[:pe_debug] || opts[:pe_debug] ? ' -D' : '' pe_cmd = ...
(PE-<I>) Change -f option to -y Prior to this commit I was using the `-f` option in the installer, now it is `-y`. For more information, see <URL>
diff --git a/tests/resources/conf.py b/tests/resources/conf.py index <HASH>..<HASH> 100644 --- a/tests/resources/conf.py +++ b/tests/resources/conf.py @@ -28,13 +28,17 @@ use os.path.abspath to make it absolute, like shown here. import sys +import os + +sys.path.insert(0, os.path.abspath('..')) + import semanti...
updated conf.py expected output.
diff --git a/ELiDE/layout.py b/ELiDE/layout.py index <HASH>..<HASH> 100644 --- a/ELiDE/layout.py +++ b/ELiDE/layout.py @@ -60,14 +60,14 @@ class ELiDELayout(FloatLayout): d = arr.destination.name self.board.remove_widget(arr) del self.board.arrow[o][d] - del self.board....
let LiSE decide how best to delete an entity
diff --git a/addon/mixins/in-viewport.js b/addon/mixins/in-viewport.js index <HASH>..<HASH> 100644 --- a/addon/mixins/in-viewport.js +++ b/addon/mixins/in-viewport.js @@ -107,7 +107,7 @@ export default Mixin.create({ this.intersectionObserver = new IntersectionObserver(bind(this, this._onIntersection), options);...
update rafLogic for scrollable area (#<I>)
diff --git a/lib/mongo/monitoring/command_log_subscriber.rb b/lib/mongo/monitoring/command_log_subscriber.rb index <HASH>..<HASH> 100644 --- a/lib/mongo/monitoring/command_log_subscriber.rb +++ b/lib/mongo/monitoring/command_log_subscriber.rb @@ -53,7 +53,9 @@ module Mongo # # @since 2.1.0 def star...
RUBY-<I>: Improve performance on log subscriber
diff --git a/lib/stack_tracy/sinatra.rb b/lib/stack_tracy/sinatra.rb index <HASH>..<HASH> 100644 --- a/lib/stack_tracy/sinatra.rb +++ b/lib/stack_tracy/sinatra.rb @@ -10,10 +10,9 @@ module StackTracy def call(env) request = ::Sinatra::Request.new env - if request.path.match /^\/tracy-?(.*)?/ - ...
Improved StackTracy::Sinatra middleware a bit regarding the `/tracy` route
diff --git a/ui/src/components/layout/QDrawer.js b/ui/src/components/layout/QDrawer.js index <HASH>..<HASH> 100644 --- a/ui/src/components/layout/QDrawer.js +++ b/ui/src/components/layout/QDrawer.js @@ -88,7 +88,7 @@ export default Vue.extend({ belowBreakpoint, showing: this.showIfAbove === true && belowB...
fix(QDrawer): backdrop not initialized correctly due to faulty "showing" value #<I>
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -81,9 +81,12 @@ module.exports = klass.extend({ } } }, + promise : function(fn){ + return promise.create(fn) + }, load : function(){ var req = this - return promise.create(function(resolve, rejec...
custom promises & http methods shorthands
diff --git a/packages/react-atlas-core/src/checkbox/Checkbox.js b/packages/react-atlas-core/src/checkbox/Checkbox.js index <HASH>..<HASH> 100644 --- a/packages/react-atlas-core/src/checkbox/Checkbox.js +++ b/packages/react-atlas-core/src/checkbox/Checkbox.js @@ -23,7 +23,10 @@ class Checkbox extends React.PureComponent...
Pass event and data object to onClick handler.
diff --git a/MySQLdb/connections.py b/MySQLdb/connections.py index <HASH>..<HASH> 100644 --- a/MySQLdb/connections.py +++ b/MySQLdb/connections.py @@ -140,7 +140,9 @@ class Connection(_mysql.connection): integer, non-zero enables LOAD LOCAL INFILE; zero disables autocommit + If False (def...
autocommit=None means using server default.
diff --git a/lib/dataset.js b/lib/dataset.js index <HASH>..<HASH> 100644 --- a/lib/dataset.js +++ b/lib/dataset.js @@ -695,10 +695,8 @@ TextS3File.prototype.iterate = function (task, p, pipeline, done) { task.log('stream s3', this.bucket, this.path); if (this.options.parquet || this.path.slice(-8) === '.parquet')...
textFile: Fix handling of gzipped files in local filesystem The returned stream was operating on the compressed data instead ofs uncompressed.
diff --git a/modules/piperename.py b/modules/piperename.py index <HASH>..<HASH> 100644 --- a/modules/piperename.py +++ b/modules/piperename.py @@ -27,8 +27,11 @@ def pipe_rename(context, _INPUT, conf, **kwargs): for item in _INPUT: for rule in rules: - item[rule[2]] = item[rule[1]] + ...
Allow dot notation to map to nested dictionaries
diff --git a/heater.go b/heater.go index <HASH>..<HASH> 100644 --- a/heater.go +++ b/heater.go @@ -162,6 +162,9 @@ func (h *Heater) getTarget(val *Value) { } func (h *Heater) readTemperature(msg *Message) { + if msg.Name != "temperature" { + return + } temp, ok := msg.Value.ToFloat() if ok { h.currentTemp =...
fixed heater bug it was reading any update to use as its temperature
diff --git a/lib/mongoid/components.rb b/lib/mongoid/components.rb index <HASH>..<HASH> 100644 --- a/lib/mongoid/components.rb +++ b/lib/mongoid/components.rb @@ -84,7 +84,7 @@ module Mongoid #:nodoc def prohibited_methods @prohibited_methods ||= MODULES.inject([]) do |methods, mod| methods.t...
Checking field collisions should work on <I>.x
diff --git a/test/src/test/java/hudson/tasks/ArtifactArchiverTest.java b/test/src/test/java/hudson/tasks/ArtifactArchiverTest.java index <HASH>..<HASH> 100644 --- a/test/src/test/java/hudson/tasks/ArtifactArchiverTest.java +++ b/test/src/test/java/hudson/tasks/ArtifactArchiverTest.java @@ -37,6 +37,7 @@ import hudson.t...
Also checking DirectoryBrowserSupport behavior, as in DirectoryBrowserSupportTest.
diff --git a/src/access.js b/src/access.js index <HASH>..<HASH> 100644 --- a/src/access.js +++ b/src/access.js @@ -89,18 +89,28 @@ } }; + Object.defineProperty(RemoteStorage.prototype, 'access', { + get: function() { + var access = new RemoteStorage.Access(); + Object.defineProperty(RemoteStorag...
have remoteStorage.claimAccess and remoteStorage.access always defined
diff --git a/spec/generators/rails/mobility/install_generator_spec.rb b/spec/generators/rails/mobility/install_generator_spec.rb index <HASH>..<HASH> 100644 --- a/spec/generators/rails/mobility/install_generator_spec.rb +++ b/spec/generators/rails/mobility/install_generator_spec.rb @@ -1,8 +1,6 @@ require "spec_helper...
Remove unnecessary break in install generator spec
diff --git a/example/keyboard/main.go b/example/keyboard/main.go index <HASH>..<HASH> 100644 --- a/example/keyboard/main.go +++ b/example/keyboard/main.go @@ -30,13 +30,14 @@ const ( // TODO: Add Key.String() by stringer var keyNames = map[ebiten.Key]string{ - ebiten.KeyComma: "','", - ebiten.KeyDelete: "Delete", ...
Bug fix: Add 'backspace' to example/keyboard
diff --git a/core/block_validator.go b/core/block_validator.go index <HASH>..<HASH> 100644 --- a/core/block_validator.go +++ b/core/block_validator.go @@ -89,7 +89,7 @@ func (v *BlockValidator) ValidateState(block *types.Block, statedb *state.StateD if rbloom != header.Bloom { return fmt.Errorf("invalid bloom (rem...
core: fix a typo in comment (#<I>)
diff --git a/openstack_dashboard/utils/settings.py b/openstack_dashboard/utils/settings.py index <HASH>..<HASH> 100644 --- a/openstack_dashboard/utils/settings.py +++ b/openstack_dashboard/utils/settings.py @@ -117,7 +117,7 @@ def update_dashboards(modules, horizon_config, installed_apps): horizon_config['panel_...
Permit 'exceptions' to be omitted from HORIZON_CONFIG Without this change, if HORIZON_CONFIG is defined in local_settings.py and does not have an 'exceptions' entry, then horizon throws and exception and fails to start. Change-Id: I<I>f<I>d1c<I>ac<I>bdcc<I>d5acb2a0b<I> Closes-Bug: #<I>
diff --git a/hypermap/aggregator/models.py b/hypermap/aggregator/models.py index <HASH>..<HASH> 100644 --- a/hypermap/aggregator/models.py +++ b/hypermap/aggregator/models.py @@ -244,7 +244,7 @@ class Layer(Resource): elif self.service.type == 'WM': # we use the geoserver virtual layer getcapabili...
Now doing getmap with username and password in WM layer, this way we get valid checks and thumbnails for private layers
diff --git a/QUANTAXIS/QAARP/QARisk.py b/QUANTAXIS/QAARP/QARisk.py index <HASH>..<HASH> 100755 --- a/QUANTAXIS/QAARP/QARisk.py +++ b/QUANTAXIS/QAARP/QARisk.py @@ -48,13 +48,15 @@ class QA_Risk(): self.fetch = {MARKET_TYPE.STOCK_CN: QA_fetch_stock_day_adv, MARKET_TYPE.INDEX_CN: QA_fetch_i...
#fix bug for @lru_cache()
diff --git a/src/Aspect/ContractCheckerAspect.php b/src/Aspect/ContractCheckerAspect.php index <HASH>..<HASH> 100644 --- a/src/Aspect/ContractCheckerAspect.php +++ b/src/Aspect/ContractCheckerAspect.php @@ -34,7 +34,6 @@ class ContractCheckerAspect implements Aspect /** * Default constructor * - * ...
Clean todos from the source code
diff --git a/server/webapp/WEB-INF/rails/spec/webpack/views/agents/agents_widget_spec.js b/server/webapp/WEB-INF/rails/spec/webpack/views/agents/agents_widget_spec.js index <HASH>..<HASH> 100644 --- a/server/webapp/WEB-INF/rails/spec/webpack/views/agents/agents_widget_spec.js +++ b/server/webapp/WEB-INF/rails/spec/webp...
Attempt to fix flaky Agents Spec
diff --git a/lib/simple_form/components/hints.rb b/lib/simple_form/components/hints.rb index <HASH>..<HASH> 100644 --- a/lib/simple_form/components/hints.rb +++ b/lib/simple_form/components/hints.rb @@ -3,12 +3,16 @@ module SimpleForm # Needs to be enabled in order to do automatic lookups. module Hints ...
Use similar api for hints and errors, and cache hint to avoid double lookup
diff --git a/lib/s3repo/base.rb b/lib/s3repo/base.rb index <HASH>..<HASH> 100644 --- a/lib/s3repo/base.rb +++ b/lib/s3repo/base.rb @@ -10,7 +10,7 @@ module S3Repo def bucket @bucket ||= @options[:bucket] || ENV['S3_BUCKET'] - fail('No bucket given') unless bucket + fail('No bucket given') unless...
such loop, very recurse
diff --git a/openquake/hazardlib/gsim/base.py b/openquake/hazardlib/gsim/base.py index <HASH>..<HASH> 100644 --- a/openquake/hazardlib/gsim/base.py +++ b/openquake/hazardlib/gsim/base.py @@ -250,7 +250,8 @@ class ContextMaker(object): :param truncnorm: an instance of scipy.stats.truncnorm :param epsil...
Improved docstring [skip CI]
diff --git a/cmd/torrent-metainfo-pprint/main.go b/cmd/torrent-metainfo-pprint/main.go index <HASH>..<HASH> 100644 --- a/cmd/torrent-metainfo-pprint/main.go +++ b/cmd/torrent-metainfo-pprint/main.go @@ -47,6 +47,9 @@ func processReader(r io.Reader) error { "AnnounceList": metainfo.AnnounceList, "UrlList": me...
torrent-metainfo-pprint: include the 'nodes' field into the output when non-empty
diff --git a/zipline/utils/factory.py b/zipline/utils/factory.py index <HASH>..<HASH> 100644 --- a/zipline/utils/factory.py +++ b/zipline/utils/factory.py @@ -43,12 +43,6 @@ def data_path(): return data_path -def logger_path(): - import zipline - log_path = dirname(abspath(zipline.__file__)) - return ...
Removes unused log_path method.
diff --git a/Minimal-J/src/main/java/org/minimalj/backend/db/AbstractTable.java b/Minimal-J/src/main/java/org/minimalj/backend/db/AbstractTable.java index <HASH>..<HASH> 100644 --- a/Minimal-J/src/main/java/org/minimalj/backend/db/AbstractTable.java +++ b/Minimal-J/src/main/java/org/minimalj/backend/db/AbstractTable.ja...
AbstractTable: no relations for Codes
diff --git a/src/main/java/edu/jhu/prim/vector/LongDoubleDenseVector.java b/src/main/java/edu/jhu/prim/vector/LongDoubleDenseVector.java index <HASH>..<HASH> 100644 --- a/src/main/java/edu/jhu/prim/vector/LongDoubleDenseVector.java +++ b/src/main/java/edu/jhu/prim/vector/LongDoubleDenseVector.java @@ -112,9 +112,7 @@ p...
Switching dense vectors to call their sparse vector's implementation of dot.
diff --git a/tests/digitalocean/models/compute/servers_tests.rb b/tests/digitalocean/models/compute/servers_tests.rb index <HASH>..<HASH> 100644 --- a/tests/digitalocean/models/compute/servers_tests.rb +++ b/tests/digitalocean/models/compute/servers_tests.rb @@ -8,6 +8,9 @@ Shindo.tests('Fog::Compute[:digitalocean] | s...
[DigitalOcean] Skip consistently timing out tests The server tests in digital ocean have been frequently timing out. * <URL>
diff --git a/pyzmp/node.py b/pyzmp/node.py index <HASH>..<HASH> 100644 --- a/pyzmp/node.py +++ b/pyzmp/node.py @@ -426,13 +426,15 @@ class Node(object): # Starting the clock start = time.time() - # signalling startup only the first time - self.started.set() - ...
signaling node start after checking for exit request, to guarantee at least one call to update.
diff --git a/src/resources/views/corporation/starbase/status-tab.blade.php b/src/resources/views/corporation/starbase/status-tab.blade.php index <HASH>..<HASH> 100644 --- a/src/resources/views/corporation/starbase/status-tab.blade.php +++ b/src/resources/views/corporation/starbase/status-tab.blade.php @@ -230,10 +230,1...
Fix for offline POS (#<I>)
diff --git a/contribs/gmf/apps/desktop_alt/js/controller.js b/contribs/gmf/apps/desktop_alt/js/controller.js index <HASH>..<HASH> 100644 --- a/contribs/gmf/apps/desktop_alt/js/controller.js +++ b/contribs/gmf/apps/desktop_alt/js/controller.js @@ -99,6 +99,12 @@ app.AlternativeDesktopController = function($scope, $injec...
Mark merged layer label as translatable
diff --git a/lib/cli.js b/lib/cli.js index <HASH>..<HASH> 100644 --- a/lib/cli.js +++ b/lib/cli.js @@ -80,7 +80,6 @@ module.exports = function (options) { var slap = new Slap(opts); Promise.all(opts._.map(function (path, i) { - slap.fileBrowser.refresh(path, _.noop); return slap.open(path.toStri...
fix(slap): fix bug when given 'path/to/dir', slap opens the given directory instead of throwing an error EISDIR.
diff --git a/lib/makewcs.py b/lib/makewcs.py index <HASH>..<HASH> 100644 --- a/lib/makewcs.py +++ b/lib/makewcs.py @@ -80,7 +80,7 @@ PARITY = {'WFC':[[1.0,0.0],[0.0,-1.0]],'HRC':[[-1.0,0.0],[0.0,1.0]], NUM_PER_EXTN = {'ACS':3,'WFPC2':1,'STIS':3,'NICMOS':5, 'WFC3':3} -__version__ = '1.1.6 (19 May 2010)' +__version_...
Updates to 'pydrizzle' and 'pytools' to correct the problem seen in processing binned WFC3 images, where the chips are over <I> pixels apart instead of just <I> (for binaxis=3). The SIP coefficients may still not be quite correct for binned data, though, but these fixes correctly mosaic binned WFC3/UVIS images. WJH ...
diff --git a/lib/deliver/deliver_process.rb b/lib/deliver/deliver_process.rb index <HASH>..<HASH> 100644 --- a/lib/deliver/deliver_process.rb +++ b/lib/deliver/deliver_process.rb @@ -142,6 +142,11 @@ module Deliver def set_screenshots screens_path = @deploy_information[Deliverer::ValKey::SCREENSHOTS_PATH]...
Added overwriting of screenshots path using environment for fastlane
diff --git a/src/Composer/Downloader/FileDownloader.php b/src/Composer/Downloader/FileDownloader.php index <HASH>..<HASH> 100644 --- a/src/Composer/Downloader/FileDownloader.php +++ b/src/Composer/Downloader/FileDownloader.php @@ -106,8 +106,8 @@ class FileDownloader implements DownloaderInterface ...
Also try authenticating on github for <I> responses
diff --git a/test/util/compareDirectories.js b/test/util/compareDirectories.js index <HASH>..<HASH> 100644 --- a/test/util/compareDirectories.js +++ b/test/util/compareDirectories.js @@ -47,6 +47,9 @@ module.exports = function(dirA, dirB, cb) { filename = inBoth[i]; typeA = metadataA[filename].type; ...
fix tests (for real) sorry, only tested on win, but linux handles things differently
diff --git a/lib/Loader.php b/lib/Loader.php index <HASH>..<HASH> 100644 --- a/lib/Loader.php +++ b/lib/Loader.php @@ -107,7 +107,7 @@ abstract class Loader implements LoaderInterface } /** - * @param $input + * @param string $input * @return array|string */ protected function conve...
Scrutinizer Auto-Fixes This commit consists of patches automatically generated for this project on <URL>
diff --git a/zsl/resource/model_resource.py b/zsl/resource/model_resource.py index <HASH>..<HASH> 100644 --- a/zsl/resource/model_resource.py +++ b/zsl/resource/model_resource.py @@ -94,6 +94,7 @@ class ResourceQueryContext(object): self._data = data # test if params is a list + # TODO: repla...
Add todo comment to questionable code
diff --git a/library/src/com/WazaBe/HoloEverywhere/widget/NumberPicker.java b/library/src/com/WazaBe/HoloEverywhere/widget/NumberPicker.java index <HASH>..<HASH> 100644 --- a/library/src/com/WazaBe/HoloEverywhere/widget/NumberPicker.java +++ b/library/src/com/WazaBe/HoloEverywhere/widget/NumberPicker.java @@ -414,7 +41...
Fix crashing with using NumberPicker
diff --git a/Kwf/Rest/Controller/Model.php b/Kwf/Rest/Controller/Model.php index <HASH>..<HASH> 100644 --- a/Kwf/Rest/Controller/Model.php +++ b/Kwf/Rest/Controller/Model.php @@ -190,6 +190,8 @@ class Kwf_Rest_Controller_Model extends Zend_Rest_Controller $this->_fillRowInsert($row, $data); $this->_be...
Rest API: add afterUpdate/Insert/Save methods that can be overridden to implement custom logic
diff --git a/maven-plugin/src/main/java/io/codearte/accurest/maven/GenerateTestsMojo.java b/maven-plugin/src/main/java/io/codearte/accurest/maven/GenerateTestsMojo.java index <HASH>..<HASH> 100644 --- a/maven-plugin/src/main/java/io/codearte/accurest/maven/GenerateTestsMojo.java +++ b/maven-plugin/src/main/java/io/code...
added nameSuffixForTests
diff --git a/mixbox/namespaces.py b/mixbox/namespaces.py index <HASH>..<HASH> 100644 --- a/mixbox/namespaces.py +++ b/mixbox/namespaces.py @@ -9,10 +9,20 @@ import copy from mixbox.vendor import six -# A convenience class which represents simplified XML namespace info, consisting -# of exactly one namespace URI, a...
Redefined namespaces.Namespace to be a subclass of namedtuple, with a custom __new__ to allow the schema_location field to be defaulted (to None).
diff --git a/nani.py b/nani.py index <HASH>..<HASH> 100644 --- a/nani.py +++ b/nani.py @@ -527,7 +527,7 @@ class _IndirectCompositeArrayViewMixin(object): return self._data.__len__() def __contains__(self, item): - return self._data.__contains__(self, item) + return item in self._data ...
Fix a call to the wrong 'contains' implementation
diff --git a/pyvera/__init__.py b/pyvera/__init__.py index <HASH>..<HASH> 100755 --- a/pyvera/__init__.py +++ b/pyvera/__init__.py @@ -637,7 +637,10 @@ class VeraDimmer(VeraSwitch): ci = None sup = self.get_complex_value('SupportedColors') if sup is not None: - ci = [sup.split(',')...
Catch errors when trying to parse RGB colors
diff --git a/datadog_checks_dev/datadog_checks/dev/tooling/commands/validate/config.py b/datadog_checks_dev/datadog_checks/dev/tooling/commands/validate/config.py index <HASH>..<HASH> 100644 --- a/datadog_checks_dev/datadog_checks/dev/tooling/commands/validate/config.py +++ b/datadog_checks_dev/datadog_checks/dev/tooli...
Print the diff when the example file isn't in sync with the spec (#<I>)
diff --git a/linkcheck/configuration/__init__.py b/linkcheck/configuration/__init__.py index <HASH>..<HASH> 100644 --- a/linkcheck/configuration/__init__.py +++ b/linkcheck/configuration/__init__.py @@ -168,10 +168,14 @@ class Configuration (dict): logging.config.fileConfig(filename) if handler is...
Add thread name to log output when threads are enabled.
diff --git a/tests/test_fread_small.py b/tests/test_fread_small.py index <HASH>..<HASH> 100644 --- a/tests/test_fread_small.py +++ b/tests/test_fread_small.py @@ -54,3 +54,11 @@ def test_empty_strings(seed, repl): assert d1.topython() == src +def test_select_some_columns(): + # * Last field of last line con...
Add a test for fread (#<I>)
diff --git a/packages/razzle-dev-utils/makeLoaderFinder.js b/packages/razzle-dev-utils/makeLoaderFinder.js index <HASH>..<HASH> 100644 --- a/packages/razzle-dev-utils/makeLoaderFinder.js +++ b/packages/razzle-dev-utils/makeLoaderFinder.js @@ -6,7 +6,7 @@ const makeLoaderFinder = loaderName => rule => { // Checks i...
fix: allow getting string only loaders
diff --git a/client-hc/src/test/java/com/graphhopper/api/GraphHopperMatrixIT.java b/client-hc/src/test/java/com/graphhopper/api/GraphHopperMatrixIT.java index <HASH>..<HASH> 100644 --- a/client-hc/src/test/java/com/graphhopper/api/GraphHopperMatrixIT.java +++ b/client-hc/src/test/java/com/graphhopper/api/GraphHopperMat...
Fix expected distance value in GraphHopperMatrixIT (once again)
diff --git a/lib/reference/keywordSets.js b/lib/reference/keywordSets.js index <HASH>..<HASH> 100644 --- a/lib/reference/keywordSets.js +++ b/lib/reference/keywordSets.js @@ -562,6 +562,8 @@ keywordSets.mediaFeatureNames = uniteSets( "grid", "height", "hover", + "inverted-colors", + "light-level", ...
Fix level 5 media queries in media-feature-name-no-unknown (#<I>)
diff --git a/mod/workshop/view.php b/mod/workshop/view.php index <HASH>..<HASH> 100644 --- a/mod/workshop/view.php +++ b/mod/workshop/view.php @@ -391,6 +391,17 @@ case workshop::PHASE_CLOSED: print_collapsible_region_end(); } } + if (has_capability('mod/workshop:submit', $PAGE->context)) ...
Workshop: access to the own submission when the activity is closed
diff --git a/Gruntfile.js b/Gruntfile.js index <HASH>..<HASH> 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -37,6 +37,7 @@ module.exports = function(grunt) { options: { exclude: 'test_venv', with_xunit: true, + verbose: false, xunit_file: 'nosetests.xml', },...
Make sure we don't fail on flags set to false. Closes #1.
diff --git a/tests/parser/ast_utils/test_ast_dict.py b/tests/parser/ast_utils/test_ast_dict.py index <HASH>..<HASH> 100644 --- a/tests/parser/ast_utils/test_ast_dict.py +++ b/tests/parser/ast_utils/test_ast_dict.py @@ -69,9 +69,7 @@ a: int128 "lineno": 2, "node_id": 2, "src": "1:1...
fix: AST output (#<I>) rollback changes to `-f ast` introduced in 3cbdf<I>bfd until `vyper_module_folded` is stable
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -27,9 +27,9 @@ setup( zip_safe=True, install_requires=[ 'setuptools', - 'six>=1.4', + 'six >= 1.4', 'lxml', - 'genshi', + 'genshi >= 0.7', 'pyjon.utils > 0.6', ...
Added requirement for Genshi >= <I>
diff --git a/js/src/responsive-nav.jquery.js b/js/src/responsive-nav.jquery.js index <HASH>..<HASH> 100755 --- a/js/src/responsive-nav.jquery.js +++ b/js/src/responsive-nav.jquery.js @@ -32,18 +32,28 @@ module.exports = (function($){ $wrapper = $( options.wrapperSelector ), $menuButton = $( options.menuBu...
refactor: introduce closeNavStrategies abstraction
diff --git a/lib/Github/HttpClient/HttpClient.php b/lib/Github/HttpClient/HttpClient.php index <HASH>..<HASH> 100644 --- a/lib/Github/HttpClient/HttpClient.php +++ b/lib/Github/HttpClient/HttpClient.php @@ -168,7 +168,7 @@ class HttpClient implements HttpClientInterface $request = $this->createRequest($httpMet...
Force object-form when encoding json for sending as POST body
diff --git a/test/cacheable-request.js b/test/cacheable-request.js index <HASH>..<HASH> 100644 --- a/test/cacheable-request.js +++ b/test/cacheable-request.js @@ -66,6 +66,22 @@ test.cb('cacheableRequest emits response event for network responses', t => { }); }); +test.cb('cacheableRequest emits response event fo...
Test cacheableRequest emits response event for cached responses
diff --git a/tests/junit/org/jgroups/tests/ReconciliationTest.java b/tests/junit/org/jgroups/tests/ReconciliationTest.java index <HASH>..<HASH> 100644 --- a/tests/junit/org/jgroups/tests/ReconciliationTest.java +++ b/tests/junit/org/jgroups/tests/ReconciliationTest.java @@ -19,7 +19,7 @@ import java.util.Map; * confi...
fix hanging flush-udp test
diff --git a/src/headful.js b/src/headful.js index <HASH>..<HASH> 100644 --- a/src/headful.js +++ b/src/headful.js @@ -47,6 +47,9 @@ headful.props = propertySetters; * Tests whether the given `props` object contains a property with the name of `propNameOrFunction`. */ function noProp(props, propNameOrFunction) { +...
Throw error when noProp() is being called without props argument
diff --git a/SingularityService/src/main/java/com/hubspot/singularity/scheduler/SingularityScheduler.java b/SingularityService/src/main/java/com/hubspot/singularity/scheduler/SingularityScheduler.java index <HASH>..<HASH> 100644 --- a/SingularityService/src/main/java/com/hubspot/singularity/scheduler/SingularitySchedul...
make sure to remove obsolete pending requests
diff --git a/xchange-yobit/src/main/java/org/knowm/xchange/yobit/YoBitAdapters.java b/xchange-yobit/src/main/java/org/knowm/xchange/yobit/YoBitAdapters.java index <HASH>..<HASH> 100644 --- a/xchange-yobit/src/main/java/org/knowm/xchange/yobit/YoBitAdapters.java +++ b/xchange-yobit/src/main/java/org/knowm/xchange/yobit/...
[#hotfix] Yobit volume should be in the base currency
diff --git a/logger/drain/drain.go b/logger/drain/drain.go index <HASH>..<HASH> 100644 --- a/logger/drain/drain.go +++ b/logger/drain/drain.go @@ -26,7 +26,7 @@ func SendToDrain(m string, drain string) error { func sendToSyslogDrain(m string, drain string) error { conn, err := net.Dial("udp", drain) if err != nil ...
fix(logger): reduce severity of log failure Sending a log to an external server should not kill the logger on an error. For example, if the host is down or unavailable, the logger should just log that the error message has been lost, but carry on.
diff --git a/structr-ui/src/main/java/org/structr/web/importer/Importer.java b/structr-ui/src/main/java/org/structr/web/importer/Importer.java index <HASH>..<HASH> 100644 --- a/structr-ui/src/main/java/org/structr/web/importer/Importer.java +++ b/structr-ui/src/main/java/org/structr/web/importer/Importer.java @@ -306,7...
Fixes import of shared components when using the non-cleaning XML parser instead of the HTML parser for deployment imports.
diff --git a/Octo/System/Store/SearchIndexStore.php b/Octo/System/Store/SearchIndexStore.php index <HASH>..<HASH> 100644 --- a/Octo/System/Store/SearchIndexStore.php +++ b/Octo/System/Store/SearchIndexStore.php @@ -40,7 +40,9 @@ class SearchIndexStore extends Octo\Store foreach ($res as $item) { ...
Prevented search attempting to load stores that have been removed
diff --git a/biojava-structure/src/main/java/org/biojava/nbio/structure/StructureImpl.java b/biojava-structure/src/main/java/org/biojava/nbio/structure/StructureImpl.java index <HASH>..<HASH> 100644 --- a/biojava-structure/src/main/java/org/biojava/nbio/structure/StructureImpl.java +++ b/biojava-structure/src/main/java...
renaming variable name to be more clear
diff --git a/checkpoints.go b/checkpoints.go index <HASH>..<HASH> 100644 --- a/checkpoints.go +++ b/checkpoints.go @@ -57,6 +57,7 @@ var checkpointDataMainNet = checkpointData{ {216116, newShaHashFromStr("00000000000001b4f4b433e81ee46494af945cf96014816a4e2370f11b23df4e")}, {225430, newShaHashFromStr("000000000000...
Add checkpoint at block height <I>.
diff --git a/server/src/main/java/io/druid/initialization/Log4jShutterDownerModule.java b/server/src/main/java/io/druid/initialization/Log4jShutterDownerModule.java index <HASH>..<HASH> 100644 --- a/server/src/main/java/io/druid/initialization/Log4jShutterDownerModule.java +++ b/server/src/main/java/io/druid/initializa...
Add check for log4j-core in Log4jShutterDownerModule
diff --git a/spatialist/__init__.py b/spatialist/__init__.py index <HASH>..<HASH> 100644 --- a/spatialist/__init__.py +++ b/spatialist/__init__.py @@ -9,4 +9,9 @@ from .vector import Vector, bbox, centerdist, intersect from .raster import Raster, stack, rasterize from .sqlite_util import sqlite_setup, sqlite3 -__ve...
[__init__] read version via pkg_resources
diff --git a/mopidy_spotify/translator.py b/mopidy_spotify/translator.py index <HASH>..<HASH> 100644 --- a/mopidy_spotify/translator.py +++ b/mopidy_spotify/translator.py @@ -32,6 +32,9 @@ def to_playlist(sp_playlist, folders=None, username=None): return name = sp_playlist.name + if name is None: + ...
Give a name to starred playlists
diff --git a/telemetry/telemetry/page/page_test_results.py b/telemetry/telemetry/page/page_test_results.py index <HASH>..<HASH> 100644 --- a/telemetry/telemetry/page/page_test_results.py +++ b/telemetry/telemetry/page/page_test_results.py @@ -9,6 +9,7 @@ class PageTestResults(unittest.TestResult): def __init__(self)...
[telemetry] Add skipped and addSkip() to PageTestResults, for Python < <I>. Fixing bots after <URL>. successes is only used by record_wpr, so that mistake had no effect on the bots. TBR=<EMAIL> BUG=None. TEST=None. Review URL: <URL>