diff
stringlengths
65
26.7k
message
stringlengths
7
9.92k
diff --git a/leaflet.markercluster.layersupport-src.js b/leaflet.markercluster.layersupport-src.js index <HASH>..<HASH> 100644 --- a/leaflet.markercluster.layersupport-src.js +++ b/leaflet.markercluster.layersupport-src.js @@ -487,9 +487,7 @@ layer = this._layers[layer]; } - if ('off' in layer) { - laye...
Fix #6 due to missing event migration from Leaflet <I> to <I>
diff --git a/lib/DSL.js b/lib/DSL.js index <HASH>..<HASH> 100644 --- a/lib/DSL.js +++ b/lib/DSL.js @@ -41,7 +41,7 @@ class Parser { } cb(null, { globals: global_scope, - success: true + success: self.interpreter.success }); }); }); @@ -...
Report on success, don't clobber interpreter value.
diff --git a/dna.js b/dna.js index <HASH>..<HASH> 100755 --- a/dna.js +++ b/dna.js @@ -29,14 +29,16 @@ dna.util = { call: function(func, param) { //calls func (string name or actual function) passing in param // Example: dna.util.call('app.cart.buy', 7); ==> app.cart.buy(7); function contextCall(obj,...
Additional validation for func param in dna.util.call()
diff --git a/cake/tests/cases/console/console_output.test.php b/cake/tests/cases/console/console_output.test.php index <HASH>..<HASH> 100644 --- a/cake/tests/cases/console/console_output.test.php +++ b/cake/tests/cases/console/console_output.test.php @@ -134,6 +134,18 @@ class ConsoleOutputTest extends CakeTestCase { ...
Adding test to make sure tags that are unknown are not removed.
diff --git a/lib/jsonapi/request.rb b/lib/jsonapi/request.rb index <HASH>..<HASH> 100644 --- a/lib/jsonapi/request.rb +++ b/lib/jsonapi/request.rb @@ -281,7 +281,7 @@ module JSONAPI # Since we do not yet support polymorphic associations we will raise an error if the type does not match the ...
Removed errant type key re-formatting in parse_params
diff --git a/src/main/java/com/auth0/net/CustomRequest.java b/src/main/java/com/auth0/net/CustomRequest.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/auth0/net/CustomRequest.java +++ b/src/main/java/com/auth0/net/CustomRequest.java @@ -100,12 +100,11 @@ public class CustomRequest<T> extends BaseRequest<T> im...
Closing response body on RateLimitException
diff --git a/app/controllers/patient_event_types_controller.rb b/app/controllers/patient_event_types_controller.rb index <HASH>..<HASH> 100644 --- a/app/controllers/patient_event_types_controller.rb +++ b/app/controllers/patient_event_types_controller.rb @@ -31,13 +31,11 @@ class PatientEventTypesController < Applicati...
Remove SoftDelete from PatientEventType
diff --git a/cluster/calcium/lambda.go b/cluster/calcium/lambda.go index <HASH>..<HASH> 100644 --- a/cluster/calcium/lambda.go +++ b/cluster/calcium/lambda.go @@ -36,7 +36,7 @@ func (c *Calcium) RunAndWait(ctx context.Context, opts *types.DeployOptions, inC return nil, errors.WithStack(types.ErrRunAndWaitCountOneWit...
fix: make golint works (#<I>)
diff --git a/polyfills/Promise/prototype/finally/polyfill.js b/polyfills/Promise/prototype/finally/polyfill.js index <HASH>..<HASH> 100644 --- a/polyfills/Promise/prototype/finally/polyfill.js +++ b/polyfills/Promise/prototype/finally/polyfill.js @@ -52,7 +52,7 @@ // 1.2 If IsPromise(promise) is false, throw a TypeE...
use variable according to spec (#<I>)
diff --git a/src/mako/syringe/Container.php b/src/mako/syringe/Container.php index <HASH>..<HASH> 100644 --- a/src/mako/syringe/Container.php +++ b/src/mako/syringe/Container.php @@ -436,7 +436,7 @@ class Container * @access public * @param callable $callable Callable * @param array $parameters (...
Changed return type from mixed to object
diff --git a/src/Input.js b/src/Input.js index <HASH>..<HASH> 100644 --- a/src/Input.js +++ b/src/Input.js @@ -78,7 +78,9 @@ class Input extends Base { // check, but here we need to do it to preserve selection in Safari. const base = super.updates; const value = this.state.innerProperties.value; - if ...
Fix lint warnings.
diff --git a/crochet/_version.py b/crochet/_version.py index <HASH>..<HASH> 100644 --- a/crochet/_version.py +++ b/crochet/_version.py @@ -2,4 +2,4 @@ Store version in its own module so we can access it from both setup.py and __init__. """ -__version__ = "0.9.0" +__version__ = "1.0.0"
Change version to <I>.
diff --git a/shared/actions/login.js b/shared/actions/login.js index <HASH>..<HASH> 100644 --- a/shared/actions/login.js +++ b/shared/actions/login.js @@ -152,6 +152,11 @@ function* navBasedOnLoginAndInitialState(): Saga.SagaGenerator<any, any> { yield Saga.put(switchRouteDef(loginRouteTree)) yield Saga.put.r...
add check for race in login flow (#<I>)
diff --git a/lib/helpers/utils.js b/lib/helpers/utils.js index <HASH>..<HASH> 100644 --- a/lib/helpers/utils.js +++ b/lib/helpers/utils.js @@ -27,3 +27,9 @@ module.exports.pushIfNotExist = function (type, array, value) { return array; }; + +module.exports.timeoutPromise = (timer) => { + return new Promise((resol...
Add a timer on messages to not overflow CPU when connection is lost
diff --git a/Auth/OpenID/Discover.php b/Auth/OpenID/Discover.php index <HASH>..<HASH> 100644 --- a/Auth/OpenID/Discover.php +++ b/Auth/OpenID/Discover.php @@ -377,7 +377,8 @@ function Auth_OpenID_discoverURI($uri, &$fetcher) { $parsed = parse_url($uri); - if ($parsed && $parsed['scheme'] && $parsed['host']) ...
[project @ isset() to silence notices]
diff --git a/lib/ace/Document.js b/lib/ace/Document.js index <HASH>..<HASH> 100644 --- a/lib/ace/Document.js +++ b/lib/ace/Document.js @@ -25,7 +25,7 @@ var Document = function(text, mode) { if (mode) { this.setMode(mode); } - + if (lang.isArray(text)) { this.$insertLines(0, text); ...
Small fix in audo-indentation.
diff --git a/Event.php b/Event.php index <HASH>..<HASH> 100644 --- a/Event.php +++ b/Event.php @@ -154,7 +154,7 @@ class Event { return EVENT::ISSUE; } - elseif ($json['object_kind'] == 'merge_request' && $json['object_attributes']['state'] == 'merged') + elseif ($json['object_kind'] == 'merge_request'...
Fix a bug : all update of MRs after merging were considered as merge action
diff --git a/src/questionPanel.js b/src/questionPanel.js index <HASH>..<HASH> 100644 --- a/src/questionPanel.js +++ b/src/questionPanel.js @@ -1,5 +1,6 @@ -var React = require('react'); -var _ = require('lodash'); +var React = require('react'); +var _ = require('lodash'); +var KeyCodez = require('keycodez...
On enter key - Stop the form from submitting and run the handleMainButtonClick method - fixes #8
diff --git a/Neos.Flow/Classes/Command/CacheCommandController.php b/Neos.Flow/Classes/Command/CacheCommandController.php index <HASH>..<HASH> 100644 --- a/Neos.Flow/Classes/Command/CacheCommandController.php +++ b/Neos.Flow/Classes/Command/CacheCommandController.php @@ -450,7 +450,6 @@ class CacheCommandController exte...
[TASK] Remove newline to satisfy PSR-2
diff --git a/molgenis-data/src/main/java/org/molgenis/data/annotation/RepositoryAnnotator.java b/molgenis-data/src/main/java/org/molgenis/data/annotation/RepositoryAnnotator.java index <HASH>..<HASH> 100644 --- a/molgenis-data/src/main/java/org/molgenis/data/annotation/RepositoryAnnotator.java +++ b/molgenis-data/src/m...
Removed annotationDataExists from the interface
diff --git a/numina/array/wavecal/arccalibration.py b/numina/array/wavecal/arccalibration.py index <HASH>..<HASH> 100644 --- a/numina/array/wavecal/arccalibration.py +++ b/numina/array/wavecal/arccalibration.py @@ -599,7 +599,7 @@ def arccalibration_direct(wv_master, # each triplet from the master list provi...
Correcting missing <I> in loop
diff --git a/src/autotyper.js b/src/autotyper.js index <HASH>..<HASH> 100644 --- a/src/autotyper.js +++ b/src/autotyper.js @@ -174,7 +174,7 @@ const autotyper = { this.letterTotal = this.settings.text.length; this.letterCount = 0; - this.emit(LOOP_EVENT); + this.emit(LOOP_EVENT, this.loopCount); ...
feat: pass `loopCount` on emitting `LOOP_EVENT`
diff --git a/lib/AmazonSNS.php b/lib/AmazonSNS.php index <HASH>..<HASH> 100644 --- a/lib/AmazonSNS.php +++ b/lib/AmazonSNS.php @@ -246,7 +246,13 @@ class AmazonSNS { // Get subscriptions $subs = $resultXml->ListSubscriptionsResult->Subscriptions->member; - return $this->_processXmlToArray($subs); + $return = ...
Return subscriptions as 'members' and return 'nextToken' if there is one in subscription list methods - #<I>
diff --git a/lib/modem.js b/lib/modem.js index <HASH>..<HASH> 100644 --- a/lib/modem.js +++ b/lib/modem.js @@ -147,6 +147,8 @@ Modem.prototype.dial = function(options, callback) { optionsf.headers['Content-Length'] = Buffer.byteLength(data); } else if (Buffer.isBuffer(data) === true) { optionsf.headers['Co...
Making modem work better when using a stream When using a stream with docker modem there is no header 'Content-Length' since there is no known length to it. The right replacement for that is using the header 'Transfer-Encoding: chunked'. This can cause problem with docker daemon as an example: when building an image ...
diff --git a/pkg/kubelet/kubelet_pods.go b/pkg/kubelet/kubelet_pods.go index <HASH>..<HASH> 100644 --- a/pkg/kubelet/kubelet_pods.go +++ b/pkg/kubelet/kubelet_pods.go @@ -1357,7 +1357,7 @@ func (kl *Kubelet) GetAttach(podFullName string, podUID types.UID, containerName // since whether the process is running in a TT...
Kubelet: only check podUID when it is actually set
diff --git a/rootpy/plotting/canvas.py b/rootpy/plotting/canvas.py index <HASH>..<HASH> 100644 --- a/rootpy/plotting/canvas.py +++ b/rootpy/plotting/canvas.py @@ -44,7 +44,8 @@ class Canvas(_PadBase, QROOT.TCanvas): def __init__(self, width=None, height=None, x=None, y=None, - ...
don't include canvas window manager decorations in canvas size by default
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -41,7 +41,7 @@ requirements = [ 'invenio-documents>=0.1.0.post2', 'invenio-ext>=0.2.1', 'invenio-records>=0.2.1', - 'invenio-utils>=0.1.0', + 'invenio-utils>=0.1.1', ] test_requirements = [
installation: inveni-utils>=<I>
diff --git a/lib/cancan/matchers.rb b/lib/cancan/matchers.rb index <HASH>..<HASH> 100644 --- a/lib/cancan/matchers.rb +++ b/lib/cancan/matchers.rb @@ -4,8 +4,7 @@ if rspec_module == 'RSpec' require 'rspec/core' require 'rspec/expectations' else - ActiveSupport::Deprecation - .warn('RSpec < 3 will not be supp...
Fix a errant newline during conflict merge.
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -15,13 +15,13 @@ function writefile(pair, type) { module.exports = postcss.plugin('postcss-classname', function (opts) { opts = opts || {}; var dist = opts.dist || ".", - outputName = opts.outputName || "style", - ...
Fixing changes to spacing done by my editor
diff --git a/src/BotApi.php b/src/BotApi.php index <HASH>..<HASH> 100644 --- a/src/BotApi.php +++ b/src/BotApi.php @@ -783,6 +783,26 @@ class BotApi 'user_id' => $userId, ]); } + + /** + * Use this method to unban a previously kicked user in a supergroup. + * The user will not retu...
added unbanChatMember method
diff --git a/src/sap.m/src/sap/m/Avatar.js b/src/sap.m/src/sap/m/Avatar.js index <HASH>..<HASH> 100644 --- a/src/sap.m/src/sap/m/Avatar.js +++ b/src/sap.m/src/sap/m/Avatar.js @@ -131,9 +131,6 @@ sap.ui.define([ fallbackIcon: {type: "string", group: "Data", defaultValue: null}, /** * Determines the backg...
[INTERNAL] sap.m.Avatar: Control jsdoc improved The text in jsdoc was referring to another system's ability to perform a task which is not actually possible. Change-Id: I8aff3ee2af<I>aec<I>c6e9d5aa<I>f0bb0e4fc<I>
diff --git a/run.go b/run.go index <HASH>..<HASH> 100644 --- a/run.go +++ b/run.go @@ -130,23 +130,9 @@ func (i *imageDumperGame) Layout(outsideWidth, outsideHeight int) (screenWidth, // RunGame starts the main loop and runs the game. // game's Update function is called every tick to update the game logic. -// gam...
ebiten: Fix old and wrong comments
diff --git a/rna-seq-pipeline/rna-seq_pipeline_multi_sample.py b/rna-seq-pipeline/rna-seq_pipeline_multi_sample.py index <HASH>..<HASH> 100644 --- a/rna-seq-pipeline/rna-seq_pipeline_multi_sample.py +++ b/rna-seq-pipeline/rna-seq_pipeline_multi_sample.py @@ -125,8 +125,7 @@ def docker_call(tool, tool_parameters, work_d...
Unless the user script is being run on a CGCloud-launched cluster docker calls must use Sudo.
diff --git a/lib/you_shall_not_pass/version.rb b/lib/you_shall_not_pass/version.rb index <HASH>..<HASH> 100644 --- a/lib/you_shall_not_pass/version.rb +++ b/lib/you_shall_not_pass/version.rb @@ -1,3 +1,3 @@ module YouShallNotPass - VERSION = "0.0.3" + VERSION = "0.1.0" end
Releasing version <I>
diff --git a/lib/helpers.js b/lib/helpers.js index <HASH>..<HASH> 100644 --- a/lib/helpers.js +++ b/lib/helpers.js @@ -139,11 +139,15 @@ Helpers.ParseDIDL = function (didl, host, port, trackUri) { } Helpers.ParseDIDLItem = function (item, host, port, trackUri) { + let albumArtURI = item['upnp:albumArtURI'] || null...
Handle when albumArtURI is an Array If the albumArtURI of an item is an Array, the first item is picked
diff --git a/glymur/lib/config.py b/glymur/lib/config.py index <HASH>..<HASH> 100644 --- a/glymur/lib/config.py +++ b/glymur/lib/config.py @@ -145,9 +145,8 @@ def get_configdir(): if 'HOME' in os.environ and os.name != 'nt': # HOME is set by WinPython to something unusual, so we don't - # want th...
Windows if-statement is now a catch-all for config file location. Closes #<I>, again.
diff --git a/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/process/computer/GraphComputerTest.java b/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/process/computer/GraphComputerTest.java index <HASH>..<HASH> 100644 --- a/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/process/computer/GraphC...
had a commented out assert() when figuring out a bug in Spark. Uncommented. All good.
diff --git a/cr8/run_crate.py b/cr8/run_crate.py index <HASH>..<HASH> 100644 --- a/cr8/run_crate.py +++ b/cr8/run_crate.py @@ -280,7 +280,7 @@ class CrateNode(contextlib.ExitStack): try: wait_until( lambda: show_spinner() and _ensure_running(proc) and self.http_host, - ...
Increase run-crate start-up timeout to <I> seconds Should be enough to start up CrateDB on a raspberry
diff --git a/libkbfs/reporter_kbpki.go b/libkbfs/reporter_kbpki.go index <HASH>..<HASH> 100644 --- a/libkbfs/reporter_kbpki.go +++ b/libkbfs/reporter_kbpki.go @@ -43,6 +43,7 @@ var noErrorNames = map[string]bool{ "Gemfile": true, // rvm "devfs": true, // lsof? KBFS-823 "_mtn": true, // ...
reporter_kbpki: ignore _MTN (looked up by emacs on Linux) (#<I>)
diff --git a/upload/install/model/install/install.php b/upload/install/model/install/install.php index <HASH>..<HASH> 100644 --- a/upload/install/model/install/install.php +++ b/upload/install/model/install/install.php @@ -46,7 +46,7 @@ class Install extends \Opencart\System\Engine\Model { } $sql = rtrim($sql...
Update install.php hot fix bug Index column size too large. The maximum column size is <I> bytes (maybe need another better way) <URL>
diff --git a/yt_array.py b/yt_array.py index <HASH>..<HASH> 100644 --- a/yt_array.py +++ b/yt_array.py @@ -595,9 +595,13 @@ class YTArray(np.ndarray): units, and returns it. Optionally, an equivalence can be specified to convert to an - equivalent quantity which is not in the same dimensions...
Make docstrings clearer and more explicit
diff --git a/Console/Command/ResqueShell.php b/Console/Command/ResqueShell.php index <HASH>..<HASH> 100755 --- a/Console/Command/ResqueShell.php +++ b/Console/Command/ResqueShell.php @@ -137,7 +137,12 @@ class ResqueShell extends Shell { $path = App::pluginPath('Resque') . 'Vendor' . DS . 'php-resque' . DS; $lo...
Allow overriding the ResqueBootstrap.php file from the app
diff --git a/lib/oauth.js b/lib/oauth.js index <HASH>..<HASH> 100644 --- a/lib/oauth.js +++ b/lib/oauth.js @@ -159,17 +159,17 @@ module.exports = OAuth = (function() { * Public: get authenticate URL * ---------------------------- * - * params - Object with: - * + token: [Required] String ...
lib/oauth#authenticate just gets `token` as a param
diff --git a/Generator/PluginType.php b/Generator/PluginType.php index <HASH>..<HASH> 100644 --- a/Generator/PluginType.php +++ b/Generator/PluginType.php @@ -88,6 +88,16 @@ class PluginType extends BaseGenerator { ]); }, ), + // TODO: Argh, do something about this mess of relative / qua...
Fixed plugin type base class not using the computed property for the class name.
diff --git a/app/src/components/mainWindow/mainWindow.js b/app/src/components/mainWindow/mainWindow.js index <HASH>..<HASH> 100644 --- a/app/src/components/mainWindow/mainWindow.js +++ b/app/src/components/mainWindow/mainWindow.js @@ -199,7 +199,7 @@ function createMainWindow(inpOptions, onAppQuit, setDockBadge) { ...
Fix Gmail complaining window creation was prevented by a popup blocker (PR #<I>) By changing incorrect window `guest` property to `newGuest`. See <URL>` will prevent Electron from > automatically creating a new BrowserWindow. If you call > `event.preventDefault()` and manually create a new BrowserWindow > then yo...
diff --git a/src/main/java/org/primefaces/component/datatable/DataTableRenderer.java b/src/main/java/org/primefaces/component/datatable/DataTableRenderer.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/primefaces/component/datatable/DataTableRenderer.java +++ b/src/main/java/org/primefaces/component/datatable/...
fixed NPE from #<I>
diff --git a/src/main/java/org/sikuli/slides/sikuli/RegionSelector.java b/src/main/java/org/sikuli/slides/sikuli/RegionSelector.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/sikuli/slides/sikuli/RegionSelector.java +++ b/src/main/java/org/sikuli/slides/sikuli/RegionSelector.java @@ -186,7 +186,7 @@ public cl...
use screen id constant to support external monitor mode
diff --git a/src/Utils.php b/src/Utils.php index <HASH>..<HASH> 100644 --- a/src/Utils.php +++ b/src/Utils.php @@ -48,11 +48,6 @@ abstract class Utils $dom = self::loadXML($xml); $xpath = new DOMXPath($dom); $nodes = $xpath->query(str_repeat('//' . $tagName, 1 + $nestingLevel)); - if (!$nodes) - { - retu...
Utils: removed alternative code path from removeTag()
diff --git a/lib/travis/services/find_build.rb b/lib/travis/services/find_build.rb index <HASH>..<HASH> 100644 --- a/lib/travis/services/find_build.rb +++ b/lib/travis/services/find_build.rb @@ -47,9 +47,6 @@ module Travis ActiveRecord::Associations::Preloader.new(build, [:matrix, :commit, :request]).run ...
don't blank out the job config in find_build
diff --git a/src/system.config.js b/src/system.config.js index <HASH>..<HASH> 100644 --- a/src/system.config.js +++ b/src/system.config.js @@ -38,7 +38,7 @@ var systemConfig = { * http://localhost:9010/ when you're running tests. The window/tab can be left * open and the tests will automatically occur t...
fix(test): run tests with no browser started automatically Implements Solution 2: Remove PhantomJS from system.config.js Closes #<I>
diff --git a/src/MadeYourDay/Contao/CustomElements.php b/src/MadeYourDay/Contao/CustomElements.php index <HASH>..<HASH> 100644 --- a/src/MadeYourDay/Contao/CustomElements.php +++ b/src/MadeYourDay/Contao/CustomElements.php @@ -929,6 +929,16 @@ class CustomElements } } + // The getInstance calls are neccessary...
Fixed "Invalid connection resource" exception
diff --git a/db/seeds.rb b/db/seeds.rb index <HASH>..<HASH> 100644 --- a/db/seeds.rb +++ b/db/seeds.rb @@ -70,6 +70,7 @@ Role.allow 'admin_role', [:read, :delete, :sync], "sync_management" Role.allow 'admin_role', [:read], "packages" Role.allow 'admin_role', [:read], "errata" Role.allow 'admin_role', [:create, :dele...
adding missing operations resource_type to seeds
diff --git a/kafka/kafka.go b/kafka/kafka.go index <HASH>..<HASH> 100644 --- a/kafka/kafka.go +++ b/kafka/kafka.go @@ -1,5 +1,3 @@ -package kafka - /** * Copyright 2016 Confluent Inc. * @@ -251,6 +249,7 @@ package kafka // possible complications with blocking Poll() calls. // // Note: The Confluent Kafka Go cli...
kafka.go: revert partial f9fce7ae to reinstate package docs The "package .." stanza needs to follow the package docs comment, but a previous commit moved the stanza to the top of the file which caused the package docs to be ignored by 'godoc'.
diff --git a/probe.js b/probe.js index <HASH>..<HASH> 100644 --- a/probe.js +++ b/probe.js @@ -86,7 +86,7 @@ Probe.prototype.error = function errorTrace(event, order, value) { Probe.prototype.make = function make(name) { assert(name, 'new probes need a name'); - + var probe = Probe.New(); probe.module =...
rename / to ROOT module
diff --git a/lib/jsi/base.rb b/lib/jsi/base.rb index <HASH>..<HASH> 100644 --- a/lib/jsi/base.rb +++ b/lib/jsi/base.rb @@ -443,11 +443,8 @@ module JSI def jsi_modified_copy(&block) if @jsi_ptr.root? modified_document = @jsi_ptr.modified_document_copy(@jsi_document, &block) - self.class.new(B...
Base#jsi_modified_copy reinstantiates the root with SchemaSet#new_jsi
diff --git a/script/enable_i2c.js b/script/enable_i2c.js index <HASH>..<HASH> 100755 --- a/script/enable_i2c.js +++ b/script/enable_i2c.js @@ -27,7 +27,16 @@ var fs = require('fs'); var iniBuilder = require('ini-builder'); console.log('Checking if I2C is enabled at boot time'); -var config = iniBuilder.parse(fs.rea...
Run enable_i2c.js where /boot/config.txt does not exist
diff --git a/salt/client/ssh/__init__.py b/salt/client/ssh/__init__.py index <HASH>..<HASH> 100644 --- a/salt/client/ssh/__init__.py +++ b/salt/client/ssh/__init__.py @@ -409,6 +409,10 @@ class SSH(object): running.pop(host) if len(rets) >= len(self.targets): break + ...
Fix for high cpu usage by salt-ssh
diff --git a/lib/opal/parser/lexer.rb b/lib/opal/parser/lexer.rb index <HASH>..<HASH> 100644 --- a/lib/opal/parser/lexer.rb +++ b/lib/opal/parser/lexer.rb @@ -421,13 +421,13 @@ module Opal end def heredoc_identifier - if @scanner.scan(/(-?)['"]?(\w+)['"]?/) + if scan(/(-?)['"]?(\w+)['"]?/) ...
Always use #scan() and never @scanner directly [lexer]
diff --git a/src/HtmlPage.php b/src/HtmlPage.php index <HASH>..<HASH> 100644 --- a/src/HtmlPage.php +++ b/src/HtmlPage.php @@ -217,7 +217,7 @@ class HtmlPage implements Linkable, ContentElementInterface, StatusCodeContainer */ public function getLinks() { - return array_values($this->getStyleLink...
More stable way of merging the 2 kinds of links.
diff --git a/src/playbacks/html5_audio/html5_audio.js b/src/playbacks/html5_audio/html5_audio.js index <HASH>..<HASH> 100644 --- a/src/playbacks/html5_audio/html5_audio.js +++ b/src/playbacks/html5_audio/html5_audio.js @@ -77,7 +77,9 @@ class HTML5Audio extends Playback { } play() { - this.el.src = this.opti...
html5 audio: fix seek back on play (closes #<I>)
diff --git a/lib/ansiblelint/version.py b/lib/ansiblelint/version.py index <HASH>..<HASH> 100644 --- a/lib/ansiblelint/version.py +++ b/lib/ansiblelint/version.py @@ -1 +1 @@ -__version__ = '3.4.0' +__version__ = '3.4.1'
Update version to <I> Mistagged <I> on an out-of-sync repo
diff --git a/gandi/cli/commands/vm.py b/gandi/cli/commands/vm.py index <HASH>..<HASH> 100644 --- a/gandi/cli/commands/vm.py +++ b/gandi/cli/commands/vm.py @@ -232,7 +232,7 @@ def create(gandi, datacenter, memory, cores, ip_version, bandwidth, login, pwd = click.prompt('password', hide_input=True, ...
Don't show console password warning when creating a vm if password is provided
diff --git a/azure-spring-boot/src/main/java/com/microsoft/azure/spring/autoconfigure/aad/AADAuthenticationFilterAutoConfiguration.java b/azure-spring-boot/src/main/java/com/microsoft/azure/spring/autoconfigure/aad/AADAuthenticationFilterAutoConfiguration.java index <HASH>..<HASH> 100644 --- a/azure-spring-boot/src/mai...
removes unused import (#<I>)
diff --git a/shared/teams/team/settings-tab/index.js b/shared/teams/team/settings-tab/index.js index <HASH>..<HASH> 100644 --- a/shared/teams/team/settings-tab/index.js +++ b/shared/teams/team/settings-tab/index.js @@ -76,7 +76,9 @@ const SetMemberShowcase = (props: SettingProps) => ( <Text type="BodySmall"> ...
prompt implicit admins who have not joined yet (#<I>)
diff --git a/Classes/Command/DocumentationCommandController.php b/Classes/Command/DocumentationCommandController.php index <HASH>..<HASH> 100644 --- a/Classes/Command/DocumentationCommandController.php +++ b/Classes/Command/DocumentationCommandController.php @@ -62,7 +62,7 @@ class DocumentationCommandController extend...
[BUGFIX] Direct echo of XSD to avoid console formatting
diff --git a/lib/jsduck/options.rb b/lib/jsduck/options.rb index <HASH>..<HASH> 100644 --- a/lib/jsduck/options.rb +++ b/lib/jsduck/options.rb @@ -137,6 +137,7 @@ module JsDuck # enable all warnings except :link_auto Logger.set_warning(:all, true) Logger.set_warning(:link_auto, false) + Logger...
Disable the param_count warning by default.
diff --git a/lib/index.js b/lib/index.js index <HASH>..<HASH> 100644 --- a/lib/index.js +++ b/lib/index.js @@ -48,6 +48,7 @@ options = options || {}; var makeApiCall = require('./internal/make-api-call').inject(options); + var deprecate = require('util').deprecate; var makeApiMethod = function(apiConfig) ...
Mark places radar search as deprecated.
diff --git a/tests/compiler_test.js b/tests/compiler_test.js index <HASH>..<HASH> 100644 --- a/tests/compiler_test.js +++ b/tests/compiler_test.js @@ -131,4 +131,21 @@ exports.test_lda_indy = function(test){ var code = compiler.semantic(ast); test.deepEqual(code, [0xb1, 0x20]); test.done(); -}; \ No newl...
added a test_invalid_token on compiler_test
diff --git a/pymatgen/apps/borg/tests/test_hive.py b/pymatgen/apps/borg/tests/test_hive.py index <HASH>..<HASH> 100644 --- a/pymatgen/apps/borg/tests/test_hive.py +++ b/pymatgen/apps/borg/tests/test_hive.py @@ -52,7 +52,7 @@ class VaspToComputedEntryDroneTest(unittest.TestCase): self.assertAlmostEqual(entr...
Remove hisotry test. If people do not want to implement tests properly, the BDFL will unilaterally remove these changes.
diff --git a/library/src/main/java/com/mikepenz/materialdrawer/adapter/BaseDrawerAdapter.java b/library/src/main/java/com/mikepenz/materialdrawer/adapter/BaseDrawerAdapter.java index <HASH>..<HASH> 100644 --- a/library/src/main/java/com/mikepenz/materialdrawer/adapter/BaseDrawerAdapter.java +++ b/library/src/main/java/...
* fix selection not removed if items were removed
diff --git a/gcs/gcstesting/bucket_tests.go b/gcs/gcstesting/bucket_tests.go index <HASH>..<HASH> 100644 --- a/gcs/gcstesting/bucket_tests.go +++ b/gcs/gcstesting/bucket_tests.go @@ -76,8 +76,8 @@ type bucketTest struct { var _ bucketTestSetUpInterface = &bucketTest{} func (t *bucketTest) setUpBucketTest(deps Bucke...
Oops, export bucket and clock fields.
diff --git a/src/share/classes/com/sun/tools/javac/parser/JavadocTokenizer.java b/src/share/classes/com/sun/tools/javac/parser/JavadocTokenizer.java index <HASH>..<HASH> 100644 --- a/src/share/classes/com/sun/tools/javac/parser/JavadocTokenizer.java +++ b/src/share/classes/com/sun/tools/javac/parser/JavadocTokenizer.ja...
<I>: javadoc OutOfMemory error results in several jdk8 tl nightly failures Reviewed-by: ksrini
diff --git a/spec/js_serializer_spec.rb b/spec/js_serializer_spec.rb index <HASH>..<HASH> 100644 --- a/spec/js_serializer_spec.rb +++ b/spec/js_serializer_spec.rb @@ -50,10 +50,6 @@ describe JsDuck::Js::Serializer do test("var foo, bar = 5;") end - it "variable declaration with let" do - test("let...
Eliminate test for let expression. That's not supported by RKelly, and really not needed in practice.
diff --git a/pymbar/__init__.py b/pymbar/__init__.py index <HASH>..<HASH> 100644 --- a/pymbar/__init__.py +++ b/pymbar/__init__.py @@ -31,10 +31,19 @@ __license__ = "LGPL" __maintainer__ = "Michael R. Shirts and John D. Chodera" __email__ = "michael.shirts@virginia.edu,choderaj@mskcc.org" -from pymbar import timese...
Attempted workaround for version travis conda issue.
diff --git a/apns2/client.py b/apns2/client.py index <HASH>..<HASH> 100644 --- a/apns2/client.py +++ b/apns2/client.py @@ -22,7 +22,7 @@ class APNsClient(object): self.__connection = HTTP20Connection(server, port, ssl_context=ssl_context) def send_notification(self, token_hex, notification, priority=Not...
Update client.py according to PEP8
diff --git a/eth/backend.go b/eth/backend.go index <HASH>..<HASH> 100644 --- a/eth/backend.go +++ b/eth/backend.go @@ -449,14 +449,10 @@ func (s *Ethereum) Start() error { ClientString: s.net.Name, ProtocolVersion: ProtocolVersion, }) - - if s.net.MaxPeers > 0 { - err := s.net.Start() - if err != nil { - ...
eth, p2p: start the p2p server even if maxpeers == 0
diff --git a/tohu/generators_NEW.py b/tohu/generators_NEW.py index <HASH>..<HASH> 100644 --- a/tohu/generators_NEW.py +++ b/tohu/generators_NEW.py @@ -175,8 +175,13 @@ class SelectOne(TohuUltraBaseGenerator): return cur_values[idx] def reset(self, seed): + logger.debug(f"Ignoring explicit reset()...
Make SelectOne a proper derived generator
diff --git a/num2words/lang_ES_CO.py b/num2words/lang_ES_CO.py index <HASH>..<HASH> 100644 --- a/num2words/lang_ES_CO.py +++ b/num2words/lang_ES_CO.py @@ -20,7 +20,7 @@ from __future__ import unicode_literals, print_function from .lang_EU import Num2Word_EU -class Num2Word_ES(Num2Word_EU): +class Num2Word_ES_CO(Nu...
[IMP]Adds new files for ES_CO and ES_VE.
diff --git a/core/src/main/java/hudson/model/Run.java b/core/src/main/java/hudson/model/Run.java index <HASH>..<HASH> 100644 --- a/core/src/main/java/hudson/model/Run.java +++ b/core/src/main/java/hudson/model/Run.java @@ -1523,7 +1523,7 @@ public abstract class Run <JobT extends Job<JobT,RunT>,RunT extends Run<JobT,Ru...
IntelliJ complains about this. Not sure if it's a real problem
diff --git a/test/consumer.py b/test/consumer.py index <HASH>..<HASH> 100644 --- a/test/consumer.py +++ b/test/consumer.py @@ -73,7 +73,7 @@ class TestFetcher(object): response = associate(body, self.assoc_secret, self.assoc_handle) self.num_assocs += 1 return self.response(url, r...
[project @ M-x whitespace-cleanup]
diff --git a/src/index.js b/src/index.js index <HASH>..<HASH> 100644 --- a/src/index.js +++ b/src/index.js @@ -27,6 +27,10 @@ export class RangePool { for (const worker of this.workers) { if (!worker.hasCompleted()) { + if (!worker.isActive()) { + return worker.activate() + } + ...
:new: Use existing non-finished workers if available This way we won't be creating gaps in the pool and will be completing the work in it's entirety
diff --git a/bin/svgfont2svgicons.js b/bin/svgfont2svgicons.js index <HASH>..<HASH> 100755 --- a/bin/svgfont2svgicons.js +++ b/bin/svgfont2svgicons.js @@ -7,6 +7,7 @@ var svgfont2svgicons = require(__dirname + '/../src/index.js') var fontStream = Fs.createReadStream(process.argv[2]); var iconProvider = svgfont2svgi...
Taking in count unamed icons
diff --git a/lib/plugins/static.js b/lib/plugins/static.js index <HASH>..<HASH> 100644 --- a/lib/plugins/static.js +++ b/lib/plugins/static.js @@ -35,7 +35,7 @@ function serveStatic(opts) { req.path())); return; } else if (!stats.isFile()) { - next(new ResourceNotFoundE...
#<I> - serveStatic does not append
diff --git a/tests/test_request.py b/tests/test_request.py index <HASH>..<HASH> 100644 --- a/tests/test_request.py +++ b/tests/test_request.py @@ -93,7 +93,7 @@ def server_thread(server): request = server.get_request() server.process_request(*request) server.server_close() - server.socket.close() + ...
test - More time for the client to fetch the data returned
diff --git a/lib/class.OS_Linux.php b/lib/class.OS_Linux.php index <HASH>..<HASH> 100644 --- a/lib/class.OS_Linux.php +++ b/lib/class.OS_Linux.php @@ -455,7 +455,7 @@ class OS_Linux extends OS_Unix_Common { $return = array(); // hddtemp? - if (array_key_exists('hddtemp', (array)$this->settings['temps']) && !em...
Adding array index checks In test suite, config details are missing for hddtemp/mbmon in the test config, which caused phpunit to spit invalid index errors. This is now safeguarded against using isset()'s
diff --git a/lib/ooor/errors.rb b/lib/ooor/errors.rb index <HASH>..<HASH> 100644 --- a/lib/ooor/errors.rb +++ b/lib/ooor/errors.rb @@ -25,6 +25,8 @@ module Ooor return ValueError.new(method, faultCode, faultString, *args) elsif faultCode =~ /ValidateError/ return ValidationError.new(method, fau...
properly generates UnAuthorizedError
diff --git a/db/sql.php b/db/sql.php index <HASH>..<HASH> 100644 --- a/db/sql.php +++ b/db/sql.php @@ -302,9 +302,8 @@ class SQL extends \PDO { // This requires SUPER privilege! $rows=array(); foreach ($this->exec($val[0],NULL,$ttl) as $row) { - $field=trim($row[$val[1]],'\'"[]`'); - if (!$fields...
Revert to prior schema detection (Issue #<I>)
diff --git a/smart_selects/views.py b/smart_selects/views.py index <HASH>..<HASH> 100644 --- a/smart_selects/views.py +++ b/smart_selects/views.py @@ -1,5 +1,6 @@ from django.http import HttpResponse from django.db.models import Q +from django.utils.six import iteritems try: from django.apps import apps @@ -4...
Fix python 3 compatibility issue Using iteritems() to iterate dicts isn't supported by Python 3. Applied a solution that supports both Python 2 and 3.
diff --git a/molgenis-api-tests/src/test/java/org/molgenis/api/tests/rest/v2/RestControllerV2IT.java b/molgenis-api-tests/src/test/java/org/molgenis/api/tests/rest/v2/RestControllerV2IT.java index <HASH>..<HASH> 100644 --- a/molgenis-api-tests/src/test/java/org/molgenis/api/tests/rest/v2/RestControllerV2IT.java +++ b/m...
Use distinct query to prevent test users to interfere with the aggregate result
diff --git a/src/tests/org/owasp/html/AntiSamyTest.java b/src/tests/org/owasp/html/AntiSamyTest.java index <HASH>..<HASH> 100644 --- a/src/tests/org/owasp/html/AntiSamyTest.java +++ b/src/tests/org/owasp/html/AntiSamyTest.java @@ -49,7 +49,7 @@ import junit.framework.TestSuite; public class AntiSamyTest extends TestCa...
re-enable internet tests inherited from AntiSamy
diff --git a/pyemma/msm/tests/test_bayesian_hmsm.py b/pyemma/msm/tests/test_bayesian_hmsm.py index <HASH>..<HASH> 100644 --- a/pyemma/msm/tests/test_bayesian_hmsm.py +++ b/pyemma/msm/tests/test_bayesian_hmsm.py @@ -320,5 +320,19 @@ class TestBHMMSpecialCases(unittest.TestCase): assert strajs[0][0] == 2 ...
[TestBHMMSpecialCases] added test for initialized bhmm
diff --git a/integration_tests/root_test.go b/integration_tests/root_test.go index <HASH>..<HASH> 100644 --- a/integration_tests/root_test.go +++ b/integration_tests/root_test.go @@ -3,12 +3,17 @@ package wl_integration_test import ( . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" + "github.com/robdimsdale/w...
Reduce flakiness in root test. [#<I>]
diff --git a/tests/Doctrine/Tests/ORM/Tools/EntityGeneratorTest.php b/tests/Doctrine/Tests/ORM/Tools/EntityGeneratorTest.php index <HASH>..<HASH> 100644 --- a/tests/Doctrine/Tests/ORM/Tools/EntityGeneratorTest.php +++ b/tests/Doctrine/Tests/ORM/Tools/EntityGeneratorTest.php @@ -548,9 +548,9 @@ class EntityGeneratorTest...
Updated EntityGeneratorTest::testEntityTypeAlias
diff --git a/lib/deployml/project.rb b/lib/deployml/project.rb index <HASH>..<HASH> 100644 --- a/lib/deployml/project.rb +++ b/lib/deployml/project.rb @@ -159,13 +159,15 @@ module DeploYML end def load_server! - unless Servers.has_key?(@config.server_name) - raise(InvalidConfig,"Unknown Server #...
Only load the Server module if a server was defined in deploy.yml.
diff --git a/module/base/src/cache.js b/module/base/src/cache.js index <HASH>..<HASH> 100644 --- a/module/base/src/cache.js +++ b/module/base/src/cache.js @@ -7,7 +7,7 @@ const { execSync } = require('child_process'); const appCore = require('./_app-core'); function isOlder(cacheStat, fullStat) { - return cacheSta...
No longer consider access time for staleness, only mtime and ctime
diff --git a/buildbot/slave/commands.py b/buildbot/slave/commands.py index <HASH>..<HASH> 100644 --- a/buildbot/slave/commands.py +++ b/buildbot/slave/commands.py @@ -196,6 +196,7 @@ class LogFileWatcher: return # no file to work with self.f = open(self.logfile, "rb") self.sta...
Seek to current file position to clear EOF status on Mac OS X. Mac OS X and Linux differ in behaviour when reading from a file that has previously reached EOF. On Linux, any new data that has been appended to the file will be returned. On Mac OS X, the empty string will always be returned. Seeking to the current po...
diff --git a/src/Adapters/PostgreSQL.php b/src/Adapters/PostgreSQL.php index <HASH>..<HASH> 100644 --- a/src/Adapters/PostgreSQL.php +++ b/src/Adapters/PostgreSQL.php @@ -19,6 +19,31 @@ class PostgreSQL extends SQL { return $this->client->exec("TRUNCATE TABLE $this->table") !== false; } + + /*...
Postgres set on conflict update Since version <I> postgres (<I> latest) has on conflict update set syntax. This syntax avoids lots of error record in postgres logs (duplicate key error). <URL>
diff --git a/qualysapi/config.py b/qualysapi/config.py index <HASH>..<HASH> 100644 --- a/qualysapi/config.py +++ b/qualysapi/config.py @@ -86,17 +86,17 @@ class QualysConnectConfig: self.max_retries = int(self.max_retries) #Get template ID... user will need to set this to pull back CSV reports - ...
changed section on VulnWhisperer functions
diff --git a/test/functional/ft_5_on_error.rb b/test/functional/ft_5_on_error.rb index <HASH>..<HASH> 100644 --- a/test/functional/ft_5_on_error.rb +++ b/test/functional/ft_5_on_error.rb @@ -127,5 +127,30 @@ class FtOnErrorTest < Test::Unit::TestCase assert_trace(pdef, 'failed.') end + + def test_with_concur...
added test about concurrence :on_error => 'x'
diff --git a/includes/functions-html.php b/includes/functions-html.php index <HASH>..<HASH> 100644 --- a/includes/functions-html.php +++ b/includes/functions-html.php @@ -564,7 +564,7 @@ function yourls_table_add_row( $keyword, $url, $title = '', $ip, $clicks, $times 'onclick' => "remove_link('$id');return false;",...
Extend filter-hook "table_add_row_action_array" Closes #<I>