diff
stringlengths
65
26.7k
message
stringlengths
7
9.92k
diff --git a/girder/utility/__init__.py b/girder/utility/__init__.py index <HASH>..<HASH> 100644 --- a/girder/utility/__init__.py +++ b/girder/utility/__init__.py @@ -40,7 +40,7 @@ except NotImplementedError: # pragma: no cover def parseTimestamp(x, naive=True): - ''' + """ Parse a datetime string usin...
Fix static analysis (double triple quotes)
diff --git a/git_repo/services/ext/gogs.py b/git_repo/services/ext/gogs.py index <HASH>..<HASH> 100644 --- a/git_repo/services/ext/gogs.py +++ b/git_repo/services/ext/gogs.py @@ -77,14 +77,13 @@ class GogsService(RepositoryService): super().__init__(*args, **kwargs) + def connect(self): self.gg...
🚒 connection order issue (fixes #<I>)
diff --git a/ella/newman/utils.py b/ella/newman/utils.py index <HASH>..<HASH> 100644 --- a/ella/newman/utils.py +++ b/ella/newman/utils.py @@ -30,6 +30,9 @@ def JsonResponse(message, data={}, errors={}, status=200): 'message': message, } if data: + try: data = json_decode(data) + except...
JsonResponse will not try to expand JSON data.
diff --git a/lib/ezsession/classes/ezsession.php b/lib/ezsession/classes/ezsession.php index <HASH>..<HASH> 100644 --- a/lib/ezsession/classes/ezsession.php +++ b/lib/ezsession/classes/ezsession.php @@ -446,11 +446,7 @@ class eZSession */ static protected function forceStart() { - if ( self::$han...
Additional fix EZP-<I>: Warning: session already started when logging in Make sure handler is always used in standalone mode.
diff --git a/geshi/geshi/php.php b/geshi/geshi/php.php index <HASH>..<HASH> 100644 --- a/geshi/geshi/php.php +++ b/geshi/geshi/php.php @@ -90,7 +90,7 @@ $language_data = array( 'as','break','case','continue','default','do','else','elseif', 'endfor','endforeach','endif','endswitch','endwhile','...
[GeSHi] Adding try & catch
diff --git a/src/resources/js/controllers.js b/src/resources/js/controllers.js index <HASH>..<HASH> 100644 --- a/src/resources/js/controllers.js +++ b/src/resources/js/controllers.js @@ -112,6 +112,8 @@ return; } + var blockRequest = false; + if ($scope.pager) { if (n.length == 0) { $t...
added block request var in order to make sure the full response request can only run once as it takes usualy longer to resolve the request. #<I>
diff --git a/libdokan/dokan_info.go b/libdokan/dokan_info.go index <HASH>..<HASH> 100644 --- a/libdokan/dokan_info.go +++ b/libdokan/dokan_info.go @@ -58,9 +58,9 @@ func logDokanFilesInfo(epc *errorPrinter) { debugFileInfo(epc, d+shortPath) } for _, d := range []string{syswow64, system32} { - debugFileInfo(epc,...
Use correct path for dokanX.sys in debug output
diff --git a/src/adapt/cssstyler.js b/src/adapt/cssstyler.js index <HASH>..<HASH> 100644 --- a/src/adapt/cssstyler.js +++ b/src/adapt/cssstyler.js @@ -532,14 +532,12 @@ adapt.cssstyler.columnProps = ["column-count", "column-width", "column-fill"]; * @return {void} */ adapt.cssstyler.Styler.prototype.postprocessTop...
Fix the bug that the writing mode specified on the body element did not determine the principal (root) writing mode
diff --git a/pygsp/graphs/graph.py b/pygsp/graphs/graph.py index <HASH>..<HASH> 100644 --- a/pygsp/graphs/graph.py +++ b/pygsp/graphs/graph.py @@ -80,6 +80,11 @@ class Graph(fourier.GraphFourier, difference.GraphDifference): if len(W.shape) != 2 or W.shape[0] != W.shape[1]: raise ValueError('W has...
graphs: eliminate edges of weight 0
diff --git a/javascript/LeftAndMain.Tree.js b/javascript/LeftAndMain.Tree.js index <HASH>..<HASH> 100755 --- a/javascript/LeftAndMain.Tree.js +++ b/javascript/LeftAndMain.Tree.js @@ -116,7 +116,7 @@ }); $.ajax({ - 'url': this.data('url-savetreenode'), + 'url': self.data('url-savetreenode...
MINOR Fixed LeftAndMain.Tree.js scope
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -39,11 +39,12 @@ class RustPlugin { this.serverless.service.package.excludeDevDependencies = false; } - runDocker(funcArgs, cargoPackage) { + runDocker(funcArgs, cargoPackage, binary) { const defaultArgs = [ ...
target binary by name (for upcoming release)
diff --git a/web/concrete/blocks/form/controller.php b/web/concrete/blocks/form/controller.php index <HASH>..<HASH> 100644 --- a/web/concrete/blocks/form/controller.php +++ b/web/concrete/blocks/form/controller.php @@ -578,7 +578,9 @@ class Controller extends BlockController } if (!$this->no...
Fix: unable to redirect to home on submit form block Former-commit-id: <I>f<I>be3ed<I>b<I>ce5fb6ad<I>e<I>ea4 Former-commit-id: ba3f<I>facbc<I>e<I>d<I>ecc6c<I>b6e<I>
diff --git a/lib/oauth/token.rb b/lib/oauth/token.rb index <HASH>..<HASH> 100644 --- a/lib/oauth/token.rb +++ b/lib/oauth/token.rb @@ -69,6 +69,20 @@ module OAuth # The Access Token is used for the actual "real" web service calls thatyou perform against the server class AccessToken<ConsumerToken + + # The ...
enhancement to allow service (non-token-management-related) requests to use URIs different from initial site URI.
diff --git a/src/Sessions/NativeSession.php b/src/Sessions/NativeSession.php index <HASH>..<HASH> 100644 --- a/src/Sessions/NativeSession.php +++ b/src/Sessions/NativeSession.php @@ -86,7 +86,7 @@ class NativeSession implements SessionInterface protected function startSession() { // Check that the se...
Changing session closed test to PHP <I> construct If a session has previously been opened then closed, session_id() will have a value. The session then fails to open. In PHP <I> session_status() was introduced which allows testing whether the session is actually open or closed. With this change, the session is corr...
diff --git a/styx-scheduler-service/src/main/java/com/spotify/styx/docker/KubernetesDockerRunner.java b/styx-scheduler-service/src/main/java/com/spotify/styx/docker/KubernetesDockerRunner.java index <HASH>..<HASH> 100644 --- a/styx-scheduler-service/src/main/java/com/spotify/styx/docker/KubernetesDockerRunner.java +++ ...
log k8s events at debug level
diff --git a/proxmoxer/backends/ssh_paramiko.py b/proxmoxer/backends/ssh_paramiko.py index <HASH>..<HASH> 100644 --- a/proxmoxer/backends/ssh_paramiko.py +++ b/proxmoxer/backends/ssh_paramiko.py @@ -56,8 +56,8 @@ class ProxmoxParamikoSession(ProxmoxBaseSSHSession): cmd = 'sudo ' + cmd session = se...
fix from mihailstoynov
diff --git a/lib/chef/provider/service.rb b/lib/chef/provider/service.rb index <HASH>..<HASH> 100644 --- a/lib/chef/provider/service.rb +++ b/lib/chef/provider/service.rb @@ -44,16 +44,19 @@ class Chef supports[:restart] = false if supports[:restart].nil? end - def load_new_resource_state - ...
add better documentation to this method it violates our dont-violate-the-new-resource policy for a reason, but is likely still buggy if the resource gets reused.
diff --git a/lib/Doctrine/Common/ClassLoader.php b/lib/Doctrine/Common/ClassLoader.php index <HASH>..<HASH> 100644 --- a/lib/Doctrine/Common/ClassLoader.php +++ b/lib/Doctrine/Common/ClassLoader.php @@ -33,10 +33,25 @@ namespace Doctrine\Common; */ class ClassLoader { - private $fileExtension = '.php'; - priv...
[DCOM-<I>] Increased visibility of members in ClassLoader in order to simplify extensibility through methods' override.
diff --git a/server/src/main/java/org/jboss/as/server/deployment/module/ModuleSpecification.java b/server/src/main/java/org/jboss/as/server/deployment/module/ModuleSpecification.java index <HASH>..<HASH> 100644 --- a/server/src/main/java/org/jboss/as/server/deployment/module/ModuleSpecification.java +++ b/server/src/ma...
AS7-<I> Deprecate the methods on ModuleSpecification instead of removing those
diff --git a/classes/Kohana/Jam/Model.php b/classes/Kohana/Jam/Model.php index <HASH>..<HASH> 100755 --- a/classes/Kohana/Jam/Model.php +++ b/classes/Kohana/Jam/Model.php @@ -397,7 +397,7 @@ abstract class Kohana_Jam_Model extends Jam_Validated { public function get_insist($attribute_name) { - $attribute = $this...
a small performance optimization for get_insist
diff --git a/src/Geometry.php b/src/Geometry.php index <HASH>..<HASH> 100644 --- a/src/Geometry.php +++ b/src/Geometry.php @@ -237,7 +237,13 @@ abstract class Geometry */ public function asText() { - return (new WKTWriter())->write($this); + static $wktWriter; + + if ($wktWriter ===...
Static instances of WKTWriter and WKBWriter in Geometry export methods
diff --git a/app/adapters/application.js b/app/adapters/application.js index <HASH>..<HASH> 100644 --- a/app/adapters/application.js +++ b/app/adapters/application.js @@ -95,6 +95,10 @@ export default Adapter.extend(PouchAdapterUtils, { return haveSpecialCharacters; }, + generateIdForRecord: function() { + ...
Make sure new records have id on creation.
diff --git a/src/Provider/Hook_Event_Provider.php b/src/Provider/Hook_Event_Provider.php index <HASH>..<HASH> 100644 --- a/src/Provider/Hook_Event_Provider.php +++ b/src/Provider/Hook_Event_Provider.php @@ -20,6 +20,8 @@ class Hook_Event_Provider implements ServiceProviderInterface { /** * @param Container $pimp...
Disabled Psalm error for known deprecated class use.
diff --git a/src/Torann/LaravelRepository/Repositories/AbstractCacheDecorator.php b/src/Torann/LaravelRepository/Repositories/AbstractCacheDecorator.php index <HASH>..<HASH> 100644 --- a/src/Torann/LaravelRepository/Repositories/AbstractCacheDecorator.php +++ b/src/Torann/LaravelRepository/Repositories/AbstractCacheDec...
Enable closures with model arguments. An Exception is thrown if you use the Model typehint / type as an argument(s) in your repository methods, a pretty common practice. `Serialization of 'Closure' is not allowed` There may be a more clever way to support more types of objects, but this was fast, easy and worked for m...
diff --git a/connection.go b/connection.go index <HASH>..<HASH> 100644 --- a/connection.go +++ b/connection.go @@ -6,7 +6,6 @@ import ( "errors" "fmt" "io" - "log" "math/rand" "net" "strconv" @@ -14,6 +13,8 @@ import ( "sync" "time" + "github.com/anacrolix/log" + "github.com/anacrolix/missinggo" "...
Use new logging in connection.go
diff --git a/src/itertools/autoload.php b/src/itertools/autoload.php index <HASH>..<HASH> 100644 --- a/src/itertools/autoload.php +++ b/src/itertools/autoload.php @@ -17,6 +17,7 @@ spl_autoload_register(function ($class) { 'itertools\ForkingIterator', 'itertools\HistoryIterator', 'itertools\IterUtil', + 'iter...
Added LockingIterator to autoload
diff --git a/lib/Elastica/Query/Ids.php b/lib/Elastica/Query/Ids.php index <HASH>..<HASH> 100644 --- a/lib/Elastica/Query/Ids.php +++ b/lib/Elastica/Query/Ids.php @@ -6,7 +6,7 @@ * @category Xodoa * @package Elastica * @author Lee Parker, Nicolas Ruflin <spam@ruflin.com>, Tim Rupp - * @link http://www.elasticsear...
Fixed link to elasticsearch documentation for Query_Ids
diff --git a/werkzeug/testsuite/formparser.py b/werkzeug/testsuite/formparser.py index <HASH>..<HASH> 100644 --- a/werkzeug/testsuite/formparser.py +++ b/werkzeug/testsuite/formparser.py @@ -132,6 +132,8 @@ class FormParserTestCase(WerkzeugTestCase): # make sure we have a real file here, because we expect to b...
Close file to prevent leaking fd
diff --git a/spec/unit/mongoid/config_spec.rb b/spec/unit/mongoid/config_spec.rb index <HASH>..<HASH> 100644 --- a/spec/unit/mongoid/config_spec.rb +++ b/spec/unit/mongoid/config_spec.rb @@ -1,13 +1,12 @@ require "spec_helper" describe Mongoid::Config do + let(:config) { Mongoid::Config.instance } after do - ...
Specfix for better use of rspec
diff --git a/webpack.config.js b/webpack.config.js index <HASH>..<HASH> 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -16,16 +16,6 @@ if (process.env.COMPRESS) { ); } -if (process.env.COMPRESS) { - plugins.push( - new webpack.optimize.UglifyJsPlugin({ - compressor: { - warnings: false ...
remove duplicate lines in webpack config
diff --git a/src/emailjs-imap-client.js b/src/emailjs-imap-client.js index <HASH>..<HASH> 100644 --- a/src/emailjs-imap-client.js +++ b/src/emailjs-imap-client.js @@ -1828,7 +1828,7 @@ }; }; - var logger = this.options.logger || createLogger(this.logLevel, "emailjs-imap-client@" + this.op...
sessionId missing from logs It is vital too see which session owns each log when connected to more than one server
diff --git a/hearthstone/cardxml.py b/hearthstone/cardxml.py index <HASH>..<HASH> 100644 --- a/hearthstone/cardxml.py +++ b/hearthstone/cardxml.py @@ -151,10 +151,9 @@ class CardXML(object): for tag in STRING_TAGS: value = self.strings[tag] if value: - ElementTree.SubElement( - ret, "Tag", enumID=str(...
cardxml: Write string tag contents as text rather than attribute
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ with open('./README.rst') as f: setup( - version="10.2.0", + version="10.2.0rc1", name="swimlane", author="Swimlane", author_email="info@swimlane.com",
change <I> to rc tag (#<I>)
diff --git a/ceph_deploy/hosts/suse/uninstall.py b/ceph_deploy/hosts/suse/uninstall.py index <HASH>..<HASH> 100644 --- a/ceph_deploy/hosts/suse/uninstall.py +++ b/ceph_deploy/hosts/suse/uninstall.py @@ -7,7 +7,7 @@ def uninstall(conn, purge=False): 'libcephfs1', 'librados2', 'librbd1', - ...
suse.uninstall: ceph-deploy purge fails on SUSE. This is because ceph-deploy tries to remove a package that does not exist. To fix this we need to change package name to correct name ceph-radosgw from the old name radosgw.
diff --git a/code/media/com_files/js/files.app.js b/code/media/com_files/js/files.app.js index <HASH>..<HASH> 100644 --- a/code/media/com_files/js/files.app.js +++ b/code/media/com_files/js/files.app.js @@ -65,6 +65,9 @@ Files.App = new Class({ clearTimeout(delay); delay = this.setDimensions.delay...
re #<I> thumbnail size forgotten when switching between grid and list layouts
diff --git a/core/Common.php b/core/Common.php index <HASH>..<HASH> 100644 --- a/core/Common.php +++ b/core/Common.php @@ -85,7 +85,6 @@ class Piwik_Common if(defined('PIWIK_TRACKER_MODE') && PIWIK_TRACKER_MODE) { - Zend_Registry::set('db', Piwik_Tracker::getDatabase()); //TODO we can remove these inc...
- fixed #<I> due to wrong order in includes when regenerating cache file in piwik.php git-svn-id: <URL>
diff --git a/rails/init.rb b/rails/init.rb index <HASH>..<HASH> 100644 --- a/rails/init.rb +++ b/rails/init.rb @@ -7,9 +7,9 @@ module Timely def weekdays_field(attribute, options={}) db_field = options[:db_field] || attribute.to_s + '_bit_array' self.composed_of(attribute, - :class_name => "Ti...
Fixes NameError (uninitialized constant Rails::Plugin::Timely::WeekDays)
diff --git a/lib/bibformatadminlib.py b/lib/bibformatadminlib.py index <HASH>..<HASH> 100644 --- a/lib/bibformatadminlib.py +++ b/lib/bibformatadminlib.py @@ -156,6 +156,11 @@ def perform_request_format_template_show(bft, ln=cdslang, code=None, # Look for all existing content_types content_types = bibformat_d...
Added more content-types by default in content-types list for preview.
diff --git a/app/config/bootstrap/media.php b/app/config/bootstrap/media.php index <HASH>..<HASH> 100644 --- a/app/config/bootstrap/media.php +++ b/app/config/bootstrap/media.php @@ -39,7 +39,8 @@ Collection::formats('lithium\net\http\Media'); // use lithium\net\http\Media; // // Dispatcher::applyFilter('_callable',...
Trim leading slash of request url before parsing library and asset
diff --git a/example/example/settings.py b/example/example/settings.py index <HASH>..<HASH> 100644 --- a/example/example/settings.py +++ b/example/example/settings.py @@ -8,6 +8,8 @@ For the full list of settings and their values, see https://docs.djangoproject.com/en/1.6/ref/settings/ """ +import django + # Build...
Non-sucky testrunner for pre-django<I>
diff --git a/lib/travis/model/build.rb b/lib/travis/model/build.rb index <HASH>..<HASH> 100644 --- a/lib/travis/model/build.rb +++ b/lib/travis/model/build.rb @@ -66,7 +66,6 @@ class Build < ActiveRecord::Base end def next_number - env = defined?(Rails) ? Rails.env : ENV['ENV'] || ENV['RAILS_ENV'] || '...
env isn't used anywhere, so i am pretty sure it can be removed
diff --git a/ipyrad/assemble/refmap.py b/ipyrad/assemble/refmap.py index <HASH>..<HASH> 100644 --- a/ipyrad/assemble/refmap.py +++ b/ipyrad/assemble/refmap.py @@ -81,10 +81,11 @@ def index_reference_sequence(data, force=False): ## error handling if proc1.returncode: raise IPyradWarningExit(error1) - ...
Adjusted fix to bgzip test.
diff --git a/active_event/lib/active_event/domain.rb b/active_event/lib/active_event/domain.rb index <HASH>..<HASH> 100644 --- a/active_event/lib/active_event/domain.rb +++ b/active_event/lib/active_event/domain.rb @@ -34,7 +34,7 @@ module ActiveEvent base.server_uri = 'druby://127.0.0.1:8787' end - ...
* different syntax for lambda and default args to ensure rubinius support
diff --git a/ryu/lib/packet/bgp.py b/ryu/lib/packet/bgp.py index <HASH>..<HASH> 100644 --- a/ryu/lib/packet/bgp.py +++ b/ryu/lib/packet/bgp.py @@ -2661,11 +2661,12 @@ class _FlowSpecOperatorBase(_FlowSpecComponentBase): return cls(operator, value), rest def serialize_body(self): - length = (self....
packet/bgp: Properly calculate length for FlowSpec RFC <I> says the 'len' field in numeric or bitmask operators represents that the length of the value field is [1 << 'len']. But, in serializing FlowSpec messages, the packet library uses the `len` field as the length of the value field itself. This patch fixes it to s...
diff --git a/src/Codeception/Lib/Connector/ZF2.php b/src/Codeception/Lib/Connector/ZF2.php index <HASH>..<HASH> 100644 --- a/src/Codeception/Lib/Connector/ZF2.php +++ b/src/Codeception/Lib/Connector/ZF2.php @@ -40,6 +40,8 @@ class ZF2 extends Client $zendRequest = $this->application->getRequest(); $z...
Reset status code in ZF2 connector
diff --git a/lxd/device/device.go b/lxd/device/device.go index <HASH>..<HASH> 100644 --- a/lxd/device/device.go +++ b/lxd/device/device.go @@ -115,6 +115,9 @@ func (d *deviceCommon) Remove() error { } // New instantiates a new device struct, validates the supplied config and sets it into the device. +// If the devi...
device: Modifies New function to return device even if validation fails This is so the caller can decide whether to use the device or not based on the scenario. In cases where a new version of LXD restricts device validation such that a previously valid config is now invalid, it is useful for LXD to still be able to ...
diff --git a/lib/fine_print/controller_additions.rb b/lib/fine_print/controller_additions.rb index <HASH>..<HASH> 100644 --- a/lib/fine_print/controller_additions.rb +++ b/lib/fine_print/controller_additions.rb @@ -30,14 +30,17 @@ module FinePrint class_eval do before_filter(filter_options) do |co...
quietly return if user not logged in
diff --git a/GPy/core/model.py b/GPy/core/model.py index <HASH>..<HASH> 100644 --- a/GPy/core/model.py +++ b/GPy/core/model.py @@ -76,7 +76,7 @@ class Model(Parameterized): jobs = [] pool = mp.Pool(processes=num_processes) for i in range(num_restarts): - ...
change the behavior the optimize_restarts to keep the original model parameters for the firt run
diff --git a/master/buildbot/process/buildstep.py b/master/buildbot/process/buildstep.py index <HASH>..<HASH> 100644 --- a/master/buildbot/process/buildstep.py +++ b/master/buildbot/process/buildstep.py @@ -129,6 +129,8 @@ class SyncLogFileWrapper(logobserver.LogObserver): self.finished = False self.f...
wait for the logs are created before finishing the step There is a race condition between addLogs calls, and the end of the step. for oldStyleSteps, this matters, because the subsequent addStderr, are only called at the end of the step, so we must wait for log are created before continuing
diff --git a/lib/couchrest/validation/validators/required_field_validator.rb b/lib/couchrest/validation/validators/required_field_validator.rb index <HASH>..<HASH> 100644 --- a/lib/couchrest/validation/validators/required_field_validator.rb +++ b/lib/couchrest/validation/validators/required_field_validator.rb @@ -37,7 ...
Fixed required_field_validator to behave correctly with boolean fields
diff --git a/db/ActiveSearchTrait.php b/db/ActiveSearchTrait.php index <HASH>..<HASH> 100644 --- a/db/ActiveSearchTrait.php +++ b/db/ActiveSearchTrait.php @@ -183,7 +183,9 @@ trait ActiveSearchTrait $subquery = (new Query) ->select(array_keys($relation->link)) ->from(['t' ...
fix relation search by adding prefix to pk
diff --git a/pysc2/lib/sc_process.py b/pysc2/lib/sc_process.py index <HASH>..<HASH> 100644 --- a/pysc2/lib/sc_process.py +++ b/pysc2/lib/sc_process.py @@ -61,10 +61,10 @@ class StarcraftProcess(object): host="127.0.0.1", connect=True, timeout_seconds=None, **kwargs): self._proc = None self._co...
Fail early if the binary doesn't exist. PiperOrigin-RevId: <I>
diff --git a/spec/controllers/api/systems_packages_controller_spec.rb b/spec/controllers/api/systems_packages_controller_spec.rb index <HASH>..<HASH> 100644 --- a/spec/controllers/api/systems_packages_controller_spec.rb +++ b/spec/controllers/api/systems_packages_controller_spec.rb @@ -41,7 +41,7 @@ describe Api::Syste...
Temporary fix for jenkins errors
diff --git a/ui/app/products/components/pnc-products-data-table/pncProductsDataTable.js b/ui/app/products/components/pnc-products-data-table/pncProductsDataTable.js index <HASH>..<HASH> 100644 --- a/ui/app/products/components/pnc-products-data-table/pncProductsDataTable.js +++ b/ui/app/products/components/pnc-products-...
[NCL-<I>] Add abbreviation filter option to product list page
diff --git a/docs/source/conf.py b/docs/source/conf.py index <HASH>..<HASH> 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -55,7 +55,7 @@ repo_name = u"dtoolcore" # built documents. # # The short X.Y version. -version = u"2.7.0" +version = u"2.8.0" # The full version, including alpha/beta/rc tags. r...
Update version number to <I>
diff --git a/lib/plugins/package/lib/zipService.js b/lib/plugins/package/lib/zipService.js index <HASH>..<HASH> 100644 --- a/lib/plugins/package/lib/zipService.js +++ b/lib/plugins/package/lib/zipService.js @@ -1,5 +1,6 @@ 'use strict'; +const { ServerlessError } = require('../../../classes/Error'); const BbPromise...
fix(Packaging): Expose meaningfully file access errors (#<I>)
diff --git a/lib/shared/adapters/test_unit_adapter.rb b/lib/shared/adapters/test_unit_adapter.rb index <HASH>..<HASH> 100644 --- a/lib/shared/adapters/test_unit_adapter.rb +++ b/lib/shared/adapters/test_unit_adapter.rb @@ -4,7 +4,7 @@ class TestUnitAdapter def self.command(project_path, ruby_interpreter, files) ...
Use full path with test unit files to support ruby <I>.
diff --git a/presto-main/src/main/java/com/facebook/presto/server/ThreadResource.java b/presto-main/src/main/java/com/facebook/presto/server/ThreadResource.java index <HASH>..<HASH> 100644 --- a/presto-main/src/main/java/com/facebook/presto/server/ThreadResource.java +++ b/presto-main/src/main/java/com/facebook/presto/...
fix for thread listing under heavy workloads
diff --git a/upload/admin/controller/marketplace/cron.php b/upload/admin/controller/marketplace/cron.php index <HASH>..<HASH> 100644 --- a/upload/admin/controller/marketplace/cron.php +++ b/upload/admin/controller/marketplace/cron.php @@ -61,7 +61,7 @@ class Cron extends \Opencart\System\Engine\Controller { } i...
Added integer on $page get request.
diff --git a/script/check-MakeGitError-thread-lock.go b/script/check-MakeGitError-thread-lock.go index <HASH>..<HASH> 100644 --- a/script/check-MakeGitError-thread-lock.go +++ b/script/check-MakeGitError-thread-lock.go @@ -9,6 +9,8 @@ import ( "go/printer" "go/token" "log" + "os" + "path/filepath" "strings" ) ...
only check Go source files for non-thread-locked MakeGitError calls
diff --git a/src/playbacks/html5_video/html5_video.js b/src/playbacks/html5_video/html5_video.js index <HASH>..<HASH> 100644 --- a/src/playbacks/html5_video/html5_video.js +++ b/src/playbacks/html5_video/html5_video.js @@ -169,7 +169,7 @@ class HTML5Video extends Playback { this.$el.html(this.template({ src: this....
html5 video: fix autoplay not working correctly on safari (closes #<I>)
diff --git a/test/utils/TestDateTime.java b/test/utils/TestDateTime.java index <HASH>..<HASH> 100644 --- a/test/utils/TestDateTime.java +++ b/test/utils/TestDateTime.java @@ -71,6 +71,12 @@ public final class TestDateTime { } @Test + public void parseDateTimeStringNow() { + long t = DateTime.parseDateTime...
Added test for Now timestamp Fixes #<I>
diff --git a/satpy/readers/abi_l1b.py b/satpy/readers/abi_l1b.py index <HASH>..<HASH> 100644 --- a/satpy/readers/abi_l1b.py +++ b/satpy/readers/abi_l1b.py @@ -96,10 +96,11 @@ class NC_ABI_L1B(BaseFileHandler): lon_0 = projection.attrs['longitude_of_projection_origin'][...] sweep_axis = projection.attr...
Update ABI scale factors to be <I>-bit floats to improve X/Y calculations In other applications I have noticed that the in-file <I>-bit factor and offset produce a noticeable drift in the per-pixel X/Y values. When converted to <I>-bit to force <I>-bit arithmetic the results are closer to the advertised pixel resoluti...
diff --git a/spyderlib/widgets/explorer.py b/spyderlib/widgets/explorer.py index <HASH>..<HASH> 100644 --- a/spyderlib/widgets/explorer.py +++ b/spyderlib/widgets/explorer.py @@ -395,8 +395,11 @@ class ExplorerTreeWidget(DirView): path, valid = QInputDialog.getText(self, ...
File explorer widget: fixed "Rename" feature
diff --git a/lib/mauth/client.rb b/lib/mauth/client.rb index <HASH>..<HASH> 100644 --- a/lib/mauth/client.rb +++ b/lib/mauth/client.rb @@ -7,6 +7,23 @@ require 'mauth/core_ext' require 'mauth/autoload' module MAuth + class Client + class << self + # the root of the MAuth-Client library + def root + ...
add MAuth::Client.version and, assisting that, MAuth::Client.root
diff --git a/src/tools/Fsck.java b/src/tools/Fsck.java index <HASH>..<HASH> 100644 --- a/src/tools/Fsck.java +++ b/src/tools/Fsck.java @@ -144,6 +144,8 @@ final class Fsck { final StringBuilder buf = new StringBuilder(); for (final Query query : queries) { final long start_time = System.nanoTime(); + ...
fsck: Provide more feedback on how much progress is made. Change-Id: Ib<I>dce<I>e3cadf5f<I>b<I>bab5e4c<I>a0
diff --git a/treeCl/distance_matrix.py b/treeCl/distance_matrix.py index <HASH>..<HASH> 100644 --- a/treeCl/distance_matrix.py +++ b/treeCl/distance_matrix.py @@ -78,7 +78,7 @@ class DistanceMatrix(np.ndarray): add_noise=False, normalise=False, distribute_tasks=False, - ...
Batch simulation (async and seqntl)
diff --git a/gulpfile.js b/gulpfile.js index <HASH>..<HASH> 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -70,7 +70,7 @@ gulp.task('docList', ['gitBranch'], (done) => { /** * Generate API documentation for all js files, place markup in the correct folder for readthedocs.org */ -gulp.task('docs', ['gitBranch', 'lin...
More lambda I really am just fiddling now
diff --git a/eZ/Publish/Core/MVC/Symfony/Controller/Content/ViewController.php b/eZ/Publish/Core/MVC/Symfony/Controller/Content/ViewController.php index <HASH>..<HASH> 100644 --- a/eZ/Publish/Core/MVC/Symfony/Controller/Content/ViewController.php +++ b/eZ/Publish/Core/MVC/Symfony/Controller/Content/ViewController.php @...
EZP-<I>: Made it possible to pass a Location object in $params in ViewController
diff --git a/js/ascendex.js b/js/ascendex.js index <HASH>..<HASH> 100644 --- a/js/ascendex.js +++ b/js/ascendex.js @@ -1831,8 +1831,21 @@ module.exports = class ascendex extends Exchange { } safeNetwork (networkId) { - // TODO: parse network - return networkId; + const networksById = { ...
Completed Ascendex SafeNetwork TODO
diff --git a/alarmdecoder/decoder.py b/alarmdecoder/decoder.py index <HASH>..<HASH> 100644 --- a/alarmdecoder/decoder.py +++ b/alarmdecoder/decoder.py @@ -213,13 +213,13 @@ class AlarmDecoder(object): """ if self._device: - self._device.write(data) + self._device.write(str.enco...
Fixed string encoding used with send.
diff --git a/acceptancetests/assess_upgrade_series.py b/acceptancetests/assess_upgrade_series.py index <HASH>..<HASH> 100755 --- a/acceptancetests/assess_upgrade_series.py +++ b/acceptancetests/assess_upgrade_series.py @@ -39,7 +39,6 @@ def assess_juju_upgrade_series(client, args): reboot_machine(client, target_ma...
Removes set_application_series command from assess_upgrade_series test.
diff --git a/src/Towel/Model/BaseModel.php b/src/Towel/Model/BaseModel.php index <HASH>..<HASH> 100755 --- a/src/Towel/Model/BaseModel.php +++ b/src/Towel/Model/BaseModel.php @@ -320,21 +320,15 @@ class BaseModel extends \Towel\BaseApp * Finds a Record by Id. Returns the record array and sets the internal *...
Improvements in FindById
diff --git a/packages/blueprint-gatekeeper/lib/index.js b/packages/blueprint-gatekeeper/lib/index.js index <HASH>..<HASH> 100644 --- a/packages/blueprint-gatekeeper/lib/index.js +++ b/packages/blueprint-gatekeeper/lib/index.js @@ -1,9 +1,11 @@ var blueprint = require ('blueprint') + , path = require ('path') ...
Specified the app path incorrectly
diff --git a/lib/puppet/functions.rb b/lib/puppet/functions.rb index <HASH>..<HASH> 100644 --- a/lib/puppet/functions.rb +++ b/lib/puppet/functions.rb @@ -537,7 +537,7 @@ module Puppet::Functions required_count = from # array has just one element, but there may be multiple names that needs to be subtr...
(PUP-<I>) Fix argument count adjustment for Ruby <I> There was a problem with PArrayType based signature string when there are no parameter names - the adjustment resulted in off by one error in the displayed string.
diff --git a/core/src/main/java/com/orientechnologies/orient/core/sql/OSQLEngine.java b/core/src/main/java/com/orientechnologies/orient/core/sql/OSQLEngine.java index <HASH>..<HASH> 100755 --- a/core/src/main/java/com/orientechnologies/orient/core/sql/OSQLEngine.java +++ b/core/src/main/java/com/orientechnologies/orien...
Fix parsing problem for two spaces at the beginning of SQL statements (old parser) Resolves: #<I>
diff --git a/lib/bullet.rb b/lib/bullet.rb index <HASH>..<HASH> 100644 --- a/lib/bullet.rb +++ b/lib/bullet.rb @@ -177,14 +177,17 @@ module Bullet end def profile - Bullet.start_request if Bullet.enable? + if Bullet.enable? + begin + Bullet.start_request - yield + y...
ensure calling end_request in profile method
diff --git a/hacking/core.py b/hacking/core.py index <HASH>..<HASH> 100644 --- a/hacking/core.py +++ b/hacking/core.py @@ -74,6 +74,10 @@ IMPORT_EXCEPTIONS += DEFAULT_IMPORT_EXCEPTIONS def is_import_exception(mod): + """Check module name to see if import has been whitelisted. + + Import based rules should...
Add docstring to is_import_exception Clarify what is_import_exception does. Leave the name as is_import_exception and no is_import_whitelisted because import-exceptions is part of the API for hacking (used in the hacking section of tox.ini). Change-Id: Ib<I>d<I>ecfcdbcb<I>b<I>ab<I>e<I>a<I>
diff --git a/byte-buddy-dep/src/test/java/net/bytebuddy/test/utility/JavaVersionRule.java b/byte-buddy-dep/src/test/java/net/bytebuddy/test/utility/JavaVersionRule.java index <HASH>..<HASH> 100644 --- a/byte-buddy-dep/src/test/java/net/bytebuddy/test/utility/JavaVersionRule.java +++ b/byte-buddy-dep/src/test/java/net/b...
Turned arround version comparison for preventing test of a certain level being executed.
diff --git a/scs_osio/client_auth.py b/scs_osio/client_auth.py index <HASH>..<HASH> 100755 --- a/scs_osio/client_auth.py +++ b/scs_osio/client_auth.py @@ -22,8 +22,6 @@ from scs_host.sys.host import Host from scs_osio.cmd.cmd_client_auth import CmdClientAuth -# TODO: check whether the USER_ID exists on OSIO? - # ...
Added user check to host_device.
diff --git a/views/search.py b/views/search.py index <HASH>..<HASH> 100644 --- a/views/search.py +++ b/views/search.py @@ -533,11 +533,20 @@ def results(qid, p, of, so, rm): recids = faceted_results_filter(recIDsHitSet, filter_data, ...
search: quickfix pagination troubles with facets * Fixes problem with ignoring pagination options while using facets. (closes #<I>) (PR #<I>)
diff --git a/vint/ast/parsing.py b/vint/ast/parsing.py index <HASH>..<HASH> 100644 --- a/vint/ast/parsing.py +++ b/vint/ast/parsing.py @@ -3,7 +3,6 @@ from vint._bundles import vimlparser from vint.ast.traversing import traverse from vint.encodings.decoder import Decoder from vint.encodings.decoding_strategy import ...
Remove debugging code (#<I>)
diff --git a/commands/command_filter_process.go b/commands/command_filter_process.go index <HASH>..<HASH> 100644 --- a/commands/command_filter_process.go +++ b/commands/command_filter_process.go @@ -139,7 +139,7 @@ func filterCommand(cmd *cobra.Command, args []string) { // until a read from that channel becomes blo...
commands: make 'readAvailable' take an initial capacity
diff --git a/src/Auth/ResetPassword/ResetPasswordRepository.php b/src/Auth/ResetPassword/ResetPasswordRepository.php index <HASH>..<HASH> 100644 --- a/src/Auth/ResetPassword/ResetPasswordRepository.php +++ b/src/Auth/ResetPassword/ResetPasswordRepository.php @@ -4,7 +4,6 @@ namespace Nodes\Api\Auth\ResetPassword; use ...
Don't hash in ResetPasswordRepository. This should be done in the user model with setPasswordAttribute()
diff --git a/git/git.go b/git/git.go index <HASH>..<HASH> 100644 --- a/git/git.go +++ b/git/git.go @@ -17,6 +17,7 @@ import ( "regexp" "strconv" "strings" + "syscall" "time" lfserrors "github.com/git-lfs/git-lfs/errors" @@ -685,9 +686,13 @@ func GitAndRootDirs() (string, string, error) { // If we got a f...
git/git.go: use Go <I> compatible ExitStatus We can retain support for Go <I> by replacing ProcessState.ExitCode() with ProcessState.Sys(), which we then try to convert to syscall.WaitStatus before using WaitStatus.ExitStatus().
diff --git a/src/FieldHandlers/ListFieldHandler.php b/src/FieldHandlers/ListFieldHandler.php index <HASH>..<HASH> 100644 --- a/src/FieldHandlers/ListFieldHandler.php +++ b/src/FieldHandlers/ListFieldHandler.php @@ -73,9 +73,16 @@ class ListFieldHandler extends BaseFieldHandler $result = $data; $listNa...
modify List Handler input value logic to support new nested functionality (task #<I>)
diff --git a/src/Parser/Comment.php b/src/Parser/Comment.php index <HASH>..<HASH> 100644 --- a/src/Parser/Comment.php +++ b/src/Parser/Comment.php @@ -59,7 +59,8 @@ class Comment extends PartParser if($this->openedParenthesis >= 1) { return new InvalidEmail(new UnclosedComment(), $this->lexer->t...
No superfluous elseif (#<I>) Replaces superfluous elseif with if.
diff --git a/lib/flag_shih_tzu.rb b/lib/flag_shih_tzu.rb index <HASH>..<HASH> 100644 --- a/lib/flag_shih_tzu.rb +++ b/lib/flag_shih_tzu.rb @@ -100,6 +100,22 @@ module FlagShihTzu def self.unset_#{flag_name}_sql sql_set_for_flag(:#{flag_name}, '#{colmn}', false) end + + def se...
Add dynamic ".*_values_for" helpers
diff --git a/test_settings.py b/test_settings.py index <HASH>..<HASH> 100644 --- a/test_settings.py +++ b/test_settings.py @@ -17,3 +17,27 @@ except ImportError: pass SITE_ID = 1 + +LOGGING = { + 'version': 1, + 'disable_existing_loggers': True, + 'formatters': { + 'simple': { + 'form...
Infrastructure for convenient logging during tests.
diff --git a/src/components/source.js b/src/components/source.js index <HASH>..<HASH> 100644 --- a/src/components/source.js +++ b/src/components/source.js @@ -59,7 +59,7 @@ module.exports = class ComponentSource extends Source { const content = yield variant.getContent(true); const rendered =...
fix(components): make preview find call @-prefix agnostic
diff --git a/ezp/Persistence/Content/CreateStruct.php b/ezp/Persistence/Content/CreateStruct.php index <HASH>..<HASH> 100644 --- a/ezp/Persistence/Content/CreateStruct.php +++ b/ezp/Persistence/Content/CreateStruct.php @@ -16,8 +16,7 @@ use ezp\Persistence\ValueObject; class CreateStruct extends ValueObject { /*...
Add: $name on Content\UpdateStruct and document it as string[] to support languages
diff --git a/lib/easy_captcha/routes.rb b/lib/easy_captcha/routes.rb index <HASH>..<HASH> 100644 --- a/lib/easy_captcha/routes.rb +++ b/lib/easy_captcha/routes.rb @@ -3,7 +3,7 @@ module ActionDispatch #:nodoc: class Mapper #:nodoc: # call to add default captcha root def captcha_route - match "...
fixes controller namespacing in routes; closes #3
diff --git a/toml.py b/toml.py index <HASH>..<HASH> 100644 --- a/toml.py +++ b/toml.py @@ -58,6 +58,10 @@ def parse_value(v): elif v == 'false': return False elif v[0] == '"': + escapes = ['0', 'n', 'r', 't', '"', '\\'] + escapedchars = ['\0', '\n', '\r', '\t', '\"', '\\'] + for ...
Fix issue with escaped characters and floats I think I discovered a bug in PyYAML
diff --git a/spaceship/lib/spaceship/test_flight/client.rb b/spaceship/lib/spaceship/test_flight/client.rb index <HASH>..<HASH> 100644 --- a/spaceship/lib/spaceship/test_flight/client.rb +++ b/spaceship/lib/spaceship/test_flight/client.rb @@ -112,6 +112,10 @@ module Spaceship req.body = body.to_json ...
Invalidate group list when a group is created (#<I>) * Invalidate group list when a group is created * Fixing tests
diff --git a/tests/bootstrap.php b/tests/bootstrap.php index <HASH>..<HASH> 100644 --- a/tests/bootstrap.php +++ b/tests/bootstrap.php @@ -1,22 +1,12 @@ <?php -$files = array( - __DIR__.'/../vendor/autoload.php', //submodule autoloading - __DIR__.'/../../../autoload.php' //composer autoloading -); - -foreach (...
Remembered to put tests/bootstrap.php back
diff --git a/src/Readability.php b/src/Readability.php index <HASH>..<HASH> 100644 --- a/src/Readability.php +++ b/src/Readability.php @@ -1564,7 +1564,7 @@ class Readability */ public function getContent() { - return $this->content->C14N(); + return (null !== $this->content) ? $this->cont...
Fix error C<I>N I have the error: "Call to a member function C<I>N() on null" You could reproduce like this: - try to parse a url like <URL> with the same object readability Previously, getContent would return "null" but now it call ->C<I>N() on a NULL object.
diff --git a/client/wordpress-com.js b/client/wordpress-com.js index <HASH>..<HASH> 100644 --- a/client/wordpress-com.js +++ b/client/wordpress-com.js @@ -348,7 +348,8 @@ if ( config.isEnabled( 'manage/custom-post-types' ) ) { name: 'posts-custom', paths: [ '/types' ], module: 'my-sites/types', - secondary: t...
CPT: Set types group to sites So “My Sites” master bar link appears as active
diff --git a/config/webpack.test.js b/config/webpack.test.js index <HASH>..<HASH> 100644 --- a/config/webpack.test.js +++ b/config/webpack.test.js @@ -55,7 +55,10 @@ module.exports = function(env) { exclude: [ /\.(e2e|spec)\.ts$/, /node_modules/ - ] + ], + ...
bug(tests): fix build?
diff --git a/src/Query/LaravelQuery.php b/src/Query/LaravelQuery.php index <HASH>..<HASH> 100644 --- a/src/Query/LaravelQuery.php +++ b/src/Query/LaravelQuery.php @@ -200,6 +200,7 @@ class LaravelQuery extends LaravelBaseQuery implements IQueryProvider $skip = null, $skipToken = null ) { + ...
Annotate source unpacks in LaravelQuery
diff --git a/login/signup.php b/login/signup.php index <HASH>..<HASH> 100644 --- a/login/signup.php +++ b/login/signup.php @@ -34,11 +34,9 @@ } } - if ($err) { - foreach ((array)$err as $key => $value) { - $focus = "form.$key"; - } - } + if ($err) { + $focus = 'form.' . array_shift(array_flip(get_o...
Much cooler way to set the form focus after an error. Sent in by Greg Barnett.