diff
stringlengths
65
26.7k
message
stringlengths
7
9.92k
diff --git a/core/chain_manager.go b/core/chain_manager.go index <HASH>..<HASH> 100644 --- a/core/chain_manager.go +++ b/core/chain_manager.go @@ -168,7 +168,7 @@ func (bc *ChainManager) NewBlock(coinbase []byte) *types.Block { var root []byte parentHash := ZeroHash256 - if bc.CurrentBlock != nil { + if bc.curren...
Reference pointer to block instead of pointer to function
diff --git a/lavalink/PlayerManager.py b/lavalink/PlayerManager.py index <HASH>..<HASH> 100644 --- a/lavalink/PlayerManager.py +++ b/lavalink/PlayerManager.py @@ -14,7 +14,6 @@ class BasePlayer(ABC): async def handle_event(self, event): raise NotImplementedError - @abstractmethod async def c...
Doesn't need to be abstract
diff --git a/citrination_client/views/tests/test_model_template_builder.py b/citrination_client/views/tests/test_model_template_builder.py index <HASH>..<HASH> 100644 --- a/citrination_client/views/tests/test_model_template_builder.py +++ b/citrination_client/views/tests/test_model_template_builder.py @@ -96,7 +96,7 @@...
Change site to public, tests will still fail until FE public updated
diff --git a/spec/api_connect_client/product_spec.rb b/spec/api_connect_client/product_spec.rb index <HASH>..<HASH> 100644 --- a/spec/api_connect_client/product_spec.rb +++ b/spec/api_connect_client/product_spec.rb @@ -1,6 +1,6 @@ require 'spec_helper' -RSpec.describe Product do +RSpec.describe ApiConnectClient::Pro...
fix(specs): Fix bug introduced in merge
diff --git a/test/indexeddb_mock.js b/test/indexeddb_mock.js index <HASH>..<HASH> 100644 --- a/test/indexeddb_mock.js +++ b/test/indexeddb_mock.js @@ -148,7 +148,11 @@ export class IDBObjectStore { data, request }; - request.result = new IDBCursorWithValue(this, cursorInternal); + if (keys.leng...
Return null for the cursor if we have no data
diff --git a/lib/zuul.js b/lib/zuul.js index <HASH>..<HASH> 100644 --- a/lib/zuul.js +++ b/lib/zuul.js @@ -28,6 +28,8 @@ function Zuul(config) { // list of browsers to test self._browsers = []; + + self._concurrency = config.concurrency || 3; }; Zuul.prototype.__proto__ = EventEmitter.prototype; @@ -...
add concurrency option to specify how many browsers to run at once
diff --git a/assemblerflow/generator/recipe.py b/assemblerflow/generator/recipe.py index <HASH>..<HASH> 100644 --- a/assemblerflow/generator/recipe.py +++ b/assemblerflow/generator/recipe.py @@ -424,12 +424,20 @@ class Recipe: if pipeline_string[-1] == "|": pipeline_string = pipeline_string[:-1] ...
change replace in case there are no forks
diff --git a/plugin/chaos/chaos.go b/plugin/chaos/chaos.go index <HASH>..<HASH> 100644 --- a/plugin/chaos/chaos.go +++ b/plugin/chaos/chaos.go @@ -3,7 +3,9 @@ package chaos import ( "context" + "math/rand" "os" + "time" "github.com/coredns/coredns/plugin" "github.com/coredns/coredns/request" @@ -34,8 +36,1...
plugin/chaos: randomize author list (#<I>) Randomize the author list on request; keep the zowners.go file stable so a 'go generate' remain stable. chaos.Owners could potentially be a map and be randomized by ranging over it, but this seems simpler and fewer lines of code. Bit of Easter hacking; seems more fair...
diff --git a/fermipy/diffuse/gt_assemble_model.py b/fermipy/diffuse/gt_assemble_model.py index <HASH>..<HASH> 100644 --- a/fermipy/diffuse/gt_assemble_model.py +++ b/fermipy/diffuse/gt_assemble_model.py @@ -209,7 +209,7 @@ class GtAssembleModel(Link): manifest = yaml.safe_load(open(args.input)) comp...
Fix to gt_assemble_model to set correct component name
diff --git a/test/test.js b/test/test.js index <HASH>..<HASH> 100644 --- a/test/test.js +++ b/test/test.js @@ -404,7 +404,7 @@ exports['Multiple Sets'] = function(test) { [47.5500, -52.6667, "St. John's"] ]; - places = proximity.addSet('places'); + places = proximity.addSet(); people = proxim...
Removing explicity set name.
diff --git a/packages/cli/src/commands/start.js b/packages/cli/src/commands/start.js index <HASH>..<HASH> 100644 --- a/packages/cli/src/commands/start.js +++ b/packages/cli/src/commands/start.js @@ -40,8 +40,9 @@ export const builder = yargs => { description: 'A path pointing to an existing Aragon client install...
Fixes a bug where start command wouldnt open in browser (#<I>)
diff --git a/py3status/modules/deadbeef.py b/py3status/modules/deadbeef.py index <HASH>..<HASH> 100644 --- a/py3status/modules/deadbeef.py +++ b/py3status/modules/deadbeef.py @@ -20,7 +20,7 @@ Format placeholders: {year} year in four digits For more placeholders, see title formatting 2.0 in 'deadbeef --help...
deadbeef: replace http with secure https
diff --git a/pyes/queryset.py b/pyes/queryset.py index <HASH>..<HASH> 100644 --- a/pyes/queryset.py +++ b/pyes/queryset.py @@ -151,6 +151,8 @@ class QuerySet(object): if self._facets: for facet in self._facets: query.facet.add(facet) + if self._start is not None: + ...
Update pyes/queryset.py Include "start" offset in search.
diff --git a/tests/Unit/ContainerTest.php b/tests/Unit/ContainerTest.php index <HASH>..<HASH> 100644 --- a/tests/Unit/ContainerTest.php +++ b/tests/Unit/ContainerTest.php @@ -324,9 +324,7 @@ final class ContainerTest extends TestCase 'class' => VariadicConstructor::class, '__co...
Fix tests (#<I>)
diff --git a/lib/worker.js b/lib/worker.js index <HASH>..<HASH> 100644 --- a/lib/worker.js +++ b/lib/worker.js @@ -375,6 +375,8 @@ worker.prototype.track = function(callback){ worker.prototype.untrack = function(name, queues, callback){ var self = this; + var jobs = []; + if(self.connection && self.connection...
update worker untrack commands to work across cluster (no multi)
diff --git a/pandas/core/strings.py b/pandas/core/strings.py index <HASH>..<HASH> 100644 --- a/pandas/core/strings.py +++ b/pandas/core/strings.py @@ -293,6 +293,8 @@ def str_contains(arr, pat, case=True, flags=0, na=np.nan, regex=True): See Also -------- match : analogous, but stricter, relying on re.ma...
DOC: updated Series.str.contains see also section (#<I>)
diff --git a/internal/input/input_js.go b/internal/input/input_js.go index <HASH>..<HASH> 100644 --- a/internal/input/input_js.go +++ b/internal/input/input_js.go @@ -249,8 +249,8 @@ func OnMouseMove(e js.Value) { func OnWheel(e js.Value) { // TODO: What if e.deltaMode is not DOM_DELTA_PIXEL? - theInput.wheelX = e...
input: Bug fix: wheel direction is opposite on browsers
diff --git a/lxd/storage/drivers/utils.go b/lxd/storage/drivers/utils.go index <HASH>..<HASH> 100644 --- a/lxd/storage/drivers/utils.go +++ b/lxd/storage/drivers/utils.go @@ -690,6 +690,16 @@ func copyDevice(inputPath string, outputPath string) error { return fmt.Errorf("Error copying file %q to %q: %w", inputPath, ...
lxd/storage/drivers/utils: Catch file close errors in copyDevice
diff --git a/spec/unit/mixin/shell_out_spec.rb b/spec/unit/mixin/shell_out_spec.rb index <HASH>..<HASH> 100644 --- a/spec/unit/mixin/shell_out_spec.rb +++ b/spec/unit/mixin/shell_out_spec.rb @@ -37,7 +37,7 @@ describe Ohai::Mixin::ShellOut, "shell_out" do "LANG" => "en_US.UTF-8", "LANGUAGE" => "en...
remove hardcoded path from my machine
diff --git a/lib/hll.js b/lib/hll.js index <HASH>..<HASH> 100644 --- a/lib/hll.js +++ b/lib/hll.js @@ -122,8 +122,11 @@ class HLLOperation extends Operation { * overwritten. If the bin does not exist, the operation will be denied. * @property {number} NO_FAIL - Do not raise error if operation is denied. * @proper...
Clarify docs for HLL ALLOW_FOLD policy (#<I>)
diff --git a/tests/test_filters.py b/tests/test_filters.py index <HASH>..<HASH> 100644 --- a/tests/test_filters.py +++ b/tests/test_filters.py @@ -72,7 +72,7 @@ class HaystackFilterTestCase(TestCase): def tearDown(self): MockPersonIndex().clear() - def test_filters_no_filters(self): + def test_fil...
added test for querying entries with unicode characters
diff --git a/src/client/js/Panels/MetaEditor/MetaEditorControl.DiagramDesignerWidgetEventHandlers.js b/src/client/js/Panels/MetaEditor/MetaEditorControl.DiagramDesignerWidgetEventHandlers.js index <HASH>..<HASH> 100644 --- a/src/client/js/Panels/MetaEditor/MetaEditorControl.DiagramDesignerWidgetEventHandlers.js +++ b/s...
#<I> cosmetic fix - allow long line as break makes it hard to read Former-commit-id: <I>e<I>bea<I>adcd<I>cac<I>c<I>b5ef<I>f<I>
diff --git a/docs/generate.py b/docs/generate.py index <HASH>..<HASH> 100755 --- a/docs/generate.py +++ b/docs/generate.py @@ -199,14 +199,27 @@ def generate_index(folder, original_paths): def get_description(arg): """Generates a proper description for the given argument""" desc = [] + otherwise = False ...
Make generated description on the docs more friendly
diff --git a/lib/slack_logger/slack_io.rb b/lib/slack_logger/slack_io.rb index <HASH>..<HASH> 100644 --- a/lib/slack_logger/slack_io.rb +++ b/lib/slack_logger/slack_io.rb @@ -8,7 +8,7 @@ module SlackLogger def self.write(message) client = SlackLogger.client client.auth_test - client.chat_postMes...
Adding in to_s for message write
diff --git a/src/Middleware/RoleMiddleware.php b/src/Middleware/RoleMiddleware.php index <HASH>..<HASH> 100644 --- a/src/Middleware/RoleMiddleware.php +++ b/src/Middleware/RoleMiddleware.php @@ -56,15 +56,23 @@ class RoleMiddleware */ public function handle(Request $request, Closure $next, $role) { - ...
Reverted RoleMiddleware back to what it was before things started breaking.
diff --git a/src/Composer/Repository/VcsRepository.php b/src/Composer/Repository/VcsRepository.php index <HASH>..<HASH> 100644 --- a/src/Composer/Repository/VcsRepository.php +++ b/src/Composer/Repository/VcsRepository.php @@ -66,7 +66,7 @@ class VcsRepository extends ArrayRepository implements ConfigurableRepositoryIn...
VcsRepository: limit type of versionTransportExceptions (#<I>)
diff --git a/salt/cloud/__init__.py b/salt/cloud/__init__.py index <HASH>..<HASH> 100644 --- a/salt/cloud/__init__.py +++ b/salt/cloud/__init__.py @@ -1666,7 +1666,7 @@ def run_parallel_map_providers_query(data): ''' try: import Crypto.Random - Crypto.Random.atfork() + Crypto.Random.atf...
Re-add the pylint disable comment
diff --git a/doapi/cli/_util.py b/doapi/cli/_util.py index <HASH>..<HASH> 100644 --- a/doapi/cli/_util.py +++ b/doapi/cli/_util.py @@ -153,7 +153,8 @@ class Cache(object): self.cache_droplets() elif key == "image": self.cache_images() - if name in self.caches[key]["name"]: + ...
Warn/error when the user tries to name an image with the name of a slug
diff --git a/openquake/baselib/hdf5.py b/openquake/baselib/hdf5.py index <HASH>..<HASH> 100644 --- a/openquake/baselib/hdf5.py +++ b/openquake/baselib/hdf5.py @@ -173,13 +173,17 @@ class PickleableSequence(collections.Sequence): return repr(self._objects) def __toh5__(self): - dic = { - ...
Stored the number of bytes used
diff --git a/app/models/concerns/worthwhile/solr_document_behavior.rb b/app/models/concerns/worthwhile/solr_document_behavior.rb index <HASH>..<HASH> 100644 --- a/app/models/concerns/worthwhile/solr_document_behavior.rb +++ b/app/models/concerns/worthwhile/solr_document_behavior.rb @@ -14,7 +14,7 @@ module Worthwhile ...
SolrDocument to_parm should work with noid or pid
diff --git a/indra/explanation/model_checker/pybel.py b/indra/explanation/model_checker/pybel.py index <HASH>..<HASH> 100644 --- a/indra/explanation/model_checker/pybel.py +++ b/indra/explanation/model_checker/pybel.py @@ -40,8 +40,10 @@ class PybelModelChecker(ModelChecker): include_variants=include_varia...
Update pybel graph in modelchecker
diff --git a/propagation.go b/propagation.go index <HASH>..<HASH> 100644 --- a/propagation.go +++ b/propagation.go @@ -178,7 +178,13 @@ func extractTraceContext(opaqueCarrier interface{}) (SpanContext, error) { return spanContext, ot.ErrSpanContextNotFound } - if !spanContext.Suppressed && (spanContext.SpanID ==...
return from tracerS.Extract spanContext, when Instana headers were corrupted but w3 context was found
diff --git a/rachiopy/__init__.py b/rachiopy/__init__.py index <HASH>..<HASH> 100644 --- a/rachiopy/__init__.py +++ b/rachiopy/__init__.py @@ -33,11 +33,8 @@ class Rachio(object): (resp, content) = _HTTP.request(url, method, headers=self._headers, body=body) - ...
Better handling of request responses. Better detection of JSON data encoding in the response.
diff --git a/be/cli.py b/be/cli.py index <HASH>..<HASH> 100644 --- a/be/cli.py +++ b/be/cli.py @@ -128,10 +128,10 @@ def in_(ctx, context, yes): "BE_PROJECTROOT": os.path.join( _extern.cwd(), project).replace("\\", "/"), "BE_PROJECTSROOT": _extern.cwd(), - "BE_ACTIVE": "true", + ...
Refactored environment_map to redirect
diff --git a/lib/chrome/launch.js b/lib/chrome/launch.js index <HASH>..<HASH> 100644 --- a/lib/chrome/launch.js +++ b/lib/chrome/launch.js @@ -31,7 +31,7 @@ module.exports = function() { if (config.fps) args.push('--show-fps-counter') - const child = cp.spawn(path, args, { detached: process.platform !== 'win...
Don't detach chrome (close on wright exit)
diff --git a/src/Object3D.js b/src/Object3D.js index <HASH>..<HASH> 100644 --- a/src/Object3D.js +++ b/src/Object3D.js @@ -29,6 +29,8 @@ export default class Object3D { return this; } + raycast() {} + render(gl, scene, camera) { this.childs.forEach(object => object.render(gl, scene, cam...
add empty raycast method to object3d
diff --git a/acrachilisync-tools/src/main/java/fr/dudie/acrachilisync/tools/MigrateDescriptions.java b/acrachilisync-tools/src/main/java/fr/dudie/acrachilisync/tools/MigrateDescriptions.java index <HASH>..<HASH> 100644 --- a/acrachilisync-tools/src/main/java/fr/dudie/acrachilisync/tools/MigrateDescriptions.java +++ b/a...
uncomment call to redmine.updateIssue()
diff --git a/src/Adapter/AbstractCriterion.php b/src/Adapter/AbstractCriterion.php index <HASH>..<HASH> 100644 --- a/src/Adapter/AbstractCriterion.php +++ b/src/Adapter/AbstractCriterion.php @@ -81,7 +81,7 @@ abstract class AbstractCriterion implements IteratorAggregate * @return static The found criterion ...
The getter from the AbstractCriterion is now public
diff --git a/src/ExternalModule.php b/src/ExternalModule.php index <HASH>..<HASH> 100644 --- a/src/ExternalModule.php +++ b/src/ExternalModule.php @@ -75,7 +75,6 @@ class ExternalModule extends Module implements iExternalModule return $o; } - /** Обработчик сериализации объекта */ public function __sleep()...
Removed Event::subscribe from ExternalModule from __wakeup
diff --git a/lib/pake/pakeGit.class.php b/lib/pake/pakeGit.class.php index <HASH>..<HASH> 100644 --- a/lib/pake/pakeGit.class.php +++ b/lib/pake/pakeGit.class.php @@ -20,6 +20,11 @@ class pakeGit $this->repository_path = $repository_path; } + public function getPath() + { + return $this->re...
as repository-path is guessed sometimes, code might need to get real path at some point
diff --git a/src/usertiming.js b/src/usertiming.js index <HASH>..<HASH> 100644 --- a/src/usertiming.js +++ b/src/usertiming.js @@ -453,8 +453,8 @@ window.performance.measure = function (measureName, startMark, endMark) { var now = window.performance.now(); - if (!measureNa...
measure() without a measureName should do a typeof check instead of truthy, and throw a SyntaxError
diff --git a/Gruntfile.js b/Gruntfile.js index <HASH>..<HASH> 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -43,6 +43,6 @@ module.exports = function (grunt) { grunt.loadNpmTasks('grunt-simple-mocha'); grunt.loadNpmTasks('grunt-contrib-watch'); - grunt.registerTask('phpwatch', ['php:test', 'watch']); + grunt.reg...
Fix target in `phpwatch` task to point to a valid target.
diff --git a/test.py b/test.py index <HASH>..<HASH> 100644 --- a/test.py +++ b/test.py @@ -1,6 +1,7 @@ import contextlib import datetime +import time import unittest2 import pyoo @@ -633,12 +634,14 @@ class ChartsTestCase(BaseTestCase): with self.create_chart() as chart: series = chart.dia...
Fix failing tests because of delay before changes are applied by OpenOffice.
diff --git a/devices/orvibo.js b/devices/orvibo.js index <HASH>..<HASH> 100644 --- a/devices/orvibo.js +++ b/devices/orvibo.js @@ -75,6 +75,26 @@ module.exports = [ }, }, { + zigbeeModel: ['396483ce8b3f4e0d8e9d79079a35a420'], + model: 'CM10ZW', + vendor: 'ORVIBO', + descri...
Add CM<I>ZW (#<I>) The new CM<I>ZW model is a multi-functional 3 gang relay to replace the RL<I>QZB model. It's the same device, with a different ID. Issue : <URL>
diff --git a/lib/couchdb/database.rb b/lib/couchdb/database.rb index <HASH>..<HASH> 100644 --- a/lib/couchdb/database.rb +++ b/lib/couchdb/database.rb @@ -285,6 +285,15 @@ module Couchdb Response.new(http.request(uri, req)) end + def head(doc_id, credentials = nil) + uri = doc_uri(doc_id) + r...
Couchdb::Database#head. #<I>. Useful for detecting the presence of a document, which in turn is useful for attaching objects to documents. (In order to attach objects to documents, a rev must be provided. The easiest way to get that rev, if it isn't already present, is to do a HEAD on the document ID.)
diff --git a/lib/Unexpected.js b/lib/Unexpected.js index <HASH>..<HASH> 100644 --- a/lib/Unexpected.js +++ b/lib/Unexpected.js @@ -258,7 +258,14 @@ Unexpected.prototype.addType = function (type) { return inspect.apply(this, arguments); } }; - this.types.unshift(extendedType); + if (exte...
Add support for "abstract" types (identify: false).
diff --git a/src/de/mrapp/android/preference/activity/PreferenceFragment.java b/src/de/mrapp/android/preference/activity/PreferenceFragment.java index <HASH>..<HASH> 100644 --- a/src/de/mrapp/android/preference/activity/PreferenceFragment.java +++ b/src/de/mrapp/android/preference/activity/PreferenceFragment.java @@ -2...
Bugfix #3: The new value, which is passed to a listener, is not null anymore, when restoring the default value has not changed the value.
diff --git a/examples/opf/bin/OpfRunExperiment.py b/examples/opf/bin/OpfRunExperiment.py index <HASH>..<HASH> 100755 --- a/examples/opf/bin/OpfRunExperiment.py +++ b/examples/opf/bin/OpfRunExperiment.py @@ -20,7 +20,7 @@ # ---------------------------------------------------------------------- """This script is a co...
Fix typos, expand non-obvious acronyms.
diff --git a/marshmallow_jsonapi/fields.py b/marshmallow_jsonapi/fields.py index <HASH>..<HASH> 100644 --- a/marshmallow_jsonapi/fields.py +++ b/marshmallow_jsonapi/fields.py @@ -7,6 +7,7 @@ from marshmallow.fields import * # noqa from .utils import resolve_params, get_value_or_raise + class BaseRelationship(Fie...
Overloaded _deserialize method and added type validation
diff --git a/src/AddMany.php b/src/AddMany.php index <HASH>..<HASH> 100644 --- a/src/AddMany.php +++ b/src/AddMany.php @@ -106,7 +106,7 @@ class AddMany { return false; } $subpost = new \SubPost; - $subpost->set('post_title', 'subpost'); + $subpost->set('post_title', 'AddMany subpost '.md5(mt_ran...
Make title and slug of subpost unique
diff --git a/src/locale/lang/ua.js b/src/locale/lang/ua.js index <HASH>..<HASH> 100644 --- a/src/locale/lang/ua.js +++ b/src/locale/lang/ua.js @@ -1,7 +1,7 @@ export default { el: { colorpicker: { - confirm: 'OK', + confirm: 'Обрати', clear: 'Очистити' }, datepicker: { @@ -107,14 +10...
fix: Update ua locale (#<I>)
diff --git a/activerecord/lib/active_record/model_schema.rb b/activerecord/lib/active_record/model_schema.rb index <HASH>..<HASH> 100644 --- a/activerecord/lib/active_record/model_schema.rb +++ b/activerecord/lib/active_record/model_schema.rb @@ -115,7 +115,7 @@ module ActiveRecord # the documentation for Active...
call to_s on value passed to table_name=
diff --git a/lib/config/cli.js b/lib/config/cli.js index <HASH>..<HASH> 100644 --- a/lib/config/cli.js +++ b/lib/config/cli.js @@ -22,7 +22,8 @@ function getConfig(argv) { const coersions = { boolean: val => val === 'true', - list: val => val.split(',').map(el => el.trim()), + list: val => + val ==...
refactor: massage [] or empty string for cli lists
diff --git a/lib/puppet/face/facts.rb b/lib/puppet/face/facts.rb index <HASH>..<HASH> 100644 --- a/lib/puppet/face/facts.rb +++ b/lib/puppet/face/facts.rb @@ -11,7 +11,7 @@ EXCLUDE_LIST = %w[ facterversion memory\.swap\.available memory\.swap\.capacity memory\.swap\.used memory\.system\.available_bytes memory\.sy...
(maint) Fix exclude_list for `puppet facts diff` This commit adds missing characters from the `EXCLUDE_LIST` array of regular expressions used for filtering the `puppet facts diff` output of volatile facts.
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index <HASH>..<HASH> 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -23,6 +23,7 @@ require 'vcr' VCR.configure do |c| c.cassette_library_dir = 'spec/fixtures/coal_cassettes' c.hook_into :webmock + config.ignore_hosts 'codeclimate.com' end ...
VCR should ignore codeclimate.com
diff --git a/src/main/java/io/redlink/sdk/util/ApiHelper.java b/src/main/java/io/redlink/sdk/util/ApiHelper.java index <HASH>..<HASH> 100644 --- a/src/main/java/io/redlink/sdk/util/ApiHelper.java +++ b/src/main/java/io/redlink/sdk/util/ApiHelper.java @@ -12,7 +12,7 @@ import java.util.regex.Pattern; */ public class ...
quick fix for getting the version when sdk is used as library (TODO: solve this)
diff --git a/lib/data_mapper/support/inflection.rb b/lib/data_mapper/support/inflection.rb index <HASH>..<HASH> 100644 --- a/lib/data_mapper/support/inflection.rb +++ b/lib/data_mapper/support/inflection.rb @@ -2,7 +2,9 @@ # part of the Ruby On Rails web-framework (http://rubyonrails.org) # # Methods have been modif...
You must have english gem installed now. sudo gem install english
diff --git a/pyrax/fakes.py b/pyrax/fakes.py index <HASH>..<HASH> 100644 --- a/pyrax/fakes.py +++ b/pyrax/fakes.py @@ -619,7 +619,7 @@ class FakeIdentity(BaseIdentity): self._default_region = random.choice(("DFW", "ORD")) self.services = {"fake": FakeIdentityService(self)} - def authenticate(self...
Add backwards compatibility param to fake method
diff --git a/lint-staged.config.js b/lint-staged.config.js index <HASH>..<HASH> 100644 --- a/lint-staged.config.js +++ b/lint-staged.config.js @@ -1,6 +1,6 @@ 'use strict'; module.exports = { - '*.js': ['prettier --write', 'eslint --fix', 'git add'], - '*.{json,md,yml,css}': ['prettier --write', 'git add'], + '*...
chore: update lint-staged config (#<I>)
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -49,6 +49,7 @@ setup(name='palladium', 'License :: OSI Approved :: Apache Software License', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', + 'Progra...
Added Python <I> support info to setup.py
diff --git a/underfs/swift/src/main/java/tachyon/underfs/swift/SwiftUnderFileSystemUtils.java b/underfs/swift/src/main/java/tachyon/underfs/swift/SwiftUnderFileSystemUtils.java index <HASH>..<HASH> 100644 --- a/underfs/swift/src/main/java/tachyon/underfs/swift/SwiftUnderFileSystemUtils.java +++ b/underfs/swift/src/main...
Fixing "mvn site" warnings and cleaning up JavaDoc style in tachyon.underfs.swift.
diff --git a/samples/send.js b/samples/send.js index <HASH>..<HASH> 100644 --- a/samples/send.js +++ b/samples/send.js @@ -29,6 +29,7 @@ var fs = require('fs'); var types = { service: String, topic: String, + id: String, 'message-ttl': Number, delay: Number, file: String
Add id to known types for send.js
diff --git a/packages/perspective-common/common.config.js b/packages/perspective-common/common.config.js index <HASH>..<HASH> 100644 --- a/packages/perspective-common/common.config.js +++ b/packages/perspective-common/common.config.js @@ -1,17 +1,21 @@ const UglifyJSPlugin = require('uglifyjs-webpack-plugin'); ...
Added flag to disable minification for faster development builds.
diff --git a/src/Monolog/Handler/BufferHandler.php b/src/Monolog/Handler/BufferHandler.php index <HASH>..<HASH> 100644 --- a/src/Monolog/Handler/BufferHandler.php +++ b/src/Monolog/Handler/BufferHandler.php @@ -126,4 +126,22 @@ class BufferHandler extends AbstractHandler $this->handler->reset(); }...
Add formatter forwarding to BufferHandler as well
diff --git a/test/Utils/ProjectTest.php b/test/Utils/ProjectTest.php index <HASH>..<HASH> 100644 --- a/test/Utils/ProjectTest.php +++ b/test/Utils/ProjectTest.php @@ -52,10 +52,10 @@ class ProjectTest extends \PHPUnit_Framework_TestCase public function testDownloadArchive() { $project = new Project(s...
chore: fix master main (#<I>)
diff --git a/apiclient/discovery.py b/apiclient/discovery.py index <HASH>..<HASH> 100644 --- a/apiclient/discovery.py +++ b/apiclient/discovery.py @@ -64,6 +64,11 @@ class JsonModel(object): def request(self, headers, path_params, query_params, body_value): query = self.build_query(query_params) headers['a...
Added user-agent for the library
diff --git a/neurondm/neurondm/models/apinat_npo.py b/neurondm/neurondm/models/apinat_npo.py index <HASH>..<HASH> 100644 --- a/neurondm/neurondm/models/apinat_npo.py +++ b/neurondm/neurondm/models/apinat_npo.py @@ -81,10 +81,20 @@ def main(): log.error(f'bad data for {c} {s} {p} {o}') raise e ...
apinat npo hardcode fix for _sigh failures amusingly I named the variable sigh before I knew that _sigh not being called was the issue
diff --git a/luigi/parameter.py b/luigi/parameter.py index <HASH>..<HASH> 100644 --- a/luigi/parameter.py +++ b/luigi/parameter.py @@ -94,9 +94,9 @@ class Parameter(object): * Any value provided on the command line: - - With qualified task name (eg. ``--TaskA-param xyz``) + - To the root ...
docs: Correct order of parameter resolution There were some changes in #<I> and #<I> in which I forgot to update the docs.
diff --git a/salt/_compat.py b/salt/_compat.py index <HASH>..<HASH> 100644 --- a/salt/_compat.py +++ b/salt/_compat.py @@ -144,6 +144,12 @@ class IPv6AddressScoped(ipaddress.IPv6Address): :param address: ''' + # pylint: disable-all + if not hasattr(self, '_is_packed_binary'): + ...
Roll back some changes to _compat.py
diff --git a/openquake/commonlib/readinput.py b/openquake/commonlib/readinput.py index <HASH>..<HASH> 100644 --- a/openquake/commonlib/readinput.py +++ b/openquake/commonlib/readinput.py @@ -380,9 +380,9 @@ def get_site_collection(oqparam): an :class:`openquake.commonlib.oqvalidation.OqParam` instance """...
Restored req_site_params as it was [skip CI]
diff --git a/views/js/qtiCreator/editor/ckEditor/htmlEditor.js b/views/js/qtiCreator/editor/ckEditor/htmlEditor.js index <HASH>..<HASH> 100755 --- a/views/js/qtiCreator/editor/ckEditor/htmlEditor.js +++ b/views/js/qtiCreator/editor/ckEditor/htmlEditor.js @@ -172,17 +172,8 @@ define([ } - ...
replace old dirty hack with a better fix for ck combobox visibility issue
diff --git a/ospd/ospd.py b/ospd/ospd.py index <HASH>..<HASH> 100644 --- a/ospd/ospd.py +++ b/ospd/ospd.py @@ -504,11 +504,6 @@ class OSPDaemon: stream.close() - def calculate_progress(self, scan_id: str) -> float: - """ Calculate the total scan progress. """ - - return self.scan_collectio...
Remove wrapper and access scan_collection method directly
diff --git a/Model/Api/ShippingMethods.php b/Model/Api/ShippingMethods.php index <HASH>..<HASH> 100644 --- a/Model/Api/ShippingMethods.php +++ b/Model/Api/ShippingMethods.php @@ -795,7 +795,7 @@ class ShippingMethods implements ShippingMethodsInterface $ignoredShippingAddressCoupons = $this->configHelper->getI...
Collect immutable quote totals when checking if the coupon is invalid for the shipping address (#<I>)
diff --git a/acceptance-tests/src/test/java/me/atam/atam4jsampleapp/PassingTestAcceptanceTest.java b/acceptance-tests/src/test/java/me/atam/atam4jsampleapp/PassingTestAcceptanceTest.java index <HASH>..<HASH> 100644 --- a/acceptance-tests/src/test/java/me/atam/atam4jsampleapp/PassingTestAcceptanceTest.java +++ b/accepta...
Increased intital delay to ten seconds as sometimes tests were completing quicker than expected and making the actual test fail.
diff --git a/lib/carbon_date/version.rb b/lib/carbon_date/version.rb index <HASH>..<HASH> 100644 --- a/lib/carbon_date/version.rb +++ b/lib/carbon_date/version.rb @@ -1,3 +1,3 @@ module CarbonDate - VERSION = "0.0.4" + VERSION = "0.0.5" end
Bumped version to <I>
diff --git a/lib/phobos/deep_struct.rb b/lib/phobos/deep_struct.rb index <HASH>..<HASH> 100644 --- a/lib/phobos/deep_struct.rb +++ b/lib/phobos/deep_struct.rb @@ -16,9 +16,10 @@ module Phobos end def to_deep_struct(v) - if v.is_a?(Hash) + case v + when Hash self.class.new(v) - e...
Moved from if-elseif to case
diff --git a/cmd/fe/main.go b/cmd/fe/main.go index <HASH>..<HASH> 100644 --- a/cmd/fe/main.go +++ b/cmd/fe/main.go @@ -105,7 +105,11 @@ Options: var assets string if s, ok := utils.Argument(d, "--assets-dir"); ok { - assets = s + abspath, err := filepath.Abs(s) + if err != nil { + log.PanicErrorf(err, "get a...
fe: panic if index.html doesn't exist
diff --git a/piprot/piprot.py b/piprot/piprot.py index <HASH>..<HASH> 100755 --- a/piprot/piprot.py +++ b/piprot/piprot.py @@ -90,7 +90,7 @@ def get_version_and_release_date(requirement, version=None, verbose=False, relea print ('{} isn\'t even on PyPi. Check that the project still exists!'.format( ...
Remove that hideous except: and replace it with ValueError
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -13,22 +13,23 @@ import os from setuptools import setup -def read(fname): - return open(os.path.join(os.path.dirname(__file__), fname)).read() +LONG_DESC = open('pypi_readme.rst').read() +LICENSE = open('LICENSE').read(...
Improve package information (e.g. description and license
diff --git a/app/javascripts/FormInput.js b/app/javascripts/FormInput.js index <HASH>..<HASH> 100644 --- a/app/javascripts/FormInput.js +++ b/app/javascripts/FormInput.js @@ -86,16 +86,16 @@ class FormInput extends React.Component { } if(this.state.accounts.length > 0){ - console.log('detail', this.sta...
Fix bug showing No more spots left when there are more spots available.
diff --git a/src/factories/Resource.js b/src/factories/Resource.js index <HASH>..<HASH> 100644 --- a/src/factories/Resource.js +++ b/src/factories/Resource.js @@ -46,6 +46,13 @@ export default ['$resource', '$rootScope', ($resource, $rootScope) => { }; /** + * Manually mark this model as "cl...
add method to manually mark models as "clean"
diff --git a/sos/jupyter/kernel.py b/sos/jupyter/kernel.py index <HASH>..<HASH> 100644 --- a/sos/jupyter/kernel.py +++ b/sos/jupyter/kernel.py @@ -1025,8 +1025,11 @@ class SoS_Kernel(Kernel): return self._do_execute(remaining_code, silent, store_history, user_expressions, allow_stdin) elif self.MA...
Display error message of enable_matplotlib, this magic still does not work though.
diff --git a/steam/tf2.py b/steam/tf2.py index <HASH>..<HASH> 100644 --- a/steam/tf2.py +++ b/steam/tf2.py @@ -188,6 +188,13 @@ class backpack: pass return ilist + def get_item_by_id(self, id): + """ Takes an id (serial number) and returns the item if one is found """ + for ...
Add get_item_by_id to steamodd
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -79,7 +79,7 @@ function scopedName(name, filename, css) { return loaderUtils.interpolateName( { resourcePath: filename }, localModuleNameFormat.replace(/\[localName\]/g, name), - { content: css } + { content...
fix all classes from same file having same hashes/emojis
diff --git a/tests/Symfony/Tests/Component/Locale/Stub/StubIntlDateFormatterTest.php b/tests/Symfony/Tests/Component/Locale/Stub/StubIntlDateFormatterTest.php index <HASH>..<HASH> 100644 --- a/tests/Symfony/Tests/Component/Locale/Stub/StubIntlDateFormatterTest.php +++ b/tests/Symfony/Tests/Component/Locale/Stub/StubInt...
[Locale] do not use unimplemented chars in examples
diff --git a/pyprophet/levels_contexts.py b/pyprophet/levels_contexts.py index <HASH>..<HASH> 100644 --- a/pyprophet/levels_contexts.py +++ b/pyprophet/levels_contexts.py @@ -288,9 +288,11 @@ def subsample_osw(infile, outfile, subsample_ratio, test): ms2_present = check_sqlite_table(conn, "FEATURE_MS2") trans...
[FEATURE Subsample Merged File] Debugging
diff --git a/src/Validator.php b/src/Validator.php index <HASH>..<HASH> 100644 --- a/src/Validator.php +++ b/src/Validator.php @@ -25,7 +25,7 @@ use stdClass; class Validator implements IValidator { - private const BELL = "\x07"; + const BELL = "\x07"; /** @var IValidatorHelper */ protected $helpe...
Removed access modifier to maintain php 7 compatibility
diff --git a/js/coinfloor.js b/js/coinfloor.js index <HASH>..<HASH> 100644 --- a/js/coinfloor.js +++ b/js/coinfloor.js @@ -59,7 +59,6 @@ module.exports = class coinfloor extends Exchange { 'markets': { 'BTC/GBP': { 'id': 'XBT/GBP', 'symbol': 'BTC/GBP', 'base': 'BTC', 'quote': 'GBP', 'baseI...
[coinfloor] removed bugus BCH/GBP market
diff --git a/salt/states/tomcat.py b/salt/states/tomcat.py index <HASH>..<HASH> 100644 --- a/salt/states/tomcat.py +++ b/salt/states/tomcat.py @@ -104,6 +104,7 @@ def war_deployed(name, war, url='http://localhost:8080/manager', __env__='base', # Test if __opts__['test']: + ret['result'] = None ...
fixing prereq tomcat.war_deployed function
diff --git a/lib/active_record/connection_adapters/sqlserver_adapter.rb b/lib/active_record/connection_adapters/sqlserver_adapter.rb index <HASH>..<HASH> 100644 --- a/lib/active_record/connection_adapters/sqlserver_adapter.rb +++ b/lib/active_record/connection_adapters/sqlserver_adapter.rb @@ -87,6 +87,8 @@ module Acti...
Add binary timestamp datatype handling.
diff --git a/src/chippyash/Type/TypeFactory.php b/src/chippyash/Type/TypeFactory.php index <HASH>..<HASH> 100644 --- a/src/chippyash/Type/TypeFactory.php +++ b/src/chippyash/Type/TypeFactory.php @@ -253,7 +253,7 @@ abstract class TypeFactory if (!in_array($requiredType, self::$validTypes)) { throw...
change function_exists to extension_loaded
diff --git a/neutronclient/neutron/v2_0/rbac.py b/neutronclient/neutron/v2_0/rbac.py index <HASH>..<HASH> 100644 --- a/neutronclient/neutron/v2_0/rbac.py +++ b/neutronclient/neutron/v2_0/rbac.py @@ -32,12 +32,14 @@ class ListRBACPolicy(neutronV20.ListCommand): list_columns = ['id', 'object_id'] pagination_sup...
Do not allow name lookups on RBAC policies RBAC policies have no name field so the name query to the server was always returning all entries since the name filter was ignored. This corrects the behavior by disabling the name lookup for RBAC policies. Change-Id: I6c5afa<I>cefb<I>e<I>a1aaf<I>c<I>dc<I>c Closes-Bug: #<I...
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -11,5 +11,6 @@ setup(name='Flask-PAM', install_requires=[ 'simplepam>=0.1.5', 'Flask>=0.10.1', + 'python-jose>=0.6.1', ], )
jwt: add python-jose dependency to setup.py
diff --git a/SoftLayer/managers/firewall.py b/SoftLayer/managers/firewall.py index <HASH>..<HASH> 100644 --- a/SoftLayer/managers/firewall.py +++ b/SoftLayer/managers/firewall.py @@ -10,7 +10,7 @@ from SoftLayer import utils RULE_MASK = ('mask[orderValue,action,destinationIpAddress,' 'destinationIpSubnet...
Add notes to RULE_MASK in firewall manager (#<I>)
diff --git a/app/Module/TopSurnamesModule.php b/app/Module/TopSurnamesModule.php index <HASH>..<HASH> 100644 --- a/app/Module/TopSurnamesModule.php +++ b/app/Module/TopSurnamesModule.php @@ -111,6 +111,10 @@ class TopSurnamesModule extends AbstractModule implements ModuleBlockInterface ->groupBy(['surn...
Fix: #<I> - some database drivers return numeric columns as strings
diff --git a/ripe/atlas/sagan/__init__.py b/ripe/atlas/sagan/__init__.py index <HASH>..<HASH> 100644 --- a/ripe/atlas/sagan/__init__.py +++ b/ripe/atlas/sagan/__init__.py @@ -1,6 +1,6 @@ from __future__ import absolute_import -from .base import ResultParseError +from .base import Result, ResultParseError from .dns ...
Added Result to __init__
diff --git a/tests/settings.py b/tests/settings.py index <HASH>..<HASH> 100644 --- a/tests/settings.py +++ b/tests/settings.py @@ -117,3 +117,5 @@ DJSTRIPE_WEBHOOK_VALIDATION = "verify_signature" DJSTRIPE_WEBHOOK_SECRET = os.environ.get("DJSTRIPE_TEST_WEBHOOK_SECRET", "whsec_XXXXX") STATIC_URL = "/static/" + +DEFAU...
Set DEFAULT_AUTO_FIELD in tests
diff --git a/src/Http/Controllers/Cms/ShowPostController.php b/src/Http/Controllers/Cms/ShowPostController.php index <HASH>..<HASH> 100644 --- a/src/Http/Controllers/Cms/ShowPostController.php +++ b/src/Http/Controllers/Cms/ShowPostController.php @@ -154,6 +154,9 @@ class ShowPostController extends CmsController ...
Cleaned up the output of the showcontroller by removing the postmeta from it.
diff --git a/backbone.js b/backbone.js index <HASH>..<HASH> 100644 --- a/backbone.js +++ b/backbone.js @@ -711,6 +711,7 @@ // Do not add multiple models with the same `id`. model = existing || model; + if (!model) continue; if (order && (model.isNew() || !modelMap[model.id])) order.p...
Check that model exists before trying to verify uniqueness When calling fetch with {add: false} and model does not exist in collection, model uniqueness check tries to access id of undefined. This verifies that model is set before checking for existing models.
diff --git a/lib/processMultipart.js b/lib/processMultipart.js index <HASH>..<HASH> 100644 --- a/lib/processMultipart.js +++ b/lib/processMultipart.js @@ -58,14 +58,12 @@ module.exports = (options, req, res, next) => { ? tempFileHandler(options, field, filename) // Upload into temporary file. : memHandler...
Fixes richardgirges/express-fileupload#<I>