diff
stringlengths
65
26.7k
message
stringlengths
7
9.92k
diff --git a/presto-orc/src/main/java/com/facebook/presto/orc/reader/TimestampSelectiveStreamReader.java b/presto-orc/src/main/java/com/facebook/presto/orc/reader/TimestampSelectiveStreamReader.java index <HASH>..<HASH> 100644 --- a/presto-orc/src/main/java/com/facebook/presto/orc/reader/TimestampSelectiveStreamReader....
Speed up GC of TimestampSelectiveReader by clearing member variables in close()
diff --git a/green/loader.py b/green/loader.py index <HASH>..<HASH> 100644 --- a/green/loader.py +++ b/green/loader.py @@ -88,18 +88,4 @@ def getTests(target): logging.debug("Load method: FILE - {}".format(candidate)) return tests - - # INSTALLED MODULE - (Unlike the installed package, we...
Through extensive testing, I found that we never hit the loadTestsFromModule section, because loadTestsFromName handles the case of a built-in module and a module relative to the current path.
diff --git a/system/Router/Router.php b/system/Router/Router.php index <HASH>..<HASH> 100644 --- a/system/Router/Router.php +++ b/system/Router/Router.php @@ -125,6 +125,8 @@ class Router implements RouterInterface $this->method = $this->collection->getDefaultMethod(); $this->collection->setHTTP...
refactor: move property initialization to constructor
diff --git a/DependencyInjection/Source/JWKSetSource/JKU.php b/DependencyInjection/Source/JWKSetSource/JKU.php index <HASH>..<HASH> 100644 --- a/DependencyInjection/Source/JWKSetSource/JKU.php +++ b/DependencyInjection/Source/JWKSetSource/JKU.php @@ -30,7 +30,7 @@ final class JKU extends DownloadedJWKSet $defi...
Bug fixed when a JKU source is created from the configuration file
diff --git a/lib/ponder/delegate.rb b/lib/ponder/delegate.rb index <HASH>..<HASH> 100644 --- a/lib/ponder/delegate.rb +++ b/lib/ponder/delegate.rb @@ -1,6 +1,6 @@ module Ponder module Delegate - def delegate! + def delegate thaum = self (IRC.instance_methods + [:configure, :on, :connect,...
delegate functionality restricted for Ruby >= <I>
diff --git a/lib/socket.js b/lib/socket.js index <HASH>..<HASH> 100644 --- a/lib/socket.js +++ b/lib/socket.js @@ -112,6 +112,11 @@ Socket.prototype.open = function () { Socket.prototype.setTransport = function (transport) { var self = this; + if (this.transport) { + // debug: clearing existing transport + ...
Sanity check: clear all events from previous transport in setTransport.
diff --git a/test/tests/clone.js b/test/tests/clone.js index <HASH>..<HASH> 100644 --- a/test/tests/clone.js +++ b/test/tests/clone.js @@ -103,4 +103,18 @@ describe("Clone", function() { return prepTestAndClean(url, file); }); + + it("will not segfault when accessing a url without username", function() { + ...
Unit test showing segfault via #<I> If you attempt to clone a private repository without passing along a username, `NULL` will make `NanNew` very upset.
diff --git a/mod/data/lib.php b/mod/data/lib.php index <HASH>..<HASH> 100755 --- a/mod/data/lib.php +++ b/mod/data/lib.php @@ -1192,9 +1192,9 @@ function data_print_preference_form($data, $perpage, $search, $sort='', $order=' $fn = !empty($search_array[DATA_FIRSTNAME]->data) ? $search_array[DATA_FIRSTNAME]->data :...
MDL-<I> xhtml strict; merged from MOODLE_<I>_STABLE
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -73,7 +73,7 @@ function vimeo(str) { var id; var arr; - const vimeoPipe = [ + var vimeoPipe = [ 'https?:\/\/vimeo\.com\/[0-9]+$', 'https?:\/\/player\.vimeo\.com\/video\/[0-9]+$', 'https?:\/\/vimeo\.com\/channels...
Replace `const` with `var` in vimeo code. (#<I>) Since `get-video-id` doesn't have a build process involving transpilation, and since node dependencies typically don't get transpiled, these `const` declarations were making their way into ES5 code. Replacing them with `var` should do the trick.
diff --git a/src/index.js b/src/index.js index <HASH>..<HASH> 100644 --- a/src/index.js +++ b/src/index.js @@ -37,6 +37,7 @@ import {DoughnutChartDemo} from './showcase/chart/DoughnutChartDemo'; import {RadarChartDemo} from './showcase/chart/RadarChartDemo'; import {PolarAreaChartDemo} from './showcase/chart/PolarAre...
Added DataListDemo into index.js
diff --git a/lib/chat.js b/lib/chat.js index <HASH>..<HASH> 100644 --- a/lib/chat.js +++ b/lib/chat.js @@ -1,5 +1,4 @@ -var jQuery = require('jQuery'), - builder = require('node-xmpp'), +var builder = require('node-xmpp'), Base = require('./base') var Chat = function() {} @@ -20,14 +19,13 @@ Chat.prot...
Removing use of jQuery, issue #<I>
diff --git a/lib/mock-promises.js b/lib/mock-promises.js index <HASH>..<HASH> 100644 --- a/lib/mock-promises.js +++ b/lib/mock-promises.js @@ -28,12 +28,14 @@ }; var fakeThen = function() { + var promise = this; contractsTracker.add({ - promise: this, + promise: promise, f...
Fake then returns the promise making it chainable (and inline with Q and other libraries)
diff --git a/spyderlib/widgets/helperwidgets.py b/spyderlib/widgets/helperwidgets.py index <HASH>..<HASH> 100644 --- a/spyderlib/widgets/helperwidgets.py +++ b/spyderlib/widgets/helperwidgets.py @@ -137,7 +137,6 @@ class HTMLDelegate(QStyledItemDelegate): doc = QTextDocument() doc.setHtml(options.te...
File switcher: Remove option that was making it to not highlight correctly some entries
diff --git a/mod/hotpot/index.php b/mod/hotpot/index.php index <HASH>..<HASH> 100644 --- a/mod/hotpot/index.php +++ b/mod/hotpot/index.php @@ -356,7 +356,9 @@ // get best score if (is_numeric($totals[$hotpot->id]->maxscore)) { - $bestscore = $totals[$hotpot->id]->maxscore." / ...
adjust "best grade" to range 0 to hotpot->maxgrade
diff --git a/lib/withings/error.rb b/lib/withings/error.rb index <HASH>..<HASH> 100644 --- a/lib/withings/error.rb +++ b/lib/withings/error.rb @@ -6,5 +6,13 @@ module Withings # Raised when client is misconfigured ClientConfigurationError = Class.new(self) + + # Withings returns 200 for everything, makin...
Raise exception when receiving a non-successful response
diff --git a/core/src/main/java/org/infinispan/statetransfer/StateProviderImpl.java b/core/src/main/java/org/infinispan/statetransfer/StateProviderImpl.java index <HASH>..<HASH> 100644 --- a/core/src/main/java/org/infinispan/statetransfer/StateProviderImpl.java +++ b/core/src/main/java/org/infinispan/statetransfer/Stat...
ISPN-<I> fix caused unnecessary InterruptedExceptions When state transfer is over, the response to the last StateResponseCommand could reach the provider node after the CH_UPDATE from the coordinator. If that happens, no data is lost, but the OutboundTransferTask thread is interrupted and it logs the InterruptedExcep...
diff --git a/lib/rbbt/rest/common/render.rb b/lib/rbbt/rest/common/render.rb index <HASH>..<HASH> 100644 --- a/lib/rbbt/rest/common/render.rb +++ b/lib/rbbt/rest/common/render.rb @@ -147,6 +147,11 @@ module RbbtRESTHelpers pid = @step.child{ begin + class << @step + def sta...
Don't allow fragments in forks to change step status, it might make it out of sync and be aborted
diff --git a/lib/ransack/constants.rb b/lib/ransack/constants.rb index <HASH>..<HASH> 100644 --- a/lib/ransack/constants.rb +++ b/lib/ransack/constants.rb @@ -1,8 +1,5 @@ module Ransack module Constants - ASC_ARROW = '&#9650;'.freeze - DESC_ARROW = '&#9660;'.freeze - OR ...
Replace arrow constants with frozen strings These constants are only used once in the code base and constant lookup is slower than frozen strings in MRI Ruby <I>+.
diff --git a/update.php b/update.php index <HASH>..<HASH> 100644 --- a/update.php +++ b/update.php @@ -90,6 +90,9 @@ ## Build is no longer used unset($settings['symphony']['build']); + + ## Remove the old Maintenance Mode setting + unset($settings['public']['maintenance_mode']); ## Set the default la...
Updater will remove the old public:maintenance_mode setting. [Closes Issue #<I>]
diff --git a/spec/acceptance/excerpts_spec.rb b/spec/acceptance/excerpts_spec.rb index <HASH>..<HASH> 100644 --- a/spec/acceptance/excerpts_spec.rb +++ b/spec/acceptance/excerpts_spec.rb @@ -1,3 +1,5 @@ +# encoding: utf-8 + require 'acceptance/spec_helper' describe 'Accessing excerpts for methods on a search result...
Encoding comments for MRI <I>
diff --git a/class.phpmailer.php b/class.phpmailer.php index <HASH>..<HASH> 100644 --- a/class.phpmailer.php +++ b/class.phpmailer.php @@ -2194,6 +2194,7 @@ class PHPMailer { if (empty($this->AltBody)) { $this->AltBody = 'To view this email message, open it in a program that understands HTML!' . "\n\n"; ...
Return $message as API requires Issue: #<I>
diff --git a/lib/jasmine_rails/save_fixture.rb b/lib/jasmine_rails/save_fixture.rb index <HASH>..<HASH> 100644 --- a/lib/jasmine_rails/save_fixture.rb +++ b/lib/jasmine_rails/save_fixture.rb @@ -1,5 +1,7 @@ require 'fileutils' +# DEPRECATED - This feature will be removed as soon as it causes another issue +# # Adds...
Note that save_fixture is deprecated
diff --git a/lib/init.js b/lib/init.js index <HASH>..<HASH> 100644 --- a/lib/init.js +++ b/lib/init.js @@ -81,14 +81,14 @@ module.exports = function (apiKey, chain) { topic2_3_opr, topic3) { - const module = 'log'; + const module = 'logs'; const action = 'getLogs'; va...
getLogs fixed typo in "tolock" - should be "toBlock" no "address" field set module should be = 'logs', not 'log'
diff --git a/lib/ProofSet.js b/lib/ProofSet.js index <HASH>..<HASH> 100644 --- a/lib/ProofSet.js +++ b/lib/ProofSet.js @@ -320,7 +320,10 @@ async function _matchProofSet({ continue; } - // next, find the suite that can verify the proof + // next, find the suite that can verify the proof; if found, `...
Add comment about `matched` var.
diff --git a/tests/test_decorators.py b/tests/test_decorators.py index <HASH>..<HASH> 100644 --- a/tests/test_decorators.py +++ b/tests/test_decorators.py @@ -25,6 +25,26 @@ class TestOperation(object): assert target.url_path is NoPath assert target.methods == (Method.GET,) + def test_str(self): ...
Tests for Operation str and repr
diff --git a/djsupervisor/templatetags/djsupervisor_tags.py b/djsupervisor/templatetags/djsupervisor_tags.py index <HASH>..<HASH> 100644 --- a/djsupervisor/templatetags/djsupervisor_tags.py +++ b/djsupervisor/templatetags/djsupervisor_tags.py @@ -14,12 +14,11 @@ import shutil from django import template register = te...
Fixed cyclic import with Django <I>
diff --git a/ast_/ast.py b/ast_/ast.py index <HASH>..<HASH> 100644 --- a/ast_/ast.py +++ b/ast_/ast.py @@ -54,8 +54,12 @@ class NodeVisitor: def generic_visit(node: Ast): raise RuntimeError("No {}() method defined".format('visit_' + node.token)) - def filter_inorder(self, node, filter_func: Callable[...
Add filter children selector to filter_inorder Now children are also traversed on selected nodes. Also children can be filtered out (to allow cut ! predicates)
diff --git a/src/instrumentation/transaction.js b/src/instrumentation/transaction.js index <HASH>..<HASH> 100644 --- a/src/instrumentation/transaction.js +++ b/src/instrumentation/transaction.js @@ -89,7 +89,9 @@ Transaction.prototype._adjustDurationToLongestTrace = function () { Transaction.prototype.startTrace = f...
Add check if rootTrace is present
diff --git a/lib/jasmine_rails/runner.rb b/lib/jasmine_rails/runner.rb index <HASH>..<HASH> 100644 --- a/lib/jasmine_rails/runner.rb +++ b/lib/jasmine_rails/runner.rb @@ -13,7 +13,7 @@ module JasmineRails File.open(runner_path, 'w') {|f| f << html.gsub('/assets', './assets')} phantomjs_runner_pa...
removed file:// from command run, windows does not recognise this prefix.
diff --git a/src/Validation.php b/src/Validation.php index <HASH>..<HASH> 100644 --- a/src/Validation.php +++ b/src/Validation.php @@ -9,6 +9,7 @@ namespace Nutrition; */ use Base; +use Cursor; use DB\SQL\Mapper as SQLMapperOri; use DB\Jig\Mapper as JigMapperOri; use DB\Mongo\Mapper as MongoMapperOri; @@ -41,7 ...
Bugfix: wrong type hinting on Validation
diff --git a/lib/arjdbc/db2/adapter.rb b/lib/arjdbc/db2/adapter.rb index <HASH>..<HASH> 100644 --- a/lib/arjdbc/db2/adapter.rb +++ b/lib/arjdbc/db2/adapter.rb @@ -48,6 +48,19 @@ module ArJdbc # TODO: Explain this! end + def prefetch_primary_key?(table_name = nil) + # TRUE if the table has no ident...
Fetch a sequence value manually for tables with no identity columns This is to support legacy tables for which the sequence needs to be manually specified in ActiveRecord
diff --git a/public/js/chrome/navigation.js b/public/js/chrome/navigation.js index <HASH>..<HASH> 100644 --- a/public/js/chrome/navigation.js +++ b/public/js/chrome/navigation.js @@ -49,7 +49,7 @@ function opendropdown(el) { var menu; if (!dropdownOpen) { menu = $(el).closest('.menu').addClass('open').trigge...
correctly select/set focus on the first _visible_ input element on form based menus (like login)
diff --git a/ORM/PaginatedRepository.php b/ORM/PaginatedRepository.php index <HASH>..<HASH> 100644 --- a/ORM/PaginatedRepository.php +++ b/ORM/PaginatedRepository.php @@ -40,9 +40,7 @@ class PaginatedRepository extends EntityRepository { $qb = $this->createPaginatedQueryBuilder($criteria); $qb->a...
PaginatedRepository move order logic to protected method
diff --git a/lib/serf/client.js b/lib/serf/client.js index <HASH>..<HASH> 100644 --- a/lib/serf/client.js +++ b/lib/serf/client.js @@ -84,7 +84,7 @@ Client.prototype = { var name = member.Name; if (members.some(function(member) { - return member.Tags["have-unprocessed-messages-for-" + n...
Follow to change of droonga-engine
diff --git a/lib/browser.js b/lib/browser.js index <HASH>..<HASH> 100644 --- a/lib/browser.js +++ b/lib/browser.js @@ -18,3 +18,4 @@ require('./http/xhr'); if (typeof window !== 'undefined') window.AWS = AWS; if (typeof module !== 'undefined') module.exports = AWS; +if (typeof self !== 'undefined') self.AWS = AWS;
adding AWS namespace to self to support running in webworkers
diff --git a/java/server/src/org/openqa/selenium/remote/server/handler/GetSessionCapabilities.java b/java/server/src/org/openqa/selenium/remote/server/handler/GetSessionCapabilities.java index <HASH>..<HASH> 100644 --- a/java/server/src/org/openqa/selenium/remote/server/handler/GetSessionCapabilities.java +++ b/java/se...
DanielWagnerHall: Reverting revision <I> because it breaks the remote server - the Capabilities map is immutable. Make a copy if you want to change it. r<I>
diff --git a/closure/goog/ui/drilldownrow.js b/closure/goog/ui/drilldownrow.js index <HASH>..<HASH> 100644 --- a/closure/goog/ui/drilldownrow.js +++ b/closure/goog/ui/drilldownrow.js @@ -217,14 +217,6 @@ goog.ui.DrilldownRow.prototype.removeChild = function(child) { }; -/** @override */ -goog.ui.DrilldownRow.proto...
No access to private member. ------------- Created by MOE: <URL>
diff --git a/molvs/normalize.py b/molvs/normalize.py index <HASH>..<HASH> 100644 --- a/molvs/normalize.py +++ b/molvs/normalize.py @@ -39,7 +39,7 @@ class Normalization(object): @memoized_property def transform(self): log.debug('Loading Normalization transform: %s', self.name) - return AllChem...
Fix ReactionFromSmarts for both python 2 and 3
diff --git a/components/dialog-ng/dialog-ng.js b/components/dialog-ng/dialog-ng.js index <HASH>..<HASH> 100644 --- a/components/dialog-ng/dialog-ng.js +++ b/components/dialog-ng/dialog-ng.js @@ -187,7 +187,7 @@ class DialogController { Reflect.deleteProperty(this, 'DIALOG_NAMESPACE'); - if (shortcuts.getSco...
RG-<I> re-implement Former-commit-id: fc<I>f<I>a<I>a<I>bfc8ada0b4ce<I>f7e<I>e
diff --git a/src/inode.js b/src/inode.js index <HASH>..<HASH> 100644 --- a/src/inode.js +++ b/src/inode.js @@ -264,6 +264,7 @@ export function makeInodeHeaderBlob( datastore_id, inode_type, owner_id, inode_u 'type': inode_type, 'owner': owner_id, 'uuid': inode_uuid, + 'readers': [], // unus...
empty list of readers in each inode, for now
diff --git a/lib/svtplay_dl/fetcher/dash.py b/lib/svtplay_dl/fetcher/dash.py index <HASH>..<HASH> 100644 --- a/lib/svtplay_dl/fetcher/dash.py +++ b/lib/svtplay_dl/fetcher/dash.py @@ -94,5 +94,6 @@ class DASH(VideoRetriever): if self.options.output != "-": file_d.close() + progressbar(...
dash: complete the progress bar after file is downloaded The progress bar wasn't updated after the downloaded completed, so the final progress bar would look something like this: [<I>/<I>][===============================.] ETA: 0:<I>:<I> This can be interpreted as the file didn't download completely. Reported-by...
diff --git a/libraries/joomla/cache/storage/file.php b/libraries/joomla/cache/storage/file.php index <HASH>..<HASH> 100644 --- a/libraries/joomla/cache/storage/file.php +++ b/libraries/joomla/cache/storage/file.php @@ -9,8 +9,6 @@ defined('JPATH_PLATFORM') or die; -jimport('joomla.filesystem.file'); - /** * Fil...
[#<I>] JCacheFIle should not use JFile calls at all
diff --git a/src/console/controllers/Migrate.php b/src/console/controllers/Migrate.php index <HASH>..<HASH> 100644 --- a/src/console/controllers/Migrate.php +++ b/src/console/controllers/Migrate.php @@ -89,7 +89,7 @@ class Migrate extends Controller $custom_name = false; - if (count($argv)) { + ...
Fix count (php<I>)
diff --git a/pymc3/distributions/mixture.py b/pymc3/distributions/mixture.py index <HASH>..<HASH> 100644 --- a/pymc3/distributions/mixture.py +++ b/pymc3/distributions/mixture.py @@ -397,6 +397,19 @@ class Mixture(Distribution): return comp_dist_shapes, broadcast_shape def logp(self, value): + ""...
Add doc strings for random and logp class methods for mixture distribution
diff --git a/system/Config/DotEnv.php b/system/Config/DotEnv.php index <HASH>..<HASH> 100644 --- a/system/Config/DotEnv.php +++ b/system/Config/DotEnv.php @@ -183,7 +183,7 @@ class DotEnv $value = $this->resolveNestedVariables($value); // Handle hex2bin prefix - if ($name === 'encryption.key' && substr($value,...
Update system/Config/DotEnv.php
diff --git a/salt/modules/file.py b/salt/modules/file.py index <HASH>..<HASH> 100644 --- a/salt/modules/file.py +++ b/salt/modules/file.py @@ -686,7 +686,7 @@ def find(path, *args, **kwargs): except ValueError as ex: return 'error: {0}'.format(ex) - ret = [item for i in [finder.find(os.path.expanduse...
Preserve previous behaviour when doing glob expansion in file.find
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 @@ -1,9 +1,3 @@ -# temporary -puts "Running rubocop..." -output = `rubocop` -puts output -raise "Rubocop failed" unless output.include? "no offenses detected" - require 'coveralls' Co...
Rubocop is now being run by fastlane and not spaceship
diff --git a/core/src/main/java/org/infinispan/persistence/manager/PersistenceManagerImpl.java b/core/src/main/java/org/infinispan/persistence/manager/PersistenceManagerImpl.java index <HASH>..<HASH> 100644 --- a/core/src/main/java/org/infinispan/persistence/manager/PersistenceManagerImpl.java +++ b/core/src/main/java/...
ISPN-<I> Preload write is performed on persistence thread * Make sure to observe on the CPU thread
diff --git a/src/get-region-from-meta.js b/src/get-region-from-meta.js index <HASH>..<HASH> 100644 --- a/src/get-region-from-meta.js +++ b/src/get-region-from-meta.js @@ -33,12 +33,7 @@ function getRegionFromMeta({ v, /*c, */r25th, r40th, r50th, r75th, r90th } = {}, regionMean.right = regionMean.left + regionMean....
should be no need for redundant boundary detection
diff --git a/views/boom/editor/footer.php b/views/boom/editor/footer.php index <HASH>..<HASH> 100644 --- a/views/boom/editor/footer.php +++ b/views/boom/editor/footer.php @@ -22,4 +22,4 @@ //]]> </script> </body> -</html> +</html> \ No newline at end of file
Removed blank link at EOF
diff --git a/testing/test_session.py b/testing/test_session.py index <HASH>..<HASH> 100644 --- a/testing/test_session.py +++ b/testing/test_session.py @@ -126,14 +126,14 @@ class SessionTests(object): ) reprec = testdir.inline_run(p) passed, skipped, failed = reprec.listoutcomes() - as...
test_implicit_bad_repr1: harden/cleanup
diff --git a/activerecord/lib/active_record/associations/class_methods/join_dependency/join_association.rb b/activerecord/lib/active_record/associations/class_methods/join_dependency/join_association.rb index <HASH>..<HASH> 100644 --- a/activerecord/lib/active_record/associations/class_methods/join_dependency/join_asso...
removing interpolate_sql from join associations
diff --git a/config/config.php b/config/config.php index <HASH>..<HASH> 100644 --- a/config/config.php +++ b/config/config.php @@ -8,6 +8,7 @@ return [ 'productionEnvironments' => [ 'prod', 'production', + 'live', ], /*
add 'live' as default production env
diff --git a/message.php b/message.php index <HASH>..<HASH> 100644 --- a/message.php +++ b/message.php @@ -161,7 +161,7 @@ if ($action=='send' && $good_to_send) { echo WT_I18N::translate('Message was not sent'), '<br />'; AddToLog('Unable to send message. FROM:'.$from.' TO:'.$to.' (recipient does not exist)'...
message.php - undefined variable (error from previous change)
diff --git a/game.rb b/game.rb index <HASH>..<HASH> 100644 --- a/game.rb +++ b/game.rb @@ -47,16 +47,16 @@ class Grid cells << @storage[index - 1] unless beginning_of_row?(index) cells << @storage[index + 1] unless end_of_row?(index) - unless index < size + unless first_row?(index) cells << @st...
Minor changes for consistency - And reordering to highlight duplication
diff --git a/state.go b/state.go index <HASH>..<HASH> 100644 --- a/state.go +++ b/state.go @@ -814,6 +814,14 @@ func (s *State) OnInterface(se *Session, i interface{}) (err error) { case *GuildDelete: err = s.GuildRemove(t.Guild) case *GuildMemberAdd: + // Updates the MemberCount of the guild. + guild, err := ...
track membercount on memberAdd and leave (#<I>) * track membercount on memberAdd and leave * requested changes
diff --git a/src/file.js b/src/file.js index <HASH>..<HASH> 100644 --- a/src/file.js +++ b/src/file.js @@ -167,7 +167,7 @@ exports = module.exports = { * @return {Boolean} */ isDirectory: function (path) { - return fs.lstatSync(path).isDirectory(); + return fs.statSync(path).isDirectory(); }, /...
Use `stat` instead of `lstat` to support symlinks
diff --git a/media/player/html5video/tests/player_test.php b/media/player/html5video/tests/player_test.php index <HASH>..<HASH> 100644 --- a/media/player/html5video/tests/player_test.php +++ b/media/player/html5video/tests/player_test.php @@ -60,7 +60,7 @@ class media_html5video_testcase extends advanced_testcase { ...
MDL-<I> media_html5video: Add test for native extensions support. This is to verify that all files of html_video mime type extensions are passing list_supported_urls method correctly.
diff --git a/src/test/java/org/attribyte/wp/db/DBTest.java b/src/test/java/org/attribyte/wp/db/DBTest.java index <HASH>..<HASH> 100644 --- a/src/test/java/org/attribyte/wp/db/DBTest.java +++ b/src/test/java/org/attribyte/wp/db/DBTest.java @@ -78,16 +78,18 @@ public class DBTest { user = db().selectUser(createdUs...
Make sure "slug" is set when specified during construction & generated automatically.
diff --git a/chill-java/src/main/java/com/twitter/chill/SerDeState.java b/chill-java/src/main/java/com/twitter/chill/SerDeState.java index <HASH>..<HASH> 100644 --- a/chill-java/src/main/java/com/twitter/chill/SerDeState.java +++ b/chill-java/src/main/java/com/twitter/chill/SerDeState.java @@ -50,8 +50,8 @@ public clas...
Changed numOfWrittenBytes to long to match Kryo
diff --git a/version.php b/version.php index <HASH>..<HASH> 100644 --- a/version.php +++ b/version.php @@ -29,9 +29,9 @@ defined('MOODLE_INTERNAL') || die(); -$version = 2020061500.00; // YYYYMMDD = weekly release date of this DEV branch. +$version = 2020061500.01; // YYYYMMDD ...
weekly on-sync release <I>dev
diff --git a/spec/unit/restclient_spec.rb b/spec/unit/restclient_spec.rb index <HASH>..<HASH> 100644 --- a/spec/unit/restclient_spec.rb +++ b/spec/unit/restclient_spec.rb @@ -71,9 +71,9 @@ describe RestClient do end describe 'version' do - it 'has a version ~> 1.7.0.alpha' do + it 'has a version ~> 2.0.0....
Fix version spec tests for <I>
diff --git a/tests/child_processes_test.py b/tests/child_processes_test.py index <HASH>..<HASH> 100644 --- a/tests/child_processes_test.py +++ b/tests/child_processes_test.py @@ -80,7 +80,7 @@ def spawn_process_which_dies_with_children(): # we need to sleep before the shell exits, or dumb-init might send ...
Fix test on slow machines, increasing the sleep time The original sleep time is too short, the tests failed on architectures like mips*, armhf. I think it's because the python interpreter can't start in <I>s. After increasing the sleep time, it passed on most architectures which Debian supports. The result can be fo...
diff --git a/lib/models/graph-object.js b/lib/models/graph-object.js index <HASH>..<HASH> 100644 --- a/lib/models/graph-object.js +++ b/lib/models/graph-object.js @@ -21,6 +21,7 @@ function GraphModelFactory (Model) { instanceId: { type: 'string', required: true, + ...
adding unique constraint to graph object instance id
diff --git a/lib/polygon/helpers.rb b/lib/polygon/helpers.rb index <HASH>..<HASH> 100644 --- a/lib/polygon/helpers.rb +++ b/lib/polygon/helpers.rb @@ -13,8 +13,12 @@ module Polygon settings.templates end + def database + settings.database + end + def lispy(&bl) - @lispy ||= Alf.lispy(...
Let database be known in App instance.
diff --git a/lib/moonshine/manifest/rails.rb b/lib/moonshine/manifest/rails.rb index <HASH>..<HASH> 100644 --- a/lib/moonshine/manifest/rails.rb +++ b/lib/moonshine/manifest/rails.rb @@ -8,17 +8,18 @@ class Moonshine::Manifest::Rails < Moonshine::Manifest group "rails", :ensure => "present", - ...
create rails user and change password in two steps
diff --git a/test/test_datasets_utils.py b/test/test_datasets_utils.py index <HASH>..<HASH> 100644 --- a/test/test_datasets_utils.py +++ b/test/test_datasets_utils.py @@ -7,6 +7,7 @@ import zipfile import tarfile import gzip import warnings +from torch._six import PY2 from torch._utils_internal import get_file_path...
Disable download tests for Python2 (#<I>)
diff --git a/src/Executor/Result.php b/src/Executor/Result.php index <HASH>..<HASH> 100644 --- a/src/Executor/Result.php +++ b/src/Executor/Result.php @@ -17,11 +17,13 @@ class Result { // Datetime weirdness. Apparently this is caused by theming issues on the // remote theme. Why it is being called when execu...
Fix PHP warning, when output was not an array.
diff --git a/data/account.pb.go b/data/account.pb.go index <HASH>..<HASH> 100644 --- a/data/account.pb.go +++ b/data/account.pb.go @@ -8,7 +8,7 @@ Package data is a generated protocol buffer package. It is generated from these files: account.proto karma.proto - user_agent.proto + useragent.proto It has these to...
Updates protobuffer autogen annotation. I really hate that these have to be in vcs at all.
diff --git a/tentacoli.js b/tentacoli.js index <HASH>..<HASH> 100644 --- a/tentacoli.js +++ b/tentacoli.js @@ -106,6 +106,12 @@ function Tentacoli (opts) { this._main.on('error', this.emit.bind(this, 'error')) this._parser.on('error', this.emit.bind(this, 'error')) + this.on('finish', function () { + Object...
Calls callbacks with errors if the connection closes.
diff --git a/travis/tests/test_encrypt.py b/travis/tests/test_encrypt.py index <HASH>..<HASH> 100644 --- a/travis/tests/test_encrypt.py +++ b/travis/tests/test_encrypt.py @@ -24,7 +24,7 @@ def test_encrypt_key(repository): public_key = retrieve_public_key(repository) password = 'SUPER_SECURE_PASSWORD' en...
Changed test of bytes to str
diff --git a/zk_coordinator.go b/zk_coordinator.go index <HASH>..<HASH> 100644 --- a/zk_coordinator.go +++ b/zk_coordinator.go @@ -673,6 +673,8 @@ func (this *ZookeeperCoordinator) waitForMembersToJoin(barrierPath string, expec } // Haven't seen all expected consumers on this barrier path. Watch for changes to...
Added case for stopChan on inner select to break out.
diff --git a/anytree/resolver.py b/anytree/resolver.py index <HASH>..<HASH> 100644 --- a/anytree/resolver.py +++ b/anytree/resolver.py @@ -219,7 +219,7 @@ class Resolver(object): re_pat += "." else: re_pat += re.escape(char) - return re_pat + r'\Z(?ms)' + ret...
Update resolver.py Avoid to throw /my/path/resolver.py:<I>: DeprecationWarning: Flags not at the start of the expression 'expr\\Z(?ms)' in python <I>
diff --git a/test/spec/index.js b/test/spec/index.js index <HASH>..<HASH> 100644 --- a/test/spec/index.js +++ b/test/spec/index.js @@ -2,6 +2,8 @@ import { expect } from "chai"; import pakit from "../../src/pakit"; describe("pakit test suite", function() { + this.timeout(10000); + describe("when bundling a modu...
bumped test timeout to <I> seconds
diff --git a/lib/with_advisory_lock/concern.rb b/lib/with_advisory_lock/concern.rb index <HASH>..<HASH> 100644 --- a/lib/with_advisory_lock/concern.rb +++ b/lib/with_advisory_lock/concern.rb @@ -16,6 +16,10 @@ module WithAdvisoryLock self.class.with_advisory_lock(lock_name, timeout_seconds, &block) end + ...
add advisory_lock_exists? to ActiveRecord instances
diff --git a/src/hamster/widgets/activityentry.py b/src/hamster/widgets/activityentry.py index <HASH>..<HASH> 100644 --- a/src/hamster/widgets/activityentry.py +++ b/src/hamster/widgets/activityentry.py @@ -531,7 +531,6 @@ class ActivityEntry(): for category in runtime.storage.get_categories(): ca...
remove @category lines They were more disturbing than helpful. There is already a specific category entry.
diff --git a/test/scraped_test.rb b/test/scraped_test.rb index <HASH>..<HASH> 100644 --- a/test/scraped_test.rb +++ b/test/scraped_test.rb @@ -36,6 +36,11 @@ describe Scraped do decorator FindReplaceDecorator, find: 'Hello', replace: 'Hi!' end + class PageWithMultipleDecorators < PageNoDecorators + ...
Add a test for a page with multiple decorators
diff --git a/addon/fold/foldgutter.js b/addon/fold/foldgutter.js index <HASH>..<HASH> 100644 --- a/addon/fold/foldgutter.js +++ b/addon/fold/foldgutter.js @@ -52,7 +52,7 @@ function isFolded(cm, line) { var marks = cm.findMarksAt(Pos(line)); for (var i = 0; i < marks.length; ++i) - if (marks[i].__isFo...
[foldgutter addon] Make sure unfolding markers work, even when fold range is broken Closes #<I>
diff --git a/sdl/error.go b/sdl/error.go index <HASH>..<HASH> 100644 --- a/sdl/error.go +++ b/sdl/error.go @@ -23,7 +23,11 @@ func (ec ErrorCode) c() C.SDL_errorcode { // GetError (https://wiki.libsdl.org/SDL_GetError) func GetError() error { if err := C.SDL_GetError(); err != nil { - return errors.New(C.GoString(...
SDL_GetError returns an empty string, not nil, when there are no errors. (#<I>)
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -69,7 +69,6 @@ process.on('exit', function () { if (cur) { cur.error(new Error('bench was never ended')) console.log('\n# fail\n') - process.exit(1) return } console.log('\n# total ~' + prettyHrtime(...
do not process exit - messes up logs
diff --git a/flatfs.go b/flatfs.go index <HASH>..<HASH> 100644 --- a/flatfs.go +++ b/flatfs.go @@ -40,6 +40,8 @@ var _ datastore.Datastore = (*Datastore)(nil) type ShardFunc func(string) string +var IPFS_DEF_SHARD = "v1/next-to-last/2" + func New(path string, fun0 string, sync bool) (*Datastore, error) { fun0 =...
Add constant for default shard func used by IPFS.
diff --git a/models/classes/runner/time/TimerAdjustmentMapInterface.php b/models/classes/runner/time/TimerAdjustmentMapInterface.php index <HASH>..<HASH> 100644 --- a/models/classes/runner/time/TimerAdjustmentMapInterface.php +++ b/models/classes/runner/time/TimerAdjustmentMapInterface.php @@ -50,7 +50,7 @@ interface T...
Updated method phpdoc description.
diff --git a/lib/accounting/booking.rb b/lib/accounting/booking.rb index <HASH>..<HASH> 100644 --- a/lib/accounting/booking.rb +++ b/lib/accounting/booking.rb @@ -1,6 +1,6 @@ module Accounting class Booking < ActiveRecord::Base - validates_presence_of :debit_account, :credit_account, :amount, :value_date + va...
Validate precense of title for bookings.
diff --git a/tests/Generators/FileSystemTreeGeneratorTest.php b/tests/Generators/FileSystemTreeGeneratorTest.php index <HASH>..<HASH> 100644 --- a/tests/Generators/FileSystemTreeGeneratorTest.php +++ b/tests/Generators/FileSystemTreeGeneratorTest.php @@ -14,7 +14,6 @@ class FileSystemTreeGeneratorTest extends \PHPUnit_...
Updated test to reflect Filesystem contract
diff --git a/kubernetes/src/main/java/io/kubernetes/client/custom/IntOrString.java b/kubernetes/src/main/java/io/kubernetes/client/custom/IntOrString.java index <HASH>..<HASH> 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/custom/IntOrString.java +++ b/kubernetes/src/main/java/io/kubernetes/client/custom/In...
adding toString method to IntOrString
diff --git a/lib/Models/GeoJsonCatalogItem.js b/lib/Models/GeoJsonCatalogItem.js index <HASH>..<HASH> 100644 --- a/lib/Models/GeoJsonCatalogItem.js +++ b/lib/Models/GeoJsonCatalogItem.js @@ -805,6 +805,7 @@ function filterArray(pts, func) { function updateOpacity(item) { const entities = item.dataSource.entities....
suspend and resume events on setting geojson opacity
diff --git a/spec/seahorse/client/plugin_spec.rb b/spec/seahorse/client/plugin_spec.rb index <HASH>..<HASH> 100644 --- a/spec/seahorse/client/plugin_spec.rb +++ b/spec/seahorse/client/plugin_spec.rb @@ -18,7 +18,9 @@ module Seahorse describe Plugin do let(:handlers) { HandlerList.new } - let(:config)...
Updated a few specs helpers to use let.
diff --git a/test/unit/index.js b/test/unit/index.js index <HASH>..<HASH> 100644 --- a/test/unit/index.js +++ b/test/unit/index.js @@ -1,3 +1,17 @@ +// mock passive event listener support and upsupport +(() => { + const originAddListener = window.addEventListener; + let flag; + + window.addEventListener = (...args) ...
Improve unit tests for passive event support logic
diff --git a/spec/unit/resource/api1600/c7000/volume_attachment_spec.rb b/spec/unit/resource/api1600/c7000/volume_attachment_spec.rb index <HASH>..<HASH> 100644 --- a/spec/unit/resource/api1600/c7000/volume_attachment_spec.rb +++ b/spec/unit/resource/api1600/c7000/volume_attachment_spec.rb @@ -1,3 +1,14 @@ +# (C) Copyr...
Update volume_attachment_spec.rb
diff --git a/js/jquery.mapael.js b/js/jquery.mapael.js index <HASH>..<HASH> 100644 --- a/js/jquery.mapael.js +++ b/js/jquery.mapael.js @@ -490,6 +490,16 @@ if (typeof opt.mapOptions === "object") { if (opt.replaceOptions === true) options = $.extend(true, {}, defaultOptions, opt.mapOptions...
Update event: reset legend state if areas, plots or legend is updated
diff --git a/formBinder.go b/formBinder.go index <HASH>..<HASH> 100644 --- a/formBinder.go +++ b/formBinder.go @@ -458,7 +458,15 @@ func (dec *Decoder) decode() error { case reflect.Struct: switch dec.curr.Interface().(type) { case time.Time: - t, err := time.Parse("2006-01-02", dec.values[0]) + d := dec.va...
Added ability to parse ISO <I> date format on formBind.
diff --git a/packages/desktop/src/main/cli.js b/packages/desktop/src/main/cli.js index <HASH>..<HASH> 100644 --- a/packages/desktop/src/main/cli.js +++ b/packages/desktop/src/main/cli.js @@ -1,5 +1,5 @@ -import { Observable } from "rxjs/Observable"; -import { merge, catchError, mergeMap } from "rxjs/operators"; +import...
Fix windows CLI (#<I>)
diff --git a/Views/backend/plentymarkets/view/log/grid.js b/Views/backend/plentymarkets/view/log/grid.js index <HASH>..<HASH> 100644 --- a/Views/backend/plentymarkets/view/log/grid.js +++ b/Views/backend/plentymarkets/view/log/grid.js @@ -87,7 +87,17 @@ Ext.define('Shopware.apps.Plentymarkets.view.log.Grid', { }, { ...
UPDATE Log (message overlay)
diff --git a/lib/Resque/Resque.php b/lib/Resque/Resque.php index <HASH>..<HASH> 100644 --- a/lib/Resque/Resque.php +++ b/lib/Resque/Resque.php @@ -136,7 +136,8 @@ abstract class Resque )); if ($trackStatus) { - Status::create($id); + $status = new Status($id, $this); + ...
Main resque class support for status tracking fixed
diff --git a/lib/abort_if.rb b/lib/abort_if.rb index <HASH>..<HASH> 100644 --- a/lib/abort_if.rb +++ b/lib/abort_if.rb @@ -51,10 +51,13 @@ module AbortIf # # @note The abort_if style methods don't interpolate arguments to # msg as the Assert module methods do + # + # @note When rescuing AbortIf::Exit, the ...
raise AbortIf::Exit with message for rescuing
diff --git a/src/Collection/CollectionTrait.php b/src/Collection/CollectionTrait.php index <HASH>..<HASH> 100644 --- a/src/Collection/CollectionTrait.php +++ b/src/Collection/CollectionTrait.php @@ -49,7 +49,7 @@ trait CollectionTrait * type of returned collection interface * * @param mixed $args,.. C...
Collection trait: provide a FQCN in docblock
diff --git a/src/core.js b/src/core.js index <HASH>..<HASH> 100644 --- a/src/core.js +++ b/src/core.js @@ -289,6 +289,7 @@ for( var j = index; j < elements.length; j++ ){ var jid = elements[j]._private.data.id; id2index[ jid ]--; + elements[j]._private.index--; ...
Issue with edge hit detection when removing/adding edges with mappers (ele index out of sync) #<I>
diff --git a/zinnia/__init__.py b/zinnia/__init__.py index <HASH>..<HASH> 100644 --- a/zinnia/__init__.py +++ b/zinnia/__init__.py @@ -1,5 +1,5 @@ """Zinnia""" -__version__ = '0.14.1' +__version__ = '0.15.dev' __license__ = 'BSD License' __author__ = 'Fantomas42'
Bumping to version <I>.dev
diff --git a/lib/congress/version.rb b/lib/congress/version.rb index <HASH>..<HASH> 100644 --- a/lib/congress/version.rb +++ b/lib/congress/version.rb @@ -1,3 +1,3 @@ module Congress - VERSION = "0.0.3" + VERSION = "0.0.4" end
Bump gem version to <I>
diff --git a/wrapper/wrapper.go b/wrapper/wrapper.go index <HASH>..<HASH> 100644 --- a/wrapper/wrapper.go +++ b/wrapper/wrapper.go @@ -229,6 +229,10 @@ OUTER: } close(pkgChan) wg.Wait() + select { + case err = <-errChan: + default: + } return err }
wrapper: try to notice the last error After executing all commands, make one last check on the error channel, to see whether the last command errored.