diff
stringlengths
65
26.7k
message
stringlengths
7
9.92k
diff --git a/Event/StrictDispatcher.php b/Event/StrictDispatcher.php index <HASH>..<HASH> 100644 --- a/Event/StrictDispatcher.php +++ b/Event/StrictDispatcher.php @@ -11,7 +11,7 @@ namespace Claroline\CoreBundle\Event; -use Symfony\Component\EventDispatcher\EventDispatcher; +use Symfony\Component\EventDispatcher\E...
[CoreBundle] Fixing StrictDispatcher.
diff --git a/builder/vmware/iso/step_create_vmx.go b/builder/vmware/iso/step_create_vmx.go index <HASH>..<HASH> 100644 --- a/builder/vmware/iso/step_create_vmx.go +++ b/builder/vmware/iso/step_create_vmx.go @@ -477,13 +477,12 @@ func (s *stepCreateVMX) Run(_ context.Context, state multistep.StateBag) multist // try ...
move comments so indentation is more logical
diff --git a/udiskie/cli.py b/udiskie/cli.py index <HASH>..<HASH> 100644 --- a/udiskie/cli.py +++ b/udiskie/cli.py @@ -49,10 +49,9 @@ def get_backend(clsname, version=None): try: return udisks1() except DBusException: - msg = sys.exc_info()[1].get_dbus_message() lo...
Fix incorrect usage of GLib.GError GLib.GError has no method `.get_dbus_message()` like dbus.DBusException had. Instead, it has an attribute `.message`. But this is not very useful for the user anyway in the case, so we just leave it out.
diff --git a/salt/tops/varstack.py b/salt/tops/varstack.py index <HASH>..<HASH> 100644 --- a/salt/tops/varstack.py +++ b/salt/tops/varstack.py @@ -49,11 +49,9 @@ from __future__ import absolute_import import logging try: - HAS_VARSTACK = False import varstack - HAS_VARSTACK = True except ImportError: - ...
Squelch error logging when varstack is not installed This gets rid of spurious errors when varstack isn't installed. Most people won't use this so these errors are not helpful.
diff --git a/wps.php b/wps.php index <HASH>..<HASH> 100644 --- a/wps.php +++ b/wps.php @@ -54,6 +54,10 @@ $whoops_handler = new PrettyPageHandler; $whoops_handler->addDataTableCallback( 'WP', function () { global $wp; + if ( ! $wp instanceof \WP ) { + return array(); + } + $output = get_object_vars( $wp ); un...
Added checks on global objects to make sense. Fixes #1
diff --git a/fritzconnection/core/processor.py b/fritzconnection/core/processor.py index <HASH>..<HASH> 100644 --- a/fritzconnection/core/processor.py +++ b/fritzconnection/core/processor.py @@ -326,7 +326,7 @@ class Service: values. Caches the dictionary once retrieved from _scpd. """ if sel...
Bugfix in service to return state_variables instead of actions.
diff --git a/cmd/xl-v1-multipart.go b/cmd/xl-v1-multipart.go index <HASH>..<HASH> 100644 --- a/cmd/xl-v1-multipart.go +++ b/cmd/xl-v1-multipart.go @@ -387,15 +387,16 @@ func (xl xlObjects) PutObjectPart(bucket, object, uploadID string, partID int, s // Initialize md5 writer. md5Writer := md5.New() + lreader := da...
Layer LimitReader responsibly allowing sign verification to work (#<I>)
diff --git a/lib/rails3-jquery-autocomplete/simple_form_plugin.rb b/lib/rails3-jquery-autocomplete/simple_form_plugin.rb index <HASH>..<HASH> 100644 --- a/lib/rails3-jquery-autocomplete/simple_form_plugin.rb +++ b/lib/rails3-jquery-autocomplete/simple_form_plugin.rb @@ -49,27 +49,27 @@ module SimpleForm # ...
before sending methods, check respond_to?
diff --git a/src/repl.js b/src/repl.js index <HASH>..<HASH> 100644 --- a/src/repl.js +++ b/src/repl.js @@ -139,11 +139,11 @@ function completer(text) { return [[], text]; } -var PROMPT_MULTI = chalk.bold("... "); -var PROMPT_SINGLE = chalk.bold("squiggle> "); - function prompt() { - return isMultiline ? PRO...
Tweaks the prompt a bit
diff --git a/drivers/k8055/driver-k8055.rb b/drivers/k8055/driver-k8055.rb index <HASH>..<HASH> 100644 --- a/drivers/k8055/driver-k8055.rb +++ b/drivers/k8055/driver-k8055.rb @@ -98,12 +98,14 @@ class K8055DigitalOutput < K8055Pin def write(value) begin @k8055.synchronize do - if val...
Workaround for a libk<I> bug in set_digital
diff --git a/lib/arjdbc/db2/adapter.rb b/lib/arjdbc/db2/adapter.rb index <HASH>..<HASH> 100644 --- a/lib/arjdbc/db2/adapter.rb +++ b/lib/arjdbc/db2/adapter.rb @@ -500,12 +500,13 @@ module ArJdbc change_column_null(table_name, column_name, options[:null]) end end - + # http://publib.boulder...
fix DB2 remove_column not supporting multiple column_names (since <I>)
diff --git a/src/wyil/transforms/VerificationCheck.java b/src/wyil/transforms/VerificationCheck.java index <HASH>..<HASH> 100644 --- a/src/wyil/transforms/VerificationCheck.java +++ b/src/wyil/transforms/VerificationCheck.java @@ -101,7 +101,7 @@ public class VerificationCheck implements Transform { } public sta...
I may have to have a separate process, or something which I can genuinely control
diff --git a/pkg/httputil/httputil.go b/pkg/httputil/httputil.go index <HASH>..<HASH> 100644 --- a/pkg/httputil/httputil.go +++ b/pkg/httputil/httputil.go @@ -27,6 +27,7 @@ import ( "net" "net/http" "net/url" + "os" "path" "strconv" "strings" @@ -63,7 +64,7 @@ func RequestEntityTooLargeError(conn http.Respo...
httputil: allow full error serving when with devcam When hacking on e.g. importers, I sometimes want to use devcam with -hostname, to test with a non local context. In which case, when hitting an error httputil.ServeError would not print the full error, which makes it harder to debug. Change-Id: I2fb8c<I>d4f<I>fbf<I>...
diff --git a/mrcrowbar/common.py b/mrcrowbar/common.py index <HASH>..<HASH> 100644 --- a/mrcrowbar/common.py +++ b/mrcrowbar/common.py @@ -46,6 +46,9 @@ def serialise( obj, fields ): def file_path_recurse( *root_list ): for root in root_list: + if os.path.isfile( root ): + yield root + ...
common.file_path_recurse: fix case where root is a file
diff --git a/languagetool-wikipedia/src/main/java/org/languagetool/dev/wikipedia/WikipediaQuickCheck.java b/languagetool-wikipedia/src/main/java/org/languagetool/dev/wikipedia/WikipediaQuickCheck.java index <HASH>..<HASH> 100644 --- a/languagetool-wikipedia/src/main/java/org/languagetool/dev/wikipedia/WikipediaQuickChe...
main method: use the language from the URL, not German
diff --git a/lib/solargraph/pin/reference.rb b/lib/solargraph/pin/reference.rb index <HASH>..<HASH> 100644 --- a/lib/solargraph/pin/reference.rb +++ b/lib/solargraph/pin/reference.rb @@ -12,6 +12,7 @@ module Solargraph def resolve api_map unless @resolved + @resolved = true @name =...
Avoid infinite recursion when resolving reference pins.
diff --git a/jquery.csv.js b/jquery.csv.js index <HASH>..<HASH> 100755 --- a/jquery.csv.js +++ b/jquery.csv.js @@ -72,7 +72,7 @@ }; /** - * jQuery.CSV2Array(csvString) + * jQuery.CSVEntry2Array(csvString) * Converts a CSV string to a javascript array. * * @param {String} csv The string co...
jquery.csv.js - added a quick documentation fix - added a newline at the end of the file
diff --git a/src/ProfileConfig.php b/src/ProfileConfig.php index <HASH>..<HASH> 100644 --- a/src/ProfileConfig.php +++ b/src/ProfileConfig.php @@ -31,7 +31,7 @@ class ProfileConfig extends Config 'listen' => '::', 'enableLog' => false, 'enableAcl' => false, - 'aclGroupL...
rename aclGroupList to aclPermissionList
diff --git a/src/main/java/org/dynjs/runtime/builtins/types/array/IsArray.java b/src/main/java/org/dynjs/runtime/builtins/types/array/IsArray.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/dynjs/runtime/builtins/types/array/IsArray.java +++ b/src/main/java/org/dynjs/runtime/builtins/types/array/IsArray.java @...
Array.isArray should not return true for non-arrays. Removed the code that caused Array.isArray to return true for any JSObject that has externally indexed data. This feature was added for V8 parity, specifically when dealing with Node.js buffers, however Array.isArray(buffer) in node <I>.x returns false.
diff --git a/py/selenium/webdriver/common/desired_capabilities.py b/py/selenium/webdriver/common/desired_capabilities.py index <HASH>..<HASH> 100644 --- a/py/selenium/webdriver/common/desired_capabilities.py +++ b/py/selenium/webdriver/common/desired_capabilities.py @@ -27,22 +27,22 @@ class DesiredCapabilities(object)...
DavidBurns corrected platforms for desired capabilities r<I>
diff --git a/internal/service/appflow/flow.go b/internal/service/appflow/flow.go index <HASH>..<HASH> 100644 --- a/internal/service/appflow/flow.go +++ b/internal/service/appflow/flow.go @@ -1113,12 +1113,11 @@ func ResourceFlow() *schema.Resource { }, }, "task_properties": { - Type: ...
appflow: amend ValidateFunc for task_properties to avoid type conflict
diff --git a/lhc/file_format/vcf_/merger.py b/lhc/file_format/vcf_/merger.py index <HASH>..<HASH> 100644 --- a/lhc/file_format/vcf_/merger.py +++ b/lhc/file_format/vcf_/merger.py @@ -102,7 +102,7 @@ class VcfMerger(object): return sorted_tops def _updateSorting(self, sorted_tops, entry, idx): - ...
fixed vcf merge chromosome out-of-order bug
diff --git a/prometheus_flask_exporter/__init__.py b/prometheus_flask_exporter/__init__.py index <HASH>..<HASH> 100644 --- a/prometheus_flask_exporter/__init__.py +++ b/prometheus_flask_exporter/__init__.py @@ -11,7 +11,7 @@ from flask import Flask, Response from flask import request, make_response, current_app from ...
change choose_encoder to choose_formatter
diff --git a/benchmarks/src/test/java/zipkin2/server/ServerIntegratedBenchmark.java b/benchmarks/src/test/java/zipkin2/server/ServerIntegratedBenchmark.java index <HASH>..<HASH> 100644 --- a/benchmarks/src/test/java/zipkin2/server/ServerIntegratedBenchmark.java +++ b/benchmarks/src/test/java/zipkin2/server/ServerIntegr...
Actually sleuth is using actuator health..
diff --git a/docs/src/pages/discover-more/languages/Languages.js b/docs/src/pages/discover-more/languages/Languages.js index <HASH>..<HASH> 100644 --- a/docs/src/pages/discover-more/languages/Languages.js +++ b/docs/src/pages/discover-more/languages/Languages.js @@ -32,7 +32,7 @@ function Languages() { ...
[docs] Fix english language link (#<I>)
diff --git a/core/src/main/java/com/orientechnologies/orient/core/db/document/ODatabaseDocumentTx.java b/core/src/main/java/com/orientechnologies/orient/core/db/document/ODatabaseDocumentTx.java index <HASH>..<HASH> 100755 --- a/core/src/main/java/com/orientechnologies/orient/core/db/document/ODatabaseDocumentTx.java +...
Issue #<I> was fixed.
diff --git a/tensorforce/util/agent_util.py b/tensorforce/util/agent_util.py index <HASH>..<HASH> 100644 --- a/tensorforce/util/agent_util.py +++ b/tensorforce/util/agent_util.py @@ -25,7 +25,6 @@ from tensorforce.config import Config from tensorforce.exceptions.tensorforce_exceptions import TensorForceValueError fro...
removed ddqn agent from agent util
diff --git a/wal_e/piper.py b/wal_e/piper.py index <HASH>..<HASH> 100644 --- a/wal_e/piper.py +++ b/wal_e/piper.py @@ -124,7 +124,10 @@ def popen_sp(*args, **kwargs): # to the gevent hub. for fp_symbol in ['stdin', 'stdout', 'stderr']: value = getattr(proc, fp_symbol) + if value is not None:...
Explain why there is a None guard
diff --git a/src/playbacks/hls/hls.js b/src/playbacks/hls/hls.js index <HASH>..<HASH> 100644 --- a/src/playbacks/hls/hls.js +++ b/src/playbacks/hls/hls.js @@ -153,7 +153,7 @@ export default class HLS extends HTML5VideoPlayback { fillLevels() { this._levels = this.hls.levels.map((level, index) => { - retu...
send the entire level object (including height and bitrate) to the PLAYBACK_LEVELS_AVAILABLE event
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -12,6 +12,7 @@ setup( description='Run commands and manipulate files locally or over SSH using the same interface', long_description=read("README.rst"), author='Michael Williamson', + author_email='mike@zwobb...
Add author_email to setup.py
diff --git a/resources/lang/nl-NL/dashboard.php b/resources/lang/nl-NL/dashboard.php index <HASH>..<HASH> 100644 --- a/resources/lang/nl-NL/dashboard.php +++ b/resources/lang/nl-NL/dashboard.php @@ -35,6 +35,7 @@ return [ 'failure' => 'Er is een fout opgetreden bij het wijzigen van de incident update',...
New translations dashboard.php (Dutch)
diff --git a/pyam_analysis/core.py b/pyam_analysis/core.py index <HASH>..<HASH> 100644 --- a/pyam_analysis/core.py +++ b/pyam_analysis/core.py @@ -16,6 +16,12 @@ import seaborn as sns # ignore warnings warnings.filterwarnings('ignore') +try: + import ixmp + has_ix = True +except Exception: + has_ix = False...
try to import 'ixmp' package (for reading timeseries from ix object)
diff --git a/database/migrations/2018_01_01_000000_create_permission_tables.php b/database/migrations/2018_01_01_000000_create_permission_tables.php index <HASH>..<HASH> 100644 --- a/database/migrations/2018_01_01_000000_create_permission_tables.php +++ b/database/migrations/2018_01_01_000000_create_permission_tables.p...
found issue in migration create_permission_table
diff --git a/yarl/__init__.py b/yarl/__init__.py index <HASH>..<HASH> 100644 --- a/yarl/__init__.py +++ b/yarl/__init__.py @@ -164,10 +164,17 @@ class URL: if host is None: raise ValueError( "Invalid URL: host is required for abolute urls.") + + ...
Issue#<I>: give friendlier error when port cant be converted to int (#<I>)
diff --git a/fastlane/lib/fastlane/actions/gradle.rb b/fastlane/lib/fastlane/actions/gradle.rb index <HASH>..<HASH> 100644 --- a/fastlane/lib/fastlane/actions/gradle.rb +++ b/fastlane/lib/fastlane/actions/gradle.rb @@ -185,8 +185,23 @@ module Fastlane "versionName" => "1.0.0", # ... ...
[gradle] example how to sign and zipalign app (#<I>) * [gradle] example how to sign and zipalign app - code example how to sign and zipalign the app with `gradle` - replace wrong " with correct (and escaped) \' * fix code example
diff --git a/tests/unittests/helpers.py b/tests/unittests/helpers.py index <HASH>..<HASH> 100644 --- a/tests/unittests/helpers.py +++ b/tests/unittests/helpers.py @@ -131,7 +131,7 @@ class ShoebotTestCase(TestCase): seed(0) - bot.run(code, verbose=True) + bot.run(code, verbose=verbose) ...
Tests: Pass verbose option through to run_code
diff --git a/openquake/risklib/asset.py b/openquake/risklib/asset.py index <HASH>..<HASH> 100644 --- a/openquake/risklib/asset.py +++ b/openquake/risklib/asset.py @@ -775,7 +775,7 @@ class Exposure(object): expected_header = self._csv_header() fnames = [os.path.join(dirname, f) for f in csvnames.split...
Force the exposure to be read as UTF-8
diff --git a/skyfield/tests/test_timelib.py b/skyfield/tests/test_timelib.py index <HASH>..<HASH> 100644 --- a/skyfield/tests/test_timelib.py +++ b/skyfield/tests/test_timelib.py @@ -46,6 +46,17 @@ def test_indexing_julian_date(): assert jd.ut1[0] == jd0.ut1 assert jd.delta_t == jd0.delta_t +def test_slicin...
Confirm that we can also slice JulianDates
diff --git a/salt/states/cron.py b/salt/states/cron.py index <HASH>..<HASH> 100644 --- a/salt/states/cron.py +++ b/salt/states/cron.py @@ -24,7 +24,7 @@ parameters used by Salt to define the various timing values for a cron job: the cron job is for another user, it is necessary to specify that user with the `...
add some version infos for cron
diff --git a/tests/test_function_manager.py b/tests/test_function_manager.py index <HASH>..<HASH> 100644 --- a/tests/test_function_manager.py +++ b/tests/test_function_manager.py @@ -82,6 +82,9 @@ def test_call_to(): def find_symbol_name(self, *args, **kwargs): return 'unknown' + def is_h...
Fix the test_function_manager project test stub to have a is_hooked method
diff --git a/test/client/sync-mediator.spec.js b/test/client/sync-mediator.spec.js index <HASH>..<HASH> 100644 --- a/test/client/sync-mediator.spec.js +++ b/test/client/sync-mediator.spec.js @@ -55,8 +55,7 @@ describe('Test the sync via mediator', function() { it('create works.', function() { var ts = new...
Used the mediator.request promise, passing in the create arguments as an array
diff --git a/lib/poolparty/chef.rb b/lib/poolparty/chef.rb index <HASH>..<HASH> 100644 --- a/lib/poolparty/chef.rb +++ b/lib/poolparty/chef.rb @@ -56,9 +56,7 @@ module PoolParty def node_bootsrapped?(remote_instance) # "(gem list; dpkg -l chef) | grep -q chef && echo 'chef installed'" - remote_instan...
Adding checking to see if chef is installed on the remote instance
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from setuptools import setup setup(name='lifxlan', - version='0.2', + version='0.2.1', description='API for local communication with LIFX devices over a LAN.', url='http://github.com/mc...
<I> for IP addr support
diff --git a/cnxpublishing/db.py b/cnxpublishing/db.py index <HASH>..<HASH> 100644 --- a/cnxpublishing/db.py +++ b/cnxpublishing/db.py @@ -1241,10 +1241,9 @@ def _upsert_persons(cursor, person_ids, lookup_func): # Check for existing records to update. cursor.execute("SELECT personid from persons where personi...
removing unused exception b/c cursor.fetchall() will always return a list
diff --git a/pulley.js b/pulley.js index <HASH>..<HASH> 100755 --- a/pulley.js +++ b/pulley.js @@ -59,7 +59,7 @@ empty: false, hidden: true }], function( err, result ) { - var auth = result.username + ":" + result.password; + var auth = encodeURIComponent( result.username ) + ":" + encodeURIComponent( re...
Update pulley.js: Add encodeURIComponent for auth. Passwords can contain symbols such as '@' (which are not allowed in that position and breaks the request).
diff --git a/lib/action_cable/connection/base.rb b/lib/action_cable/connection/base.rb index <HASH>..<HASH> 100644 --- a/lib/action_cable/connection/base.rb +++ b/lib/action_cable/connection/base.rb @@ -180,11 +180,6 @@ module ActionCable end end - def allowed_origins_match? origin - ...
Remove unused method allowed_origins in Connection::Base
diff --git a/actioncable/lib/action_cable/server/base.rb b/actioncable/lib/action_cable/server/base.rb index <HASH>..<HASH> 100644 --- a/actioncable/lib/action_cable/server/base.rb +++ b/actioncable/lib/action_cable/server/base.rb @@ -54,7 +54,7 @@ module ActionCable # The worker pool is where we run connectio...
[ci skip] Fix formatting of documentation of worker_pool method from AC::Server::Base
diff --git a/lib/puppet/type/pfile.rb b/lib/puppet/type/pfile.rb index <HASH>..<HASH> 100644 --- a/lib/puppet/type/pfile.rb +++ b/lib/puppet/type/pfile.rb @@ -34,7 +34,34 @@ module Puppet desc "Whether files should be backed up before being replaced. If a filebucket_ is specified, files w...
Ooops, did not save the docs before committing. git-svn-id: <URL>
diff --git a/lib/how_is/sources/github/issues.rb b/lib/how_is/sources/github/issues.rb index <HASH>..<HASH> 100644 --- a/lib/how_is/sources/github/issues.rb +++ b/lib/how_is/sources/github/issues.rb @@ -156,11 +156,9 @@ module HowIs::Sources last_cursor = fetch_last_cursor return @data if last_cursor....
More refactoring. (#2)
diff --git a/scoop/launch/workerLaunch.py b/scoop/launch/workerLaunch.py index <HASH>..<HASH> 100644 --- a/scoop/launch/workerLaunch.py +++ b/scoop/launch/workerLaunch.py @@ -40,6 +40,7 @@ def localWorker(workerNum, size, pythonExecutable, executable, args, c.append("--profile") c.append(executable) ...
add more debug info for local and remote worker
diff --git a/update/result.go b/update/result.go index <HASH>..<HASH> 100644 --- a/update/result.go +++ b/update/result.go @@ -3,6 +3,7 @@ package update import ( "fmt" "sort" + "strings" "github.com/weaveworks/flux" ) @@ -44,14 +45,23 @@ func (r Result) ImageIDs() []string { } // Error returns the error ...
Only report a release as failed if >0 service failed
diff --git a/osbs/core.py b/osbs/core.py index <HASH>..<HASH> 100755 --- a/osbs/core.py +++ b/osbs/core.py @@ -29,7 +29,7 @@ class OpenshiftException(Exception): def check_response(response): - if response.status_code != httplib.OK: + if response.status_code not in (httplib.OK, httplib.CREATED): rai...
Don't treat HTTP <I> ("Created") as an error.
diff --git a/frontends/default/javascripts/jquery/active_scaffold.js b/frontends/default/javascripts/jquery/active_scaffold.js index <HASH>..<HASH> 100644 --- a/frontends/default/javascripts/jquery/active_scaffold.js +++ b/frontends/default/javascripts/jquery/active_scaffold.js @@ -622,7 +622,7 @@ var ActiveScaffold = ...
Bugfix: jquery create-associated_record_form used prototype code; issue <I> reported by clyfe
diff --git a/mdata/store_mock.go b/mdata/store_mock.go index <HASH>..<HASH> 100644 --- a/mdata/store_mock.go +++ b/mdata/store_mock.go @@ -26,9 +26,8 @@ func NewMockStore() *MockStore { // add a chunk to be returned on Search() func (c *MockStore) AddMockResult(metric string, itgen chunk.IterGen) { - if itgens, ok ...
fix itgens not being used thx ineffassign
diff --git a/cslbot/commands/metar.py b/cslbot/commands/metar.py index <HASH>..<HASH> 100644 --- a/cslbot/commands/metar.py +++ b/cslbot/commands/metar.py @@ -37,7 +37,7 @@ def cmd(send, msg, args): return if isinstance(cmdargs.stations, list): cmdargs.stations = ','.join(cmdargs.stations) - r...
seems metar broke their ssl
diff --git a/src/frontend/org/voltdb/iv2/Initiator.java b/src/frontend/org/voltdb/iv2/Initiator.java index <HASH>..<HASH> 100644 --- a/src/frontend/org/voltdb/iv2/Initiator.java +++ b/src/frontend/org/voltdb/iv2/Initiator.java @@ -61,6 +61,4 @@ public interface Initiator /** Write a viable replay set to the comm...
Clean up multi-merge leftover interface cruft.
diff --git a/topologies/replset.js b/topologies/replset.js index <HASH>..<HASH> 100644 --- a/topologies/replset.js +++ b/topologies/replset.js @@ -1196,7 +1196,11 @@ function executeWriteOperation(args, options, callback) { } const willRetryWrite = - !args.retrying && options.retryWrites && options.session &...
refactor(replset): don't retry writes if in a transaction
diff --git a/lib/model/activity.js b/lib/model/activity.js index <HASH>..<HASH> 100644 --- a/lib/model/activity.js +++ b/lib/model/activity.js @@ -570,6 +570,9 @@ Activity.prototype.applyJoin = function(callback) { }, function(err, post) { if (err) throw err; + if (!post) { + throw new AppError("C...
Handle the case where there is no post activity for a group
diff --git a/bibliopixel/layout/matrix.py b/bibliopixel/layout/matrix.py index <HASH>..<HASH> 100644 --- a/bibliopixel/layout/matrix.py +++ b/bibliopixel/layout/matrix.py @@ -66,7 +66,7 @@ class Matrix(MultiLayout): serpentine=serpentine, rotation=rotation, ...
Now layout.Matrix supports having 0 drivers
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ f = open('README.rst') __doc__ = f.read() f.close() -VERSION = "1.0.6" +VERSION = "1.0.7" classifiers = [ "Development Status :: 5 - Production/Stable",
Leakage of update from setup.py
diff --git a/src/main/resources/META-INF/resources/primefaces-extensions/timepicker/1-timepicker.js b/src/main/resources/META-INF/resources/primefaces-extensions/timepicker/1-timepicker.js index <HASH>..<HASH> 100644 --- a/src/main/resources/META-INF/resources/primefaces-extensions/timepicker/1-timepicker.js +++ b/src/...
Fixed issue #<I> (timePicker issue in Chrome)
diff --git a/lib/restful_acl.rb b/lib/restful_acl.rb index <HASH>..<HASH> 100644 --- a/lib/restful_acl.rb +++ b/lib/restful_acl.rb @@ -9,9 +9,9 @@ module RestfulAcl def has_permission? begin - # Load the Model based on the controller name passed in - klass = params[:controller].classify....
Refactored the way the controller name is found Thanks to Devon at kuxuesoft.com!
diff --git a/pkg/oc/cli/admin/diagnostics/diagnostics/cluster/network/results.go b/pkg/oc/cli/admin/diagnostics/diagnostics/cluster/network/results.go index <HASH>..<HASH> 100644 --- a/pkg/oc/cli/admin/diagnostics/diagnostics/cluster/network/results.go +++ b/pkg/oc/cli/admin/diagnostics/diagnostics/cluster/network/resu...
Fix provided options object is not a PodLogOptions error in network diags This seems fallout from <I> rebase (<URL>)
diff --git a/src/test-environment-maker.js b/src/test-environment-maker.js index <HASH>..<HASH> 100644 --- a/src/test-environment-maker.js +++ b/src/test-environment-maker.js @@ -22,12 +22,12 @@ function init(rawSyncFunction, syncFunctionFile) { try { environmentTemplate = fs.readFileSync(__dirname + '/template...
Issue #<I>: Minor text changes for test environment maker
diff --git a/volume/volume.go b/volume/volume.go index <HASH>..<HASH> 100644 --- a/volume/volume.go +++ b/volume/volume.go @@ -5,9 +5,6 @@ import ( "os" "runtime" "strings" - - "github.com/Sirupsen/logrus" - "github.com/docker/docker/pkg/system" ) // DefaultDriverName is the driver name used for the driver @@...
Remove deprecation warning Auto-creation of non-existing host directories is no longer deprecated (9d5c<I>bed2ac<I>e<I>d<I>e3f5), so this warning is no longer relevant. This removes the deprecation warning. Also removes the "system" package here, because it's only used on non-Windows, so basically just called os.Mkd...
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -103,7 +103,7 @@ setup( keywords="read reader edit editor parse parser asam mdf measurement", # You can just specify the packages manually here if your project is # simple. Or you can use find_packages(). - ...
only include asammdf package
diff --git a/pysat/instruments/methods/general.py b/pysat/instruments/methods/general.py index <HASH>..<HASH> 100644 --- a/pysat/instruments/methods/general.py +++ b/pysat/instruments/methods/general.py @@ -285,4 +285,3 @@ def load_csv_data(fnames, read_csv_kwargs=None): data = pds.DataFrame() if len(fdata) == 0...
STY: fixed flake8 Removed extra line from the end of the file.
diff --git a/jmetal-core/src/main/java/org/uma/jmetal/util/solutionattribute/impl/GenericSolutionAttribute.java b/jmetal-core/src/main/java/org/uma/jmetal/util/solutionattribute/impl/GenericSolutionAttribute.java index <HASH>..<HASH> 100755 --- a/jmetal-core/src/main/java/org/uma/jmetal/util/solutionattribute/impl/Gene...
undo changes in GenericSolutionAttribute
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -54,7 +54,7 @@ function coearseAddress (address) { //opts must have appKey module.exports = function (opts) { - var appKey = opts.appKey + var appKey = (opts && opts.caps && opts.caps.shs || opts.appKey) var defaultTi...
take cap in consistent way with other uses of caps in ssb-*
diff --git a/core/Http.php b/core/Http.php index <HASH>..<HASH> 100644 --- a/core/Http.php +++ b/core/Http.php @@ -444,6 +444,7 @@ class Http // only get header info if not saving directly to file CURLOPT_HEADER => is_resource($file) ? false : true, CURLOPT_CON...
Fix curl timeout not set completely: this could result in Piwik hang indefinitely on an HTTP request More particularly, this resulted in the installation hanging at the second step (system check) when using PHP's built-in webserver.
diff --git a/handlers/datasets.js b/handlers/datasets.js index <HASH>..<HASH> 100644 --- a/handlers/datasets.js +++ b/handlers/datasets.js @@ -21,7 +21,7 @@ export default { create(req, res) { counter.getNext('datasets', (datasetNumber) => { - let offset = 100; + let offset = 1000;...
Bump reserved range for dataset accession numbers to 0-<I>.
diff --git a/javascript/CMSMain.AddForm.js b/javascript/CMSMain.AddForm.js index <HASH>..<HASH> 100644 --- a/javascript/CMSMain.AddForm.js +++ b/javascript/CMSMain.AddForm.js @@ -42,7 +42,7 @@ var hints = this.find('.hints').data('hints'), metadata = this.find('#ParentID .TreeDropdownField').data('metadata'...
MINOR Fixed reading of javascript metadata in CMSMain.AddForm.js
diff --git a/lib/conceptql/annotate_grapher.rb b/lib/conceptql/annotate_grapher.rb index <HASH>..<HASH> 100644 --- a/lib/conceptql/annotate_grapher.rb +++ b/lib/conceptql/annotate_grapher.rb @@ -54,7 +54,7 @@ module ConceptQL edge_options = {} opts = from.last[:annotation] - types(from).tap { |t| p...
Remove some debug output from AnnotateGrapher
diff --git a/lib/oxidized/model/procurve.rb b/lib/oxidized/model/procurve.rb index <HASH>..<HASH> 100644 --- a/lib/oxidized/model/procurve.rb +++ b/lib/oxidized/model/procurve.rb @@ -22,8 +22,6 @@ class Procurve < Oxidized::Model new_cfg end - cmd 'show running-config' - cmd 'show version' do |cfg| c...
Be more liberal about username prompt ^\r? was too strict Also move non-config above of config, rancid-style. Also Procurve is unbelievably shitty crapbox, screen drawing is shit, telnet password is maximum <I> chars, ssh password maximum <I> chars, que?
diff --git a/tests/modularinputs/test_modularinput.js b/tests/modularinputs/test_modularinput.js index <HASH>..<HASH> 100644 --- a/tests/modularinputs/test_modularinput.js +++ b/tests/modularinputs/test_modularinput.js @@ -309,6 +309,10 @@ exports.setup = function() { }, "ModularInput Input ...
Suppress modinput logging to console for tests
diff --git a/python_modules/dagster/dagster/core/definitions/solid.py b/python_modules/dagster/dagster/core/definitions/solid.py index <HASH>..<HASH> 100644 --- a/python_modules/dagster/dagster/core/definitions/solid.py +++ b/python_modules/dagster/dagster/core/definitions/solid.py @@ -531,15 +531,6 @@ class CompositeS...
(make-pipeline-a-solid-1) Delete has_descendant_config_mapping Summary: Dead code. Test Plan: BK Reviewers: alangenfeld Reviewed By: alangenfeld Differential Revision: <URL>
diff --git a/internal/export/distro/zeromq.go b/internal/export/distro/zeromq.go index <HASH>..<HASH> 100644 --- a/internal/export/distro/zeromq.go +++ b/internal/export/distro/zeromq.go @@ -22,17 +22,18 @@ type zeroMQEventPublisher struct { mux sync.Mutex } -func newZeroMQEventPublisher() zeroMQEventPublish...
fix Send method on 0MQ publisher to be pointer
diff --git a/lib/translate_routes.rb b/lib/translate_routes.rb index <HASH>..<HASH> 100755 --- a/lib/translate_routes.rb +++ b/lib/translate_routes.rb @@ -89,7 +89,8 @@ module ActionController @@original_named_routes = Routes.named_routes.routes.dup # Hash {:name => :route} @@original_names = @@o...
Keep original routes as we still need them
diff --git a/bin/formats/cmd.js b/bin/formats/cmd.js index <HASH>..<HASH> 100644 --- a/bin/formats/cmd.js +++ b/bin/formats/cmd.js @@ -7,18 +7,17 @@ var child_process = require('child_process'); var fs = require('fs'); module.exports = { - exec: function(command) { + exec: function(command) { + if (fs.existsS...
fix : avoid errors when test crash (with temp files)
diff --git a/server.go b/server.go index <HASH>..<HASH> 100644 --- a/server.go +++ b/server.go @@ -137,6 +137,9 @@ func (u *Upgrader) Upgrade(w http.ResponseWriter, r *http.Request, responseHeade } var rw *bufio.ReadWriter netConn, rw, err = h.Hijack() + if err != nil { + return u.returnError(w, r, http.StatusIn...
Check and handle error return from hijack.
diff --git a/storage/smiles/src/test/java/org/openscience/cdk/smiles/SmilesParserTest.java b/storage/smiles/src/test/java/org/openscience/cdk/smiles/SmilesParserTest.java index <HASH>..<HASH> 100644 --- a/storage/smiles/src/test/java/org/openscience/cdk/smiles/SmilesParserTest.java +++ b/storage/smiles/src/test/java/or...
Unit test to make sure parsing a SMILES does not set a null cdk:Title (as <I> does, as found in Bioclipse)
diff --git a/lib/gelf/logger.rb b/lib/gelf/logger.rb index <HASH>..<HASH> 100644 --- a/lib/gelf/logger.rb +++ b/lib/gelf/logger.rb @@ -1,6 +1,9 @@ module GELF # Methods for compatibility with Ruby Logger. module LoggerCompatibility + + attr_accessor :formatter + # Does nothing. def close end
Added formatter field to Logger
diff --git a/lib/mail_chimp.rb b/lib/mail_chimp.rb index <HASH>..<HASH> 100644 --- a/lib/mail_chimp.rb +++ b/lib/mail_chimp.rb @@ -6,15 +6,15 @@ module MailChimp after_filter :create_in_mailchimp, :only => [:create] after_filter :update_in_mailchimp, :only => [:update] destr...
dont use Class methods in a controller action, it doesnt work
diff --git a/nbp/src/main/java/jlibs/nbp/Feeder.java b/nbp/src/main/java/jlibs/nbp/Feeder.java index <HASH>..<HASH> 100644 --- a/nbp/src/main/java/jlibs/nbp/Feeder.java +++ b/nbp/src/main/java/jlibs/nbp/Feeder.java @@ -17,6 +17,7 @@ package jlibs.nbp; import java.io.IOException; import java.nio.CharBuffer; +import ...
byteChannel() method added
diff --git a/setuptools/extension.py b/setuptools/extension.py index <HASH>..<HASH> 100644 --- a/setuptools/extension.py +++ b/setuptools/extension.py @@ -1,4 +1,6 @@ import sys +import re +import functools import distutils.core import distutils.extension @@ -37,13 +39,10 @@ class Extension(_Extension): i...
Use functools.partial and re.sub to construct the substitution function.
diff --git a/padatious/__init__.py b/padatious/__init__.py index <HASH>..<HASH> 100644 --- a/padatious/__init__.py +++ b/padatious/__init__.py @@ -15,4 +15,4 @@ from .intent_container import IntentContainer from .match_data import MatchData -__version__ = '0.3.7' # Also change in setup.py +__version__ = '0.3.8' #...
Increment version to <I>
diff --git a/frontend/controllers/ProductController.php b/frontend/controllers/ProductController.php index <HASH>..<HASH> 100755 --- a/frontend/controllers/ProductController.php +++ b/frontend/controllers/ProductController.php @@ -102,7 +102,8 @@ class ProductController extends Controller */ private function...
Changes getting seo title in ProductController.
diff --git a/docs/conf.py b/docs/conf.py index <HASH>..<HASH> 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -161,7 +161,7 @@ html_theme = 'alabaster' # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files, # so a fi...
docs: Get rid of warning about missing _static/ dir
diff --git a/pyqt_distutils/build_ui.py b/pyqt_distutils/build_ui.py index <HASH>..<HASH> 100644 --- a/pyqt_distutils/build_ui.py +++ b/pyqt_distutils/build_ui.py @@ -92,10 +92,10 @@ class build_ui(Command): try: subprocess.check_output(cmd.split(' ')) ...
Tweak colors Print failing command in yellow and error message in red
diff --git a/pyspectral/rayleigh.py b/pyspectral/rayleigh.py index <HASH>..<HASH> 100644 --- a/pyspectral/rayleigh.py +++ b/pyspectral/rayleigh.py @@ -174,6 +174,8 @@ class Rayleigh(object): clip_angle = np.rad2deg(np.arccos(1. / 25)) sun_zenith = np.clip(np.asarray(sun_zenith), 0, clip_angle) ...
Clip satellite-zenith angles outside range
diff --git a/lib/coverband/collectors/coverage.rb b/lib/coverband/collectors/coverage.rb index <HASH>..<HASH> 100644 --- a/lib/coverband/collectors/coverage.rb +++ b/lib/coverband/collectors/coverage.rb @@ -47,7 +47,11 @@ module Coverband @logger.info 'coverage report: ' @logger.info @file_line_us...
skip calculations when previous results are missing, capture better error
diff --git a/ksamsok/ksamsok.py b/ksamsok/ksamsok.py index <HASH>..<HASH> 100644 --- a/ksamsok/ksamsok.py +++ b/ksamsok/ksamsok.py @@ -135,7 +135,7 @@ class KSamsok: uri = re.sub('rdf/', '', uri) uri = re.sub('html/', '', uri) uri = re.sub('jsonld/', '', uri) - + uri = re.sub('museumda...
support museumdat as input URI
diff --git a/types/plugin.go b/types/plugin.go index <HASH>..<HASH> 100644 --- a/types/plugin.go +++ b/types/plugin.go @@ -26,10 +26,11 @@ type PluginConfig struct { // Plugin represents a Docker plugin for the remote API type Plugin struct { - ID string `json:"Id,omitempty"` - Name string - Tag stri...
replace .Active by .Enabled
diff --git a/ehforwarderbot/__version__.py b/ehforwarderbot/__version__.py index <HASH>..<HASH> 100644 --- a/ehforwarderbot/__version__.py +++ b/ehforwarderbot/__version__.py @@ -1,3 +1,3 @@ # coding=utf-8 -__version__ = "2.1.0.dev3" +__version__ = "2.1.0"
bump: bumping version: <I>.dev3 -> <I>
diff --git a/test/phpunitBootstrap.php b/test/phpunitBootstrap.php index <HASH>..<HASH> 100644 --- a/test/phpunitBootstrap.php +++ b/test/phpunitBootstrap.php @@ -1,11 +1,9 @@ <?php - -define('ARTAX_SYSDIR', dirname(__DIR__)); spl_autoload_register(function($cls) { if (0 === strpos($cls, 'Artax\\')) { ...
removed constant from testing bootstrap for better multi-process testing
diff --git a/libandroid-navigation-ui/src/main/java/com/mapbox/services/android/navigation/ui/v5/NavigationView.java b/libandroid-navigation-ui/src/main/java/com/mapbox/services/android/navigation/ui/v5/NavigationView.java index <HASH>..<HASH> 100644 --- a/libandroid-navigation-ui/src/main/java/com/mapbox/services/andr...
Null check camera tracking (#<I>)
diff --git a/sark/code/instruction.py b/sark/code/instruction.py index <HASH>..<HASH> 100644 --- a/sark/code/instruction.py +++ b/sark/code/instruction.py @@ -100,4 +100,4 @@ class Instruction(object): @property def regs(self): - return [operand.reg for operand in self.operands] \ No newline at end o...
Removed repetitions in `Instruction.regs`.
diff --git a/windpowerlib/wind_farm.py b/windpowerlib/wind_farm.py index <HASH>..<HASH> 100644 --- a/windpowerlib/wind_farm.py +++ b/windpowerlib/wind_farm.py @@ -21,7 +21,7 @@ class WindFarm(object): Parameters ---------- - wind_turbine_fleet : :pandas:`pandas.DataFrame<frame>` or list(dict) + wind_t...
Adapt docstring of WindFarm
diff --git a/tests/test_project.py b/tests/test_project.py index <HASH>..<HASH> 100644 --- a/tests/test_project.py +++ b/tests/test_project.py @@ -136,6 +136,7 @@ class TestProject(unittest.TestCase): """ uses dummy_function as func to execute tasks """ + proj13 = project.Pro...
using projects.run instead of project.execute to test coverage
diff --git a/compat/__init__.py b/compat/__init__.py index <HASH>..<HASH> 100644 --- a/compat/__init__.py +++ b/compat/__init__.py @@ -15,7 +15,11 @@ try: except ImportError: import six - +# get_indent +if six.PY3: + from threading import get_ident +else: + from thread import get_ident # noqa try:...
Added get_indent compatibility.