diff
stringlengths
65
26.7k
message
stringlengths
7
9.92k
diff --git a/biomart/dataset.py b/biomart/dataset.py index <HASH>..<HASH> 100644 --- a/biomart/dataset.py +++ b/biomart/dataset.py @@ -110,7 +110,8 @@ class BiomartDataset(object): dataset_filter = self.filters.get(filter_name, None) if not dataset_filter: - self.show_filters(...
be less verbose if not asked
diff --git a/templates/api/services/protocols/bearer.js b/templates/api/services/protocols/bearer.js index <HASH>..<HASH> 100644 --- a/templates/api/services/protocols/bearer.js +++ b/templates/api/services/protocols/bearer.js @@ -13,7 +13,7 @@ exports.authorize = function(token, done) { Passport.findOne({ accessTok...
In sails <I> findById returns and array In sails <I> `findById` returns and array. One might expect to be able to access the user model by `req.user` instead of `req.user[0]`
diff --git a/lib/select.js b/lib/select.js index <HASH>..<HASH> 100644 --- a/lib/select.js +++ b/lib/select.js @@ -85,20 +85,15 @@ var selectors = { op = operators[op]; return function(el) { var attr; - switch (key) { - case 'for': - attr = el.htmlFor; - break; - ca...
Replaced unoptimized switched by if/else
diff --git a/lib/omnibus/cli/base.rb b/lib/omnibus/cli/base.rb index <HASH>..<HASH> 100644 --- a/lib/omnibus/cli/base.rb +++ b/lib/omnibus/cli/base.rb @@ -94,7 +94,7 @@ module Omnibus aliases: '-l', type: :string, enum: %w(fatal error warn info debug), - lazy_default: 'warn' + lazy_defaul...
Use :info as the default log level
diff --git a/client/servers/manager.go b/client/servers/manager.go index <HASH>..<HASH> 100644 --- a/client/servers/manager.go +++ b/client/servers/manager.go @@ -204,7 +204,7 @@ func (m *Manager) SetServers(servers Servers) bool { // Determine if they are equal equal := m.serversAreEqual(servers) - // If server ...
fix typo and add one more test scenario
diff --git a/lib/python/vdm/static/js/vdm.ui.js b/lib/python/vdm/static/js/vdm.ui.js index <HASH>..<HASH> 100755 --- a/lib/python/vdm/static/js/vdm.ui.js +++ b/lib/python/vdm/static/js/vdm.ui.js @@ -1796,10 +1796,10 @@ var loadPage = function() { id: VdmUI.getCurrentDbCookie() } ...
VDM-<I>: fixed issue with enable/disable partition detection
diff --git a/tutorials/ot-info-for-taxon-name.py b/tutorials/ot-info-for-taxon-name.py index <HASH>..<HASH> 100755 --- a/tutorials/ot-info-for-taxon-name.py +++ b/tutorials/ot-info-for-taxon-name.py @@ -1,6 +1,7 @@ #!/usr/bin/env python -'''Simple command-line tool that wraps the taxonomic name matching service - w...
corrected doc string to reflect current behavior
diff --git a/qiime_tools/util.py b/qiime_tools/util.py index <HASH>..<HASH> 100644 --- a/qiime_tools/util.py +++ b/qiime_tools/util.py @@ -124,7 +124,7 @@ def parse_taxonomy_table(idtaxFNH): idtax = OrderedDict() with file_handle(idtaxFNH) as idtxF: for line in idtxF: - ID, tax = line.stri...
Restores accidental reversion of commit <I>c<I> introduced by commit <I>d6a<I>.
diff --git a/lib/fixture_builder.rb b/lib/fixture_builder.rb index <HASH>..<HASH> 100755 --- a/lib/fixture_builder.rb +++ b/lib/fixture_builder.rb @@ -14,6 +14,8 @@ module FixtureBuilder class Configuration attr_accessor :select_sql, :delete_sql, :skip_tables, :files_to_check, :record_name_fields, :fixture_buil...
When using database utilities not covered by schema.rb someone may choose to use sql. FixtureBuilder crapped out because it was hard coded to check for schema.rb. This patch adds other default schema files and only appends them to the check list if they exist.
diff --git a/internal/cli/ui.go b/internal/cli/ui.go index <HASH>..<HASH> 100644 --- a/internal/cli/ui.go +++ b/internal/cli/ui.go @@ -28,9 +28,10 @@ func (c *UICommand) Run(args []string) int { return 1 } - if c.basis.Local() { - c.basis.UI().Output("Vagrant must be configured in server mode to access the UI",...
Temporarily disable local check in client UI setup
diff --git a/controller/frontend/src/Controller/Frontend/Product/Standard.php b/controller/frontend/src/Controller/Frontend/Product/Standard.php index <HASH>..<HASH> 100644 --- a/controller/frontend/src/Controller/Frontend/Product/Standard.php +++ b/controller/frontend/src/Controller/Frontend/Product/Standard.php @@ -3...
Aggregate only products from active categories
diff --git a/cf/api/strategy/domains.go b/cf/api/strategy/domains.go index <HASH>..<HASH> 100644 --- a/cf/api/strategy/domains.go +++ b/cf/api/strategy/domains.go @@ -51,10 +51,23 @@ func (s domainsEndpointStrategy) DeleteSharedDomainURL(guid string) string { return buildURL(v2("domains", guid), params{recursive: tru...
Stop using deprecated endpoints for domains. [Fixes #<I>]
diff --git a/bencode/misc.go b/bencode/misc.go index <HASH>..<HASH> 100644 --- a/bencode/misc.go +++ b/bencode/misc.go @@ -6,16 +6,10 @@ import ( ) // Wow Go is retarded. -var marshalerType = reflect.TypeOf(func() *Marshaler { - var m Marshaler - return &m -}()).Elem() - -// Wow Go is retarded. -var unmarshalerType...
bencode: simplify getting `marshalerType` and `unmarshalerType` (#<I>)
diff --git a/salt/master.py b/salt/master.py index <HASH>..<HASH> 100644 --- a/salt/master.py +++ b/salt/master.py @@ -413,7 +413,8 @@ class AESFuncs(object): pub_path = os.path.join(self.opts['pki_dir'], 'minions', id_) with open(pub_path, 'r') as fp_: minion_pub = fp_.read() - tm...
clean up tempfile commit in master.py
diff --git a/allauth/app_settings.py b/allauth/app_settings.py index <HASH>..<HASH> 100644 --- a/allauth/app_settings.py +++ b/allauth/app_settings.py @@ -11,21 +11,24 @@ def check_context_processors(): ctx_present = False if django.VERSION < (1, 8,): + setting = "settings.TEMPLATE_CONTEXT_PROCESSORS...
Fixed up outdated error message in context processors check. Changed the URL to be more relevant and print the correct setting based on the django version.
diff --git a/ayrton/__init__.py b/ayrton/__init__.py index <HASH>..<HASH> 100755 --- a/ayrton/__init__.py +++ b/ayrton/__init__.py @@ -47,6 +47,8 @@ class CommandWrapper (sh.Command): # if _out or _err are not provided, connect them to the original ones if not '_out' in kwargs: kwargs['_o...
+ stderr to stderr by default too.
diff --git a/server.js b/server.js index <HASH>..<HASH> 100644 --- a/server.js +++ b/server.js @@ -48,10 +48,6 @@ app.use(function(req, res, next){ next(); } }); -<<<<<<< HEAD - -======= ->>>>>>> c69e2987859e0cdf6e22027ff8118c9a955f34c0 app.all('*', function(req, res, next) { res.header('Access-Control-All...
[CHORE] Cleaning merge commit garbage
diff --git a/src/Behavior/EAV/Entity.php b/src/Behavior/EAV/Entity.php index <HASH>..<HASH> 100644 --- a/src/Behavior/EAV/Entity.php +++ b/src/Behavior/EAV/Entity.php @@ -14,7 +14,6 @@ namespace Indigo\Doctrine\Behavior\EAV; use Doctrine\Common\Collections\Selectable; use Doctrine\Common\Collections\Criteria; use Do...
Removes id from EAV entity
diff --git a/lib/poise/helpers/resource_subclass.rb b/lib/poise/helpers/resource_subclass.rb index <HASH>..<HASH> 100644 --- a/lib/poise/helpers/resource_subclass.rb +++ b/lib/poise/helpers/resource_subclass.rb @@ -57,6 +57,7 @@ module Poise else subclass_resource_equivalents << superclass_resou...
Uniq the equivalents in case this is called more than once.
diff --git a/src/main/java/com/treasure_data/client/HttpConnectionImpl.java b/src/main/java/com/treasure_data/client/HttpConnectionImpl.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/treasure_data/client/HttpConnectionImpl.java +++ b/src/main/java/com/treasure_data/client/HttpConnectionImpl.java @@ -73,6 +73,...
changed HttpConnectionImpl class -- fixed bug: 'props' field in the class is never accessed
diff --git a/pyqode/core/managers/file.py b/pyqode/core/managers/file.py index <HASH>..<HASH> 100644 --- a/pyqode/core/managers/file.py +++ b/pyqode/core/managers/file.py @@ -167,7 +167,7 @@ class FileManager(Manager): content, self.get_mimetype(path), self.encoding) self.editor.setDocumen...
Do not use a timer for jumping to the cached cursor position. The difference is that the cursor won't be centered (if centerOnScroll was true). This fix a bug with goto definition in other files in pyqode.python
diff --git a/lib/Doctrine/DBAL/Migrations/Finder/RecursiveRegexFinder.php b/lib/Doctrine/DBAL/Migrations/Finder/RecursiveRegexFinder.php index <HASH>..<HASH> 100644 --- a/lib/Doctrine/DBAL/Migrations/Finder/RecursiveRegexFinder.php +++ b/lib/Doctrine/DBAL/Migrations/Finder/RecursiveRegexFinder.php @@ -71,6 +71,8 @@ fin...
RecursiveDirectoryIterator don't obtain some order of the file list. RecursiveDirectoryIterator shouldn't return a sorted list and haven't to do it be direct. But migration script logic requires sorted list of the Version*.php files for correct working.
diff --git a/docker/utils/utils.py b/docker/utils/utils.py index <HASH>..<HASH> 100644 --- a/docker/utils/utils.py +++ b/docker/utils/utils.py @@ -57,9 +57,10 @@ def compare_version(v1, v2): def ping(url): try: res = requests.get(url) - return res.status >= 400 except Exception: retu...
replace status with status_code as defined by requests API Move this statement in `else` clause to make sure the try except block doesn't catch coding errors.
diff --git a/src/lity.js b/src/lity.js index <HASH>..<HASH> 100644 --- a/src/lity.js +++ b/src/lity.js @@ -269,6 +269,8 @@ } function init(handler, content, options, el) { + _ready = $.Deferred(); + _instanceCount++; globalToggle(); @@ -342,7 +344,6 @@ ...
Fix weird lightbox state when hitting enter triggering click on still focused anchor element
diff --git a/spec/rackstash/logger_spec.rb b/spec/rackstash/logger_spec.rb index <HASH>..<HASH> 100644 --- a/spec/rackstash/logger_spec.rb +++ b/spec/rackstash/logger_spec.rb @@ -203,8 +203,8 @@ describe Rackstash::Logger do end it 'implements the same method signature as the Buffer' do - expect(Rackst...
Check that Logger#tag implements the same interface as Buffer#tag
diff --git a/models/DEV_DB.js b/models/DEV_DB.js index <HASH>..<HASH> 100644 --- a/models/DEV_DB.js +++ b/models/DEV_DB.js @@ -75,7 +75,7 @@ jsh.App[modelid] = new (function(){ }; this.getFormElement = function(){ - return jsh.$root('.xformcontainer.xelem'+model.class); + return jsh.$root('.xformcontainer...
JSH-<I> Refactoring js
diff --git a/wonambi/ioeeg/bci2000.py b/wonambi/ioeeg/bci2000.py index <HASH>..<HASH> 100644 --- a/wonambi/ioeeg/bci2000.py +++ b/wonambi/ioeeg/bci2000.py @@ -238,7 +238,7 @@ def _read_header(filename): hdr[section] = {} # defaultdict(dict) continue - if row == '': + if row...
Reading header elements without comments is now possible. Unparsable elements do not break the programm.
diff --git a/pmxbot/dictlib.py b/pmxbot/dictlib.py index <HASH>..<HASH> 100644 --- a/pmxbot/dictlib.py +++ b/pmxbot/dictlib.py @@ -8,5 +8,5 @@ class ConfigDict(ItemsAsAttributes, dict): return cls(yaml.load(f)) def to_yaml(self, filename): - with open(filename, 'wb') as f: + with open(filename, 'w') as f: ...
Can't open in binary mode anymore (Python 3 requires writing yaml as text)
diff --git a/test/unit/selector.js b/test/unit/selector.js index <HASH>..<HASH> 100644 --- a/test/unit/selector.js +++ b/test/unit/selector.js @@ -1,7 +1,7 @@ module("selector"); test("element", function() { - expect(19); + expect(18); QUnit.reset(); ok( jQuery("*").size() >= 30, "Select all" ); @@ -27,7 +27,...
Testing *, * was unnecessary - especially in slower browsers.
diff --git a/sunspot_rails/lib/sunspot/rails/searchable.rb b/sunspot_rails/lib/sunspot/rails/searchable.rb index <HASH>..<HASH> 100644 --- a/sunspot_rails/lib/sunspot/rails/searchable.rb +++ b/sunspot_rails/lib/sunspot/rails/searchable.rb @@ -232,7 +232,7 @@ module Sunspot #:nodoc: progress_bar = options[:pr...
On reindex the :start => option is now passed to find_in_batches
diff --git a/config/drivers.php b/config/drivers.php index <HASH>..<HASH> 100644 --- a/config/drivers.php +++ b/config/drivers.php @@ -6,18 +6,18 @@ return [ 'chrome' => [ 'mac' => [ - 'version' => '2.9', - 'url' => 'http://chromedriver.storage.googleapis.com/2.9/chromedriver_...
updated versions for ChromeDriver download links (#<I>)
diff --git a/lib/fast_find.rb b/lib/fast_find.rb index <HASH>..<HASH> 100644 --- a/lib/fast_find.rb +++ b/lib/fast_find.rb @@ -32,7 +32,7 @@ module FastFind @mutex.synchronize do return if @walkers - @walkers = concurrency.times.map { Walker.new.spawn(@queue) } + @walkers = @concurrency.times.map { Wal...
Drop private attributes and just use @'s
diff --git a/java/src/main/java/org/whispersystems/signalservice/api/SignalServiceMessageSender.java b/java/src/main/java/org/whispersystems/signalservice/api/SignalServiceMessageSender.java index <HASH>..<HASH> 100644 --- a/java/src/main/java/org/whispersystems/signalservice/api/SignalServiceMessageSender.java +++ b/j...
Fix self-sync timestamp inconsistency
diff --git a/src/main/java/org/cactoos/collection/CollectionOf.java b/src/main/java/org/cactoos/collection/CollectionOf.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/cactoos/collection/CollectionOf.java +++ b/src/main/java/org/cactoos/collection/CollectionOf.java @@ -53,8 +53,8 @@ import org.cactoos.scalar.U...
(#<I>) Small spelling fixes done
diff --git a/pylint/checkers/base.py b/pylint/checkers/base.py index <HASH>..<HASH> 100644 --- a/pylint/checkers/base.py +++ b/pylint/checkers/base.py @@ -1943,10 +1943,11 @@ class NameChecker(_BasicChecker): class DocStringChecker(_BasicChecker): msgs = { "C0112": ( - "Empty %s docstring", #...
[docstrings] Add W<I> as the old name for empty-docstring
diff --git a/moa/src/main/java/moa/tasks/active/ALPrequentialEvaluationTask.java b/moa/src/main/java/moa/tasks/active/ALPrequentialEvaluationTask.java index <HASH>..<HASH> 100644 --- a/moa/src/main/java/moa/tasks/active/ALPrequentialEvaluationTask.java +++ b/moa/src/main/java/moa/tasks/active/ALPrequentialEvaluationTas...
Set default learner to ALRandom
diff --git a/hepdata_validator/full_submission_validator.py b/hepdata_validator/full_submission_validator.py index <HASH>..<HASH> 100644 --- a/hepdata_validator/full_submission_validator.py +++ b/hepdata_validator/full_submission_validator.py @@ -43,6 +43,7 @@ class FullSubmissionValidator(Validator): """ ...
Ensure self.directory is updated at each call to validate
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setup( author_email='aymeric.augustin@m4x.org', url='https://github.com/trac-hacks/trac-github', description='Trac - GitHub integration', - download_url='http://pypi.python.org/pypi/trac-github',...
Use HTTPS in download URL It appears that PyPI is now HTTPS-only.
diff --git a/lib/arjdbc/postgresql/adapter.rb b/lib/arjdbc/postgresql/adapter.rb index <HASH>..<HASH> 100644 --- a/lib/arjdbc/postgresql/adapter.rb +++ b/lib/arjdbc/postgresql/adapter.rb @@ -1081,6 +1081,7 @@ module ArJdbc # Returns the list of all column definitions for a table. def columns(table_name, name ...
Update postgres adapter column definition with cast_type
diff --git a/core/types/transaction.go b/core/types/transaction.go index <HASH>..<HASH> 100644 --- a/core/types/transaction.go +++ b/core/types/transaction.go @@ -213,7 +213,7 @@ func (tx *Transaction) Hash() common.Hash { } // Size returns the true RLP encoded storage size of the transaction, either by -// encodin...
core/types: fixed typo (#<I>)
diff --git a/Minecraft/src/main/java/com/microsoft/Malmo/MissionHandlers/RewardBase.java b/Minecraft/src/main/java/com/microsoft/Malmo/MissionHandlers/RewardBase.java index <HASH>..<HASH> 100755 --- a/Minecraft/src/main/java/com/microsoft/Malmo/MissionHandlers/RewardBase.java +++ b/Minecraft/src/main/java/com/microsoft...
Fixed bug with reward distibution.
diff --git a/python/dllib/src/bigdl/dllib/utils/common.py b/python/dllib/src/bigdl/dllib/utils/common.py index <HASH>..<HASH> 100644 --- a/python/dllib/src/bigdl/dllib/utils/common.py +++ b/python/dllib/src/bigdl/dllib/utils/common.py @@ -462,6 +462,17 @@ def create_spark_conf(): sparkConf.setAll(bigdl_conf.items(...
Support BigDL for Spark on k8s (#<I>) * maybe some refactor * handle k8s master url * k8s * add doc * add more doc * add doc
diff --git a/lib/formwandler/form.rb b/lib/formwandler/form.rb index <HASH>..<HASH> 100644 --- a/lib/formwandler/form.rb +++ b/lib/formwandler/form.rb @@ -96,7 +96,9 @@ module Formwandler def submit if valid? && models_valid? - save_models! + ActiveRecord::Base.transaction do + save...
Add transaction around #save_models! call (fixes #3)
diff --git a/actionpack/lib/action_dispatch/journey/path/pattern.rb b/actionpack/lib/action_dispatch/journey/path/pattern.rb index <HASH>..<HASH> 100644 --- a/actionpack/lib/action_dispatch/journey/path/pattern.rb +++ b/actionpack/lib/action_dispatch/journey/path/pattern.rb @@ -136,6 +136,10 @@ module ActionDispatch ...
Adds named_captures to MatchData to emulate Regex This change adds a `named_captures` method to `ActionDispatch::Journey::Path::MatchData` in order to emulate a similar method present on `Regex`'s `MatchData` present in Ruby core. This method can be useful for introspection of routes without the need to use `zip` whi...
diff --git a/gns3server/modules/base_manager.py b/gns3server/modules/base_manager.py index <HASH>..<HASH> 100644 --- a/gns3server/modules/base_manager.py +++ b/gns3server/modules/base_manager.py @@ -372,8 +372,8 @@ class BaseManager: nio = NIOUDP(lport, rhost, rport) elif nio_settings["type"] == "...
Do not require a TAP interface to already exist. Fixes #<I>.
diff --git a/openquake/baselib/node.py b/openquake/baselib/node.py index <HASH>..<HASH> 100644 --- a/openquake/baselib/node.py +++ b/openquake/baselib/node.py @@ -729,13 +729,14 @@ def node_from_xml(xmlfile, nodefactory=Node): return node_from_elem(root, nodefactory) -def node_to_xml(node, output=sys.stdout, n...
Small fix in node_to_xml [ci skip]
diff --git a/autoinput.js b/autoinput.js index <HASH>..<HASH> 100644 --- a/autoinput.js +++ b/autoinput.js @@ -65,8 +65,8 @@ BlockQuote.register("autoInput", "startBlockQuote", new InputRule( OrderedList.register("autoInput", "startOrderedList", new InputRule( /^(\d+)\. $/, " ", function(pm, match, pos) { - w...
Allow any JSON-serializeable value as attribute value
diff --git a/src/tagify.js b/src/tagify.js index <HASH>..<HASH> 100644 --- a/src/tagify.js +++ b/src/tagify.js @@ -997,8 +997,9 @@ Tagify.prototype = { }, fixFirefoxLastTagNoCaret(){ - if( isFirefox && this.DOM.input.lastChild.nodeType == 1 ){ - this.DOM.input.appendChild(document.createTe...
fixed major bug with previous commit regarding "originalInputValueFormat" in "update" method
diff --git a/java/core/libjoynr/src/main/java/io/joynr/proxy/ProxyInvocationHandler.java b/java/core/libjoynr/src/main/java/io/joynr/proxy/ProxyInvocationHandler.java index <HASH>..<HASH> 100644 --- a/java/core/libjoynr/src/main/java/io/joynr/proxy/ProxyInvocationHandler.java +++ b/java/core/libjoynr/src/main/java/io/j...
[Java] Moved log to loglevel trace in ProxyInvocationHandler
diff --git a/concrete/src/Cache/CacheClearer.php b/concrete/src/Cache/CacheClearer.php index <HASH>..<HASH> 100644 --- a/concrete/src/Cache/CacheClearer.php +++ b/concrete/src/Cache/CacheClearer.php @@ -145,7 +145,13 @@ class CacheClearer */ protected function filesToClear($directory) { - $iterat...
Catch exception when cache directory doesn't exist
diff --git a/lib/icomoon-phantomjs.js b/lib/icomoon-phantomjs.js index <HASH>..<HASH> 100644 --- a/lib/icomoon-phantomjs.js +++ b/lib/icomoon-phantomjs.js @@ -7,14 +7,20 @@ var casper = require('casper').create({ casper.start('http://icomoon.io/app'); // Wait for loading to complete -casper.waitFor(function waitFor...
Going for short-term of getting this working first before talking directly to backend
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -65,21 +65,30 @@ SQLite3Connection.prototype.query = function (text, values, callback) { this.emit('query', query) if (query.text.match(/^\s*(insert|update|replace)\s+/i)) { - this._db.run(query.text, - ...
Move differing run/each behaviour into helpers
diff --git a/Eloquent/Relations/Concerns/InteractsWithPivotTable.php b/Eloquent/Relations/Concerns/InteractsWithPivotTable.php index <HASH>..<HASH> 100644 --- a/Eloquent/Relations/Concerns/InteractsWithPivotTable.php +++ b/Eloquent/Relations/Concerns/InteractsWithPivotTable.php @@ -225,7 +225,7 @@ trait InteractsWithPi...
Prevent timestamp update when pivot is not dirty (#<I>)
diff --git a/lib/jinterface/java_src/com/ericsson/otp/erlang/AbstractConnection.java b/lib/jinterface/java_src/com/ericsson/otp/erlang/AbstractConnection.java index <HASH>..<HASH> 100644 --- a/lib/jinterface/java_src/com/ericsson/otp/erlang/AbstractConnection.java +++ b/lib/jinterface/java_src/com/ericsson/otp/erlang/A...
jinterface: Fix a NullPointerException in AbstractConnection After a call to close(), the socket is set to null which could lead to a NullPointerException in the receive_loop when handling tick messages. End the receive_loop instead in this case.
diff --git a/src/PhoreDirectory.php b/src/PhoreDirectory.php index <HASH>..<HASH> 100644 --- a/src/PhoreDirectory.php +++ b/src/PhoreDirectory.php @@ -145,4 +145,14 @@ class PhoreDirectory extends PhoreUri return $ret; } + /** + * Import file contents of parameter 1 to this directory + * + ...
added importZipFile to directory
diff --git a/allaccess/tests/custom/views.py b/allaccess/tests/custom/views.py index <HASH>..<HASH> 100644 --- a/allaccess/tests/custom/views.py +++ b/allaccess/tests/custom/views.py @@ -5,7 +5,7 @@ import hashlib from django.core.urlresolvers import reverse -from allaccess.compat import get_user_model, smart_byte...
Custom test view needs to convert digest back to string.
diff --git a/spinoff/actor/_actor.py b/spinoff/actor/_actor.py index <HASH>..<HASH> 100644 --- a/spinoff/actor/_actor.py +++ b/spinoff/actor/_actor.py @@ -539,9 +539,10 @@ class Node(object): _all = [] @classmethod + @inlineCallbacks def stop_all(cls): for node in cls._all: - nod...
Node.stop now first stops the actors and then remoting, and then waits a bit before shutting down remoting to allow actors to send termination or other notifications in post_stop
diff --git a/iopipe/context.py b/iopipe/context.py index <HASH>..<HASH> 100644 --- a/iopipe/context.py +++ b/iopipe/context.py @@ -55,6 +55,13 @@ class IOpipeContext(object): log = metric def label(self, name): + if self.instance.report is None: + warnings.warn( + "Attemptin...
Check if there's a report before labeling (#<I>) Closes #<I>
diff --git a/backends/etcdv3/client.go b/backends/etcdv3/client.go index <HASH>..<HASH> 100644 --- a/backends/etcdv3/client.go +++ b/backends/etcdv3/client.go @@ -21,8 +21,10 @@ type Client struct { // NewEtcdClient returns an *etcdv3.Client with a connection to named machines. func NewEtcdClient(machines []string, c...
Configure keepalives for etcdv3 backend
diff --git a/gremlin-core/src/main/java/com/tinkerpop/gremlin/process/util/DefaultTraversal.java b/gremlin-core/src/main/java/com/tinkerpop/gremlin/process/util/DefaultTraversal.java index <HASH>..<HASH> 100644 --- a/gremlin-core/src/main/java/com/tinkerpop/gremlin/process/util/DefaultTraversal.java +++ b/gremlin-core/...
Commented out toString execution of traversal optimizations. This causes early evaluation in the debugger and then really crazy stuff starts happening.
diff --git a/rules/DowngradePhp70/Rector/Spaceship/DowngradeSpaceshipRector.php b/rules/DowngradePhp70/Rector/Spaceship/DowngradeSpaceshipRector.php index <HASH>..<HASH> 100644 --- a/rules/DowngradePhp70/Rector/Spaceship/DowngradeSpaceshipRector.php +++ b/rules/DowngradePhp70/Rector/Spaceship/DowngradeSpaceshipRector.p...
Fix DowngradeSpaceshipRector sample code (#<I>)
diff --git a/src/Http/Middleware/DynamicMenusBuilder.php b/src/Http/Middleware/DynamicMenusBuilder.php index <HASH>..<HASH> 100644 --- a/src/Http/Middleware/DynamicMenusBuilder.php +++ b/src/Http/Middleware/DynamicMenusBuilder.php @@ -26,16 +26,18 @@ class DynamicMenusBuilder */ public function handle($reque...
Flash active menu session on every request.
diff --git a/js/lib/mediawiki.ApiRequest.js b/js/lib/mediawiki.ApiRequest.js index <HASH>..<HASH> 100644 --- a/js/lib/mediawiki.ApiRequest.js +++ b/js/lib/mediawiki.ApiRequest.js @@ -560,12 +560,16 @@ function ParsoidCacheRequest ( env, title, oldid, options ) { timeout: 60 * 1000, // 60 seconds: less than 100s VE t...
Only set cookie header on API requests when one was passed in We don't send Vary: Cookie headers ourselves, but it seems to be well possible that our Varnish config (by using various MW defaults) varies on cookies by default. That would explain the cache misses on selser that we are seeing in production. Change-Id: I...
diff --git a/lib/typed/parfait/type.rb b/lib/typed/parfait/type.rb index <HASH>..<HASH> 100644 --- a/lib/typed/parfait/type.rb +++ b/lib/typed/parfait/type.rb @@ -61,9 +61,17 @@ module Parfait end def self.str_hash(str) - str = str.hash + if RUBY_ENGINE == "OPAL" + hash = 5381 + str....
had to fix the string hash for opal
diff --git a/src/properties/class-papi-property-group.php b/src/properties/class-papi-property-group.php index <HASH>..<HASH> 100644 --- a/src/properties/class-papi-property-group.php +++ b/src/properties/class-papi-property-group.php @@ -115,7 +115,7 @@ class Papi_Property_Group extends Papi_Property_Repeater { * @...
Fix empty array issue with group property test
diff --git a/cell/tests/actors/test_agents.py b/cell/tests/actors/test_agents.py index <HASH>..<HASH> 100644 --- a/cell/tests/actors/test_agents.py +++ b/cell/tests/actors/test_agents.py @@ -35,11 +35,12 @@ class test_dAgent(Case): ag, a = dA(conn), A() ag.cast = Mock() - proxy = ag.spawn(qua...
Fix tests broken due the additional kwargs argument in spawn
diff --git a/system/modules/generalDriver/GeneralControllerDefault.php b/system/modules/generalDriver/GeneralControllerDefault.php index <HASH>..<HASH> 100644 --- a/system/modules/generalDriver/GeneralControllerDefault.php +++ b/system/modules/generalDriver/GeneralControllerDefault.php @@ -1589,7 +1589,7 @@ class Gener...
Update the "getNewPosition" function. Add some checks to validate the after sorting value.
diff --git a/oct2py/session.py b/oct2py/session.py index <HASH>..<HASH> 100644 --- a/oct2py/session.py +++ b/oct2py/session.py @@ -397,8 +397,12 @@ class Oct2Py(object): except Oct2PyError as e: if 'syntax error' in str(e): raise(e) - doc = self._eval('type {0}'.form...
Improve error message when function is not found
diff --git a/example-expo/AccessoryBar.js b/example-expo/AccessoryBar.js index <HASH>..<HASH> 100644 --- a/example-expo/AccessoryBar.js +++ b/example-expo/AccessoryBar.js @@ -10,8 +10,7 @@ import { export default class AccessoryBar extends React.Component { render() { - const { onSend } = this.props - const...
refactor(typing-indicator): DRY in example
diff --git a/lib/knife-cloudformation/aws_commons.rb b/lib/knife-cloudformation/aws_commons.rb index <HASH>..<HASH> 100644 --- a/lib/knife-cloudformation/aws_commons.rb +++ b/lib/knife-cloudformation/aws_commons.rb @@ -120,6 +120,7 @@ module KnifeCloudformation cache.apply_limit(:stacks, args[:refresh_every]...
Restamp the cached value prior to detached fetching
diff --git a/cli/command/system/info.go b/cli/command/system/info.go index <HASH>..<HASH> 100644 --- a/cli/command/system/info.go +++ b/cli/command/system/info.go @@ -91,6 +91,10 @@ func prettyPrintInfo(dockerCli *command.DockerCli, info types.Info) error { fmt.Fprintf(dockerCli.Out(), "\n") } + fmt.Fprintf(dock...
Add logdrivers to /info This is required for swarmkit to be able to filter based on log driver.
diff --git a/webpack.config.js b/webpack.config.js index <HASH>..<HASH> 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -49,7 +49,7 @@ module.exports = [{ }, { entry: './src/demo.js', output: { - path: path.join(__dirname, 'assets/dist'), + path: path.join(__dirname, 'dist'), filename: '[nam...
fix webpack config (#<I>)
diff --git a/backup/restorelib.php b/backup/restorelib.php index <HASH>..<HASH> 100644 --- a/backup/restorelib.php +++ b/backup/restorelib.php @@ -10,7 +10,7 @@ $status = true; if (empty($CFG->unzip)) { // Use built-in php-based unzip function - include_once("$CFG->wwwroot/lib/pclzip/p...
Chanfed to locate the pclzip properly.
diff --git a/src/Corpus/TextCorpus.php b/src/Corpus/TextCorpus.php index <HASH>..<HASH> 100644 --- a/src/Corpus/TextCorpus.php +++ b/src/Corpus/TextCorpus.php @@ -150,23 +150,6 @@ class TextCorpus } /** - * Mark the neddle and get its context - * - * @return String - */ - private function ext...
Removed unused method Removed extractExcerptTerm method that was not used anymore.
diff --git a/lib/fog/rackspace/models/auto_scale/group_config.rb b/lib/fog/rackspace/models/auto_scale/group_config.rb index <HASH>..<HASH> 100644 --- a/lib/fog/rackspace/models/auto_scale/group_config.rb +++ b/lib/fog/rackspace/models/auto_scale/group_config.rb @@ -49,11 +49,30 @@ module Fog options['maxEnt...
[rackspace|auto_scale] fixed bug with group_config.update; added save and reload method
diff --git a/spec/unit/application/face_base_spec.rb b/spec/unit/application/face_base_spec.rb index <HASH>..<HASH> 100755 --- a/spec/unit/application/face_base_spec.rb +++ b/spec/unit/application/face_base_spec.rb @@ -97,6 +97,17 @@ describe Puppet::Application::FaceBase do end end + [%w{something_I_c...
#<I>: Test unknown options don't shadow unknown actions. Unknown options used to shadow unknown actions: $ puppet node something_I_cannot_do --unknown-option Could not parse options: invalid option: --unknown-option The earlier changes have fixed this problem, but we now add extra testing to make sure that w...
diff --git a/stitch/src/main/java/com/mongodb/stitch/android/auth/anonymous/AnonymousAuthProviderInfo.java b/stitch/src/main/java/com/mongodb/stitch/android/auth/anonymous/AnonymousAuthProviderInfo.java index <HASH>..<HASH> 100644 --- a/stitch/src/main/java/com/mongodb/stitch/android/auth/anonymous/AnonymousAuthProvide...
fix FQ_NAME for anon provider (#<I>)
diff --git a/app/models/content.js b/app/models/content.js index <HASH>..<HASH> 100644 --- a/app/models/content.js +++ b/app/models/content.js @@ -1,6 +1,8 @@ import DS from 'ember-data'; import { get, computed } from '@ember/object'; +import { deprecate } from '@ember/application/deprecations'; + export default D...
turning contet.author deprecation into a real deprecation
diff --git a/lib/optimize/ConcatenatedModule.js b/lib/optimize/ConcatenatedModule.js index <HASH>..<HASH> 100644 --- a/lib/optimize/ConcatenatedModule.js +++ b/lib/optimize/ConcatenatedModule.js @@ -576,9 +576,12 @@ class ConcatenatedModule extends Module { moduleToInfoMap ) ); + + // Must use full identif...
Invalidate concatenated module on dep change When the moduleSet for a given concatenated module changed, the source for the embedded modules would not necessarily, which lead to caching mismatch between the source and the modulesWithInfo structure. Fixes #<I>
diff --git a/web/web.go b/web/web.go index <HASH>..<HASH> 100644 --- a/web/web.go +++ b/web/web.go @@ -31,6 +31,7 @@ import ( var ( listenAddress = flag.String("listenAddress", ":9090", "Address to listen on for web interface.") useLocalAssets = flag.Bool("useLocalAssets", false, "Read assets/templates from file ...
Support user-provided static asset directory [fix #<I>]
diff --git a/src/library.js b/src/library.js index <HASH>..<HASH> 100644 --- a/src/library.js +++ b/src/library.js @@ -82,6 +82,7 @@ } else if (Isla.Utils.type(o) === "String" || Isla.Utils.type(o) === "Boolean" || Isla.Utils.type(o) === "Function") { + o === n...
Fix library.clone so it preserves nulls.
diff --git a/trustar/models/page.py b/trustar/models/page.py index <HASH>..<HASH> 100644 --- a/trustar/models/page.py +++ b/trustar/models/page.py @@ -148,31 +148,6 @@ class Page(ModelBase): from_time=from_time, to_time=to_time)...
moved cursor-based pagination to own class
diff --git a/src/main/java/org/freecompany/redline/header/Header.java b/src/main/java/org/freecompany/redline/header/Header.java index <HASH>..<HASH> 100755 --- a/src/main/java/org/freecompany/redline/header/Header.java +++ b/src/main/java/org/freecompany/redline/header/Header.java @@ -96,7 +96,7 @@ public class Header...
Changed data types for string arrays
diff --git a/input/_relation.js b/input/_relation.js index <HASH>..<HASH> 100644 --- a/input/_relation.js +++ b/input/_relation.js @@ -2,6 +2,7 @@ var d = require('es5-ext/lib/Object/descriptor') , copy = require('es5-ext/lib/Object/copy') + , extend = require('es5-ext/lib/Object/e...
Allow to provide custom input options to component
diff --git a/src/Enhavo/Bundle/NavigationBundle/Form/Type/NodeCollectionType.php b/src/Enhavo/Bundle/NavigationBundle/Form/Type/NodeCollectionType.php index <HASH>..<HASH> 100644 --- a/src/Enhavo/Bundle/NavigationBundle/Form/Type/NodeCollectionType.php +++ b/src/Enhavo/Bundle/NavigationBundle/Form/Type/NodeCollectionTy...
Fix empty navigation model (#<I>)
diff --git a/lib/workers/branch/parent.js b/lib/workers/branch/parent.js index <HASH>..<HASH> 100644 --- a/lib/workers/branch/parent.js +++ b/lib/workers/branch/parent.js @@ -28,7 +28,14 @@ async function getParentBranch(config) { } if (pr.labels && pr.labels.includes(config.rebaseLabel)) { logger.info...
fix: ignore delete label if dry-run (#<I>)
diff --git a/mapmyfitness/__init__.py b/mapmyfitness/__init__.py index <HASH>..<HASH> 100644 --- a/mapmyfitness/__init__.py +++ b/mapmyfitness/__init__.py @@ -11,7 +11,7 @@ class MapMyFitness(object): def __new__(cls, *args, **kwargs): if not cls._instance: - cls._instance = super(MapMyFitnes...
Trying to make python3 happy with the singleton's use of super.
diff --git a/test/spec/ol/interaction/modify.test.js b/test/spec/ol/interaction/modify.test.js index <HASH>..<HASH> 100644 --- a/test/spec/ol/interaction/modify.test.js +++ b/test/spec/ol/interaction/modify.test.js @@ -423,6 +423,37 @@ describe('ol.interaction.Modify', function () { expect(lineFeature.getGeome...
Add vertex insertion test for modify interaction
diff --git a/src/org/parosproxy/paros/network/HttpSender.java b/src/org/parosproxy/paros/network/HttpSender.java index <HASH>..<HASH> 100644 --- a/src/org/parosproxy/paros/network/HttpSender.java +++ b/src/org/parosproxy/paros/network/HttpSender.java @@ -31,6 +31,7 @@ // ZAP: 2013/01/23 Clean up of exception handling/...
Issue <I>: Cannot send non standard http methods
diff --git a/src/Canonical.php b/src/Canonical.php index <HASH>..<HASH> 100644 --- a/src/Canonical.php +++ b/src/Canonical.php @@ -84,14 +84,15 @@ class Canonical implements EventSubscriberInterface $override = $this->override; - $schemeStubbed = false; + // Prepend scheme if not included so ...
Change canonical to only override scheme if it is an upgrade. i.e. don't https -> http.
diff --git a/src/editor/EditorManager.js b/src/editor/EditorManager.js index <HASH>..<HASH> 100644 --- a/src/editor/EditorManager.js +++ b/src/editor/EditorManager.js @@ -407,6 +407,7 @@ define(function (require, exports, module) { _destroyEditorIfUnneeded(_currentEditorsDocument); _doFocusedE...
hide status bar when ther is no editor
diff --git a/test/com/google/javascript/jscomp/fuzzing/ControlledRandom.java b/test/com/google/javascript/jscomp/fuzzing/ControlledRandom.java index <HASH>..<HASH> 100644 --- a/test/com/google/javascript/jscomp/fuzzing/ControlledRandom.java +++ b/test/com/google/javascript/jscomp/fuzzing/ControlledRandom.java @@ -26,7 ...
Fixing failed tests ------------- Created by MOE: <URL>
diff --git a/napalm_junos/junos.py b/napalm_junos/junos.py index <HASH>..<HASH> 100644 --- a/napalm_junos/junos.py +++ b/napalm_junos/junos.py @@ -854,20 +854,22 @@ class JunOSDriver(NetworkDriver): def get_mac_address_table(self): - mac_address_table = list() + mac_address_table = [] ...
Diffrent RPC for EX & QFX series
diff --git a/executor/opensubmit/executor/__init__.py b/executor/opensubmit/executor/__init__.py index <HASH>..<HASH> 100755 --- a/executor/opensubmit/executor/__init__.py +++ b/executor/opensubmit/executor/__init__.py @@ -147,7 +147,7 @@ def _infos_cmd(cmd, stdhndl=" 2>&1", e_shell=True): except Exception as e: ...
fixing issues #<I>. NameError: global name 'config' is not defined IF Validator ZIP package does not contain validator.py
diff --git a/internal/frame/frame.go b/internal/frame/frame.go index <HASH>..<HASH> 100644 --- a/internal/frame/frame.go +++ b/internal/frame/frame.go @@ -139,7 +139,7 @@ func (f *Frame) requantizeProcessLong(gr, ch, is_pos, sfb int) { if f.sideInfo.ScalefacScale[gr][ch] != 0 { sf_mult = 1.0 } - tmp1 := 1.0 + tm...
Reduce noises (but not all the problems are solved) (#<I>)
diff --git a/lib/taskrabbit/task.rb b/lib/taskrabbit/task.rb index <HASH>..<HASH> 100644 --- a/lib/taskrabbit/task.rb +++ b/lib/taskrabbit/task.rb @@ -50,6 +50,10 @@ module Taskrabbit end end + def new_record? + !id + end + def delete! reload('delete', "tasks/#{id.to_s}") end d...
Add new_record? to Taskrabbit::Task
diff --git a/src/Composer/Command/RequireCommand.php b/src/Composer/Command/RequireCommand.php index <HASH>..<HASH> 100644 --- a/src/Composer/Command/RequireCommand.php +++ b/src/Composer/Command/RequireCommand.php @@ -20,6 +20,7 @@ use Composer\Factory; use Composer\Installer; use Composer\Json\JsonFile; use Compos...
Validate constraints in require command, fixes #<I>
diff --git a/addon/merge/merge.js b/addon/merge/merge.js index <HASH>..<HASH> 100644 --- a/addon/merge/merge.js +++ b/addon/merge/merge.js @@ -918,7 +918,7 @@ hasMarker: function(n) { var handle = this.cm.getLineHandle(n) if (handle.markedSpans) for (var i = 0; i < handle.markedSpans.length; i++) - ...
[merge addon] Fix typo in hasMarker() This was causing exceptions to be thrown when using custom markers.
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -115,6 +115,7 @@ setup( 'License :: OSI Approved :: MIT License', 'Natural Language :: English', 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', ], ...
misc: list Python <I> (sic!) in setup.py. This is a "bump" commit to force CircleCI picking up the new branch. Python <I> is known-to-work and regularly tested; it missing in setup.py is an oversight. Python <I> is not yet known to work, is just starting to get one module tested, - therefore not adding it here (yet)...
diff --git a/src/main/java/org/fluentd/logger/Sender.java b/src/main/java/org/fluentd/logger/Sender.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/fluentd/logger/Sender.java +++ b/src/main/java/org/fluentd/logger/Sender.java @@ -1,3 +1,20 @@ +// +// A Structured Logger for Fluent +// +// Copyright (C) 2011 Mu...
added copyright notation in Sender.java