diff
stringlengths
65
26.7k
message
stringlengths
7
9.92k
diff --git a/lib/jsduck/util/singleton.rb b/lib/jsduck/util/singleton.rb index <HASH>..<HASH> 100644 --- a/lib/jsduck/util/singleton.rb +++ b/lib/jsduck/util/singleton.rb @@ -1,3 +1,4 @@ +require 'singleton' module JsDuck module Util @@ -20,9 +21,7 @@ module JsDuck module Singleton def self.included(b...
Use the Ruby Singleton class inside Util::Singleton. Although our simple implementation worked also just fine, the builtin Singleton has some more checks built into it - just good to rely on something that's well tried and tested.
diff --git a/salt/client/ssh/ssh_py_shim.py b/salt/client/ssh/ssh_py_shim.py index <HASH>..<HASH> 100644 --- a/salt/client/ssh/ssh_py_shim.py +++ b/salt/client/ssh/ssh_py_shim.py @@ -230,7 +230,7 @@ def main(argv): # pylint: disable=W0613 subprocess.call(salt_argv) shutil.rmtree(OPTIONS.saltdir) ...
Some environments refuse to return the command output This results in the output from salt-ssh being empty, this fix ensures that the output is always there
diff --git a/lib/instrumental/agent.rb b/lib/instrumental/agent.rb index <HASH>..<HASH> 100644 --- a/lib/instrumental/agent.rb +++ b/lib/instrumental/agent.rb @@ -473,6 +473,7 @@ module Instrumental # or we cannot reach the server # or the connection state of this socket is in a race logger.e...
Add some debug logging to help with test issues
diff --git a/airflow/operators/hive_to_druid.py b/airflow/operators/hive_to_druid.py index <HASH>..<HASH> 100644 --- a/airflow/operators/hive_to_druid.py +++ b/airflow/operators/hive_to_druid.py @@ -68,7 +68,7 @@ class HiveToDruidTransfer(BaseOperator): def execute(self, context): hive = HiveCliHook(hive_...
there could be dot in the key string, which is illegal in the hive table name
diff --git a/plugins/outputs/amqp/amqp.go b/plugins/outputs/amqp/amqp.go index <HASH>..<HASH> 100644 --- a/plugins/outputs/amqp/amqp.go +++ b/plugins/outputs/amqp/amqp.go @@ -249,6 +249,7 @@ func (q *AMQP) Write(metrics []telegraf.Metric) error { if q.sentMessages >= q.MaxMessages && q.MaxMessages > 0 { log.Prin...
Prevent connection leak by closing unused connections in amqp output (#<I>)
diff --git a/doc/source/conf.py b/doc/source/conf.py index <HASH>..<HASH> 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -151,7 +151,7 @@ html_static_path = ['_static'] # If not '', a 'Last updated on:' timestamp is inserted at every page bottom, # using the given strftime format. -#html_last_updated_f...
added build date/time to HTML footer; due to sphinx restrictions, use local time
diff --git a/lib/homesick/shell.rb b/lib/homesick/shell.rb index <HASH>..<HASH> 100644 --- a/lib/homesick/shell.rb +++ b/lib/homesick/shell.rb @@ -1,3 +1,5 @@ +require 'thor' + module Homesick # Hack in support for diffing symlinks class Shell < Thor::Shell::Color
Require Thor in Homesick::Shell
diff --git a/lib/protocol/ColoringEngine.js b/lib/protocol/ColoringEngine.js index <HASH>..<HASH> 100644 --- a/lib/protocol/ColoringEngine.js +++ b/lib/protocol/ColoringEngine.js @@ -235,7 +235,10 @@ ColoringEngine.prototype._computeAssetIds = function (inputs, markerOutputIndex, } else { result.push(new Tr...
Ensure issuance outputs always have output type 'isuance'
diff --git a/segno/writers.py b/segno/writers.py index <HASH>..<HASH> 100644 --- a/segno/writers.py +++ b/segno/writers.py @@ -332,9 +332,6 @@ def write_eps(matrix, version, out, scale=1, border=None, color='#000', raise ValueError('Invalid color "{0}". Not in range 0 .. 1' ...
Removed unused check. colors should handle that
diff --git a/client/driver/executor_plugin.go b/client/driver/executor_plugin.go index <HASH>..<HASH> 100644 --- a/client/driver/executor_plugin.go +++ b/client/driver/executor_plugin.go @@ -18,7 +18,7 @@ var HandshakeConfig = plugin.HandshakeConfig{ func GetPluginMap(w io.Writer) map[string]plugin.Plugin { p := n...
removing the prefix of the logger
diff --git a/pyflakes/test/test_undefined_names.py b/pyflakes/test/test_undefined_names.py index <HASH>..<HASH> 100644 --- a/pyflakes/test/test_undefined_names.py +++ b/pyflakes/test/test_undefined_names.py @@ -372,13 +372,20 @@ class Test(harness.Test): class A: T = range(10) - X = {...
Skip dict/set comprehension with Python <I> and <I>
diff --git a/tests/Kwf/Validate/PasswordTest.php b/tests/Kwf/Validate/PasswordTest.php index <HASH>..<HASH> 100644 --- a/tests/Kwf/Validate/PasswordTest.php +++ b/tests/Kwf/Validate/PasswordTest.php @@ -2,7 +2,7 @@ /** * @group Validate */ -class Kwf_Validate_EmailAddressSimpleTest extends Kwf_Test_TestCase +class...
fix test name (did this test ever run?)
diff --git a/pysat/_params.py b/pysat/_params.py index <HASH>..<HASH> 100644 --- a/pysat/_params.py +++ b/pysat/_params.py @@ -11,8 +11,6 @@ import os from portalocker import Lock -import pysat.utils - class Parameters(object): """Stores user parameters used by pysat.
STY: Removed now unused import
diff --git a/src/Input.php b/src/Input.php index <HASH>..<HASH> 100644 --- a/src/Input.php +++ b/src/Input.php @@ -349,7 +349,7 @@ class Input implements \Countable */ public function getMethod() { - return strtoupper($this->server->getRaw('REQUEST_METHOD')); + return strtoupper($this->server->getCmd('REQUEST_...
Restrict the values of the request method
diff --git a/tests/TestCase/Controller/Component/SecurityComponentTest.php b/tests/TestCase/Controller/Component/SecurityComponentTest.php index <HASH>..<HASH> 100644 --- a/tests/TestCase/Controller/Component/SecurityComponentTest.php +++ b/tests/TestCase/Controller/Component/SecurityComponentTest.php @@ -409,7 +409,7 ...
Make test check for failure instead of pass.
diff --git a/lib/neo4j/active_rel/persistence/query_factory.rb b/lib/neo4j/active_rel/persistence/query_factory.rb index <HASH>..<HASH> 100644 --- a/lib/neo4j/active_rel/persistence/query_factory.rb +++ b/lib/neo4j/active_rel/persistence/query_factory.rb @@ -15,9 +15,9 @@ module Neo4j::ActiveRel::Persistence # TOD...
Small fix on docs compilation.
diff --git a/ncpol2sdpa/physics_utils.py b/ncpol2sdpa/physics_utils.py index <HASH>..<HASH> 100644 --- a/ncpol2sdpa/physics_utils.py +++ b/ncpol2sdpa/physics_utils.py @@ -34,7 +34,7 @@ def get_neighbors(index, lattice_length, width=0, periodic=False): coords = divmod(index, width) if coords[1] < width - 1: ...
get_neighbours function corrected for periodic chains
diff --git a/ecell4/util/parseobj.py b/ecell4/util/parseobj.py index <HASH>..<HASH> 100644 --- a/ecell4/util/parseobj.py +++ b/ecell4/util/parseobj.py @@ -485,8 +485,8 @@ class SubExp(ExpBase): def __append(self, obj): if isinstance(obj, AnyCallable): self._elems.append(obj._as_ParseObj()) - ...
Fix a critical bug related to ode again
diff --git a/bin/jade.js b/bin/jade.js index <HASH>..<HASH> 100755 --- a/bin/jade.js +++ b/bin/jade.js @@ -190,19 +190,11 @@ function renderFile(path) { var dir = resolve(dirname(path)); mkdirp(dir, 0755, function(err){ if (err) throw err; - try { - var output = options....
Remove another now-useless special exception handling for watch mode I have already removed two in <I>b<I>e<I>e<I>f<I>aae<I>e8d9ca<I>e0b<I>.
diff --git a/group.go b/group.go index <HASH>..<HASH> 100644 --- a/group.go +++ b/group.go @@ -11,8 +11,8 @@ type Group struct { // Add a sub-group to this group func (g *Group) NewGroup(path string) *Group { - path = g.path + path checkPath(path) + path = g.path + path //Don't want trailing slash as all sub-pa...
Fixed bug in sub-group path checks added test case for both root group as well as sub group path checks
diff --git a/lib/tinder/connection.rb b/lib/tinder/connection.rb index <HASH>..<HASH> 100644 --- a/lib/tinder/connection.rb +++ b/lib/tinder/connection.rb @@ -1,3 +1,4 @@ +require 'uri' require 'faraday' module Tinder
requires uri library to avoid error (NameError: uninitialized constant Tinder::Connection::URI)
diff --git a/lfs/ntlm_test.go b/lfs/ntlm_test.go index <HASH>..<HASH> 100644 --- a/lfs/ntlm_test.go +++ b/lfs/ntlm_test.go @@ -80,16 +80,17 @@ func TestNtlmHeaderParseValid(t *testing.T) { } func TestNtlmHeaderParseInvalidLength(t *testing.T) { - - defer func() { - r := recover() - assert.NotEqual(t, r, nil) - }(...
never want to TEST for a panic
diff --git a/luigi/scheduler.py b/luigi/scheduler.py index <HASH>..<HASH> 100644 --- a/luigi/scheduler.py +++ b/luigi/scheduler.py @@ -622,7 +622,7 @@ class CentralPlannerScheduler(Scheduler): self._update_task_history(task_id, status) self._state.set_status(task, PENDING if status == SUSP...
Move retry_time logic to its own method.
diff --git a/src/Illuminate/Log/Writer.php b/src/Illuminate/Log/Writer.php index <HASH>..<HASH> 100755 --- a/src/Illuminate/Log/Writer.php +++ b/src/Illuminate/Log/Writer.php @@ -10,8 +10,8 @@ use Monolog\Handler\SyslogHandler; use Monolog\Formatter\LineFormatter; use Monolog\Handler\ErrorLogHandler; use Monolog\Log...
Apply fixes from StyleCI (#<I>)
diff --git a/build/broccoli/build-packages.js b/build/broccoli/build-packages.js index <HASH>..<HASH> 100644 --- a/build/broccoli/build-packages.js +++ b/build/broccoli/build-packages.js @@ -116,6 +116,20 @@ function transpileAMD(pkgName, esVersion, tree) { entry: `${pkgName}/index.js`, external, p...
Suppress Rollup warnings Rollup was tossing out warnings in two cases we simply don't care about seeing them for. * Top-level this is treated as undefined. Documented in <URL>
diff --git a/planet/exceptions.py b/planet/exceptions.py index <HASH>..<HASH> 100644 --- a/planet/exceptions.py +++ b/planet/exceptions.py @@ -13,7 +13,12 @@ # limitations under the License. -class APIException(Exception): +class PlanetException(Exception): + """Root for all exceptions thrown by the SDK""" + ...
add PlanetException to capture all exceptions thrown by program
diff --git a/subsystem/click.js b/subsystem/click.js index <HASH>..<HASH> 100644 --- a/subsystem/click.js +++ b/subsystem/click.js @@ -50,6 +50,9 @@ phoxy._.click = , OnClick: function (event) { + if (window.event.ctrlKey) + return; // Ctrl + Click = open in new tab + var target = event.ta...
Fix "open in new tab" issue
diff --git a/spec/thinking_sphinx/active_record/property_sql_presenter_spec.rb b/spec/thinking_sphinx/active_record/property_sql_presenter_spec.rb index <HASH>..<HASH> 100644 --- a/spec/thinking_sphinx/active_record/property_sql_presenter_spec.rb +++ b/spec/thinking_sphinx/active_record/property_sql_presenter_spec.rb @...
Added a spec for the change in commit <I>f2
diff --git a/lib/routing.js b/lib/routing.js index <HASH>..<HASH> 100644 --- a/lib/routing.js +++ b/lib/routing.js @@ -224,8 +224,8 @@ var route = function(conf, method, pattern, action, rdy, options) { if (sectionName === 'main' && !isMain) return var fragment = app.sections[sectionName] ...
Fix Fragment/State-Change-related Events
diff --git a/environment/src/main/java/jetbrains/exodus/log/Log.java b/environment/src/main/java/jetbrains/exodus/log/Log.java index <HASH>..<HASH> 100644 --- a/environment/src/main/java/jetbrains/exodus/log/Log.java +++ b/environment/src/main/java/jetbrains/exodus/log/Log.java @@ -721,7 +721,7 @@ public final class Lo...
Log.getIdentity() is public
diff --git a/cmd/taxi.go b/cmd/taxi.go index <HASH>..<HASH> 100644 --- a/cmd/taxi.go +++ b/cmd/taxi.go @@ -33,6 +33,7 @@ package cmd import ( + "fmt" "io" "log" "time" @@ -56,8 +57,10 @@ func NewTaxiCommand(stdin io.Reader, stdout, stderr io.Writer) *cobra.Command { if err != nil { return err } -...
Minor changes to work well with benchmark framework
diff --git a/src/main/java/com/asual/lesscss/LessEngine.java b/src/main/java/com/asual/lesscss/LessEngine.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/asual/lesscss/LessEngine.java +++ b/src/main/java/com/asual/lesscss/LessEngine.java @@ -193,9 +193,9 @@ public class LessEngine { LessEngine engine = new ...
Fixes related to issue <I>.
diff --git a/application/Espo/Core/Utils/Metadata.php b/application/Espo/Core/Utils/Metadata.php index <HASH>..<HASH> 100644 --- a/application/Espo/Core/Utils/Metadata.php +++ b/application/Espo/Core/Utils/Metadata.php @@ -326,6 +326,26 @@ class Metadata $unsets = (array) $unsets; } + swi...
Metadata: delete related additional fields in entitiDefs
diff --git a/umi_tools/whitelist.py b/umi_tools/whitelist.py index <HASH>..<HASH> 100644 --- a/umi_tools/whitelist.py +++ b/umi_tools/whitelist.py @@ -176,7 +176,7 @@ whitelist-specific options Detect CBs above the threshold which may be sequence errors: - "discard" - Dis...
Update whitelist.py Change to help text for `ed-above-threshold` to note that the default is to do no correction.
diff --git a/salt/fileserver/__init__.py b/salt/fileserver/__init__.py index <HASH>..<HASH> 100644 --- a/salt/fileserver/__init__.py +++ b/salt/fileserver/__init__.py @@ -323,10 +323,11 @@ class Fileserver(object): if not back: back = self.opts['fileserver_backend'] else: - try...
salt.fileserver.Fileserver: Don't try to split a list in _gen_back This fixes a bug which causes backends passed as a python list to be converted to a ``str`` (specifically a ``unicode`` type in PY2) and then split, resulting in a backend that will never match anything. This only affects runner and Salt Python API us...
diff --git a/system_tests/bigquery.py b/system_tests/bigquery.py index <HASH>..<HASH> 100644 --- a/system_tests/bigquery.py +++ b/system_tests/bigquery.py @@ -464,4 +464,8 @@ class TestBigQuery(unittest.TestCase): retry = RetryInstanceState(_job_done, max_tries=8) retry(job.reload)() - self.a...
Replace redundant 'job done' assertion with a note. Explain why we can't make any real assertions about the status of the cancelled job. Addresses: <URL>
diff --git a/addon/components/sl-chart.js b/addon/components/sl-chart.js index <HASH>..<HASH> 100755 --- a/addon/components/sl-chart.js +++ b/addon/components/sl-chart.js @@ -23,7 +23,8 @@ export default Ember.Component.extend({ 'panel', 'panel-default', 'sl-chart', - 'sl-panel' + ...
Add "sl-ember-components" class to sl-chart for loading state to be properly supported
diff --git a/src/Illuminate/Queue/Console/WorkCommand.php b/src/Illuminate/Queue/Console/WorkCommand.php index <HASH>..<HASH> 100644 --- a/src/Illuminate/Queue/Console/WorkCommand.php +++ b/src/Illuminate/Queue/Console/WorkCommand.php @@ -168,8 +168,9 @@ class WorkCommand extends Command protected function writeSt...
Include job ID in the output of the queue:work Artisan command (#<I>)
diff --git a/datajoint/diagram.py b/datajoint/diagram.py index <HASH>..<HASH> 100644 --- a/datajoint/diagram.py +++ b/datajoint/diagram.py @@ -230,7 +230,8 @@ else: # mark "distinguished" tables, i.e. those that introduce new primary key attributes for name in self.nodes_to_show: ...
Fix diagram issue when node has no primary keys.
diff --git a/treeherder/model/derived/jobs.py b/treeherder/model/derived/jobs.py index <HASH>..<HASH> 100644 --- a/treeherder/model/derived/jobs.py +++ b/treeherder/model/derived/jobs.py @@ -195,7 +195,7 @@ class JobsModel(TreeherderModelBase): if not project: project = self.project build...
Bug <I> - Delete build system cached list when project is not found
diff --git a/lib/trestle/resource/controller.rb b/lib/trestle/resource/controller.rb index <HASH>..<HASH> 100644 --- a/lib/trestle/resource/controller.rb +++ b/lib/trestle/resource/controller.rb @@ -44,10 +44,18 @@ module Trestle end def show - respond_to do |format| - format.html - ...
Redirect to new action if singular instance not found
diff --git a/client_test.go b/client_test.go index <HASH>..<HASH> 100644 --- a/client_test.go +++ b/client_test.go @@ -35,6 +35,7 @@ func TestingConfig() *ClientConfig { cfg.DataDir = tempDir() cfg.DisableTrackers = true cfg.NoDefaultPortForwarding = true + cfg.DisableAcceptRateLimiting = true return cfg }
Disable accept rate limiting by default in tests
diff --git a/pymc/tests/test_distributions_random.py b/pymc/tests/test_distributions_random.py index <HASH>..<HASH> 100644 --- a/pymc/tests/test_distributions_random.py +++ b/pymc/tests/test_distributions_random.py @@ -360,10 +360,10 @@ class BaseTestDistributionRandom(SeededTest): ) def check_pymc_para...
Fix aesara name (#<I>)
diff --git a/remote.go b/remote.go index <HASH>..<HASH> 100644 --- a/remote.go +++ b/remote.go @@ -22,6 +22,11 @@ type PluginDecl struct { Formats []Format `json:"formats"` } +type formatResponse struct { + Error Error `json:"error,omitempty"` + Format `json:"format"` +} + type Format string var ( @@ -57,1...
Added to a answer to the protocol where server responds with the chosen format.
diff --git a/lib/zeevex_threadsafe/rails/request_globals.rb b/lib/zeevex_threadsafe/rails/request_globals.rb index <HASH>..<HASH> 100644 --- a/lib/zeevex_threadsafe/rails/request_globals.rb +++ b/lib/zeevex_threadsafe/rails/request_globals.rb @@ -1,5 +1,11 @@ require_dependency "weakref" +begin + require 'active_su...
include aliasing in request_globals
diff --git a/thinc/tests/shims/test_pytorch_grad_scaler.py b/thinc/tests/shims/test_pytorch_grad_scaler.py index <HASH>..<HASH> 100644 --- a/thinc/tests/shims/test_pytorch_grad_scaler.py +++ b/thinc/tests/shims/test_pytorch_grad_scaler.py @@ -1,6 +1,6 @@ import pytest -from hypothesis import given +from hypothesis i...
Remove deadline of test_scale_random_inputs (#<I>) By default the hypothesis deadline is <I>ms. The test_scale_random_inputs test would frequently fail because on the first run the deadline was exceeded because GPU initialization takes some time.
diff --git a/hpcbench/driver.py b/hpcbench/driver.py index <HASH>..<HASH> 100644 --- a/hpcbench/driver.py +++ b/hpcbench/driver.py @@ -65,6 +65,7 @@ def write_yaml_report(func): class Enumerator(six.with_metaclass(ABCMeta, object)): """Common class for every campaign node""" def __init__(self, parent, name=N...
Can now got upward in driver class hierarchy
diff --git a/src/scrollfire/scrollfire-patch.js b/src/scrollfire/scrollfire-patch.js index <HASH>..<HASH> 100644 --- a/src/scrollfire/scrollfire-patch.js +++ b/src/scrollfire/scrollfire-patch.js @@ -1,3 +1,4 @@ +/* eslint no-new-func:0 */ export class ScrollfirePatch { patched = false;
chore(lint): disable no-new-func in scrollfire-patch
diff --git a/test/wlang_test.rb b/test/wlang_test.rb index <HASH>..<HASH> 100644 --- a/test/wlang_test.rb +++ b/test/wlang_test.rb @@ -1,4 +1,6 @@ require File.expand_path('../helper', __FILE__) + +begin require 'wlang' class WLangTest < Test::Unit::TestCase @@ -61,4 +63,8 @@ class WLangTest < Test::Unit::TestCase...
Wrap wlang test in a rescue clause.
diff --git a/lib/discordrb/voice/encoder.rb b/lib/discordrb/voice/encoder.rb index <HASH>..<HASH> 100644 --- a/lib/discordrb/voice/encoder.rb +++ b/lib/discordrb/voice/encoder.rb @@ -49,6 +49,9 @@ module Discordrb::Voice @opus.encode(buffer, 1920) end + # One frame of complete silence Opus encoded + ...
Define a constant to represent opus encoded silence
diff --git a/src/java/main/org/jsmpp/util/StringParameter.java b/src/java/main/org/jsmpp/util/StringParameter.java index <HASH>..<HASH> 100644 --- a/src/java/main/org/jsmpp/util/StringParameter.java +++ b/src/java/main/org/jsmpp/util/StringParameter.java @@ -59,7 +59,7 @@ public enum StringParameter { * STAT_ESME_RI...
Change the maximum length of short message to <I> (SMPP spec v <I>)
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -7,10 +7,10 @@ setup_requires = [ 'setuptools>=54.2.0', ] install_requires = [ - 'aiohttp~=3.7.4', + 'aiohttp~=3.8.0', 'aiotusclient~=0.1.4', 'appdirs~=1.4.4', - 'async_timeout>=3.0', + 'async_time...
setup: Upgrade aiohttp to <I> series and other deps
diff --git a/actions/update.js b/actions/update.js index <HASH>..<HASH> 100644 --- a/actions/update.js +++ b/actions/update.js @@ -58,7 +58,7 @@ module.exports = function updateOneRecord (req, res) { req._sails.log.warn(util.format('Unexpected output from `%s.update`.', Model.globalId)); } - var ...
Fixed return on update Sequelize returns the number of affect rows on update, it was returning always [1], instead of the PK id
diff --git a/spec/webdav_server.rb b/spec/webdav_server.rb index <HASH>..<HASH> 100644 --- a/spec/webdav_server.rb +++ b/spec/webdav_server.rb @@ -4,7 +4,11 @@ require 'rubygems' require 'webrick' require 'webrick/httpservlet/webdavhandler' -# Webdav server based on: +# Web server with WebDAV extensions +# +# Usage...
changed webdav servers shared directory
diff --git a/views/js/qtiCreator/model/Math.js b/views/js/qtiCreator/model/Math.js index <HASH>..<HASH> 100755 --- a/views/js/qtiCreator/model/Math.js +++ b/views/js/qtiCreator/model/Math.js @@ -2,7 +2,7 @@ define([ 'lodash', 'taoQtiItem/qtiCreator/model/mixin/editable', 'taoQtiItem/qtiItem/core/Math' -]...
Rename Math to mathModel to avoid conflict with keyword
diff --git a/configs/configupgrade/upgrade_test.go b/configs/configupgrade/upgrade_test.go index <HASH>..<HASH> 100644 --- a/configs/configupgrade/upgrade_test.go +++ b/configs/configupgrade/upgrade_test.go @@ -14,6 +14,8 @@ import ( ) func TestUpgradeValid(t *testing.T) { + t.Skip("configupgrade is not yet complet...
configs/configupgrade: Disable the tests for now The tests in here are illustrating that this package is not yet finished, but we plan to run a release before we finish this and so we'll skip those tests for now with the intent of reinstating this again once we return to finish this up.
diff --git a/lib/OpenLayers/Handler/Point.js b/lib/OpenLayers/Handler/Point.js index <HASH>..<HASH> 100644 --- a/lib/OpenLayers/Handler/Point.js +++ b/lib/OpenLayers/Handler/Point.js @@ -247,7 +247,6 @@ OpenLayers.Handler.Point = OpenLayers.Class(OpenLayers.Handler, { */ finalize: function(cancel) { ...
Handler.Point has no "drawing" property anymore, trivial change (references #<I>) git-svn-id: <URL>
diff --git a/lib/duse/client/entity.rb b/lib/duse/client/entity.rb index <HASH>..<HASH> 100644 --- a/lib/duse/client/entity.rb +++ b/lib/duse/client/entity.rb @@ -101,7 +101,7 @@ module Duse # encryption will fail. Might improve with: http://stackoverflow.com/questions/11505547/how-calculate-size-of-rsa-cipher...
always have a threshold of 2 if giving permissions should become necessary this can be changed to a users input
diff --git a/lib/imgManip.js b/lib/imgManip.js index <HASH>..<HASH> 100644 --- a/lib/imgManip.js +++ b/lib/imgManip.js @@ -54,7 +54,7 @@ exports.effect = function (query, subject, dimensions, out) { if (opts.verbose.val) { console.log('query', query) } - if (!query.outType && query.url.slice...
Update imgManip.js Check for query.url before slicing
diff --git a/course/tests/courselib_test.php b/course/tests/courselib_test.php index <HASH>..<HASH> 100644 --- a/course/tests/courselib_test.php +++ b/course/tests/courselib_test.php @@ -100,6 +100,8 @@ class courselib_testcase extends advanced_testcase { $moduleinfo->requireallteammemberssubmit = true; ...
MDL-<I> courselib: Fix unit tests The courselib tests have hardcoded test data sets for forum and assign modules that need to be updated every time we add a new feature.
diff --git a/ddl/ddl_api.go b/ddl/ddl_api.go index <HASH>..<HASH> 100644 --- a/ddl/ddl_api.go +++ b/ddl/ddl_api.go @@ -2035,6 +2035,16 @@ func (d *ddl) CreateIndex(ctx sessionctx.Context, ti ast.Ident, unique bool, ind return errors.Trace(err) } + // Check before put the job is put to the queue. + // This check ...
ddl: fast fail check for create index to accelerate CI (#<I>) ➜ session git:(master) ✗ GO<I>MODULE=on go test -check.f TestIndexMaxLength before: ok github.com/pingcap/tidb/session <I>s after: ok github.com/pingcap/tidb/session <I>s
diff --git a/volman/volman_executor_test.go b/volman/volman_executor_test.go index <HASH>..<HASH> 100644 --- a/volman/volman_executor_test.go +++ b/volman/volman_executor_test.go @@ -227,6 +227,9 @@ var _ = Describe("Executor/Garden/Volman", func() { err := executorClient.DeleteContainer(logger, guid) E...
modify inigo tests to clean up mounted test volumes after unmount [#<I>](<URL>)
diff --git a/filterpy/kalman/square_root.py b/filterpy/kalman/square_root.py index <HASH>..<HASH> 100644 --- a/filterpy/kalman/square_root.py +++ b/filterpy/kalman/square_root.py @@ -334,6 +334,11 @@ class SquareRootKalmanFilter(object): """ system uncertainty (P projected to measurement space) """ re...
Added SI to SquareRootKalmanFilter.
diff --git a/scour/scour.py b/scour/scour.py index <HASH>..<HASH> 100644 --- a/scour/scour.py +++ b/scour/scour.py @@ -3328,7 +3328,7 @@ def scourString(in_string, options=None): if options.error_on_flowtext: raise Exception(errmsg) else: - print("WARNING: {}".format(errmsg), f...
Hardcode printing of "flowtext" warning to stderr Third-party applications obviously can not handle additional output on stdout nor can they be expected to do any weird stdout/sterr redirection as we do via `options.stdout` We probably shouldn't print anything in `scourString()` to start with unless we offer an option ...
diff --git a/src/ol/animation.js b/src/ol/animation.js index <HASH>..<HASH> 100644 --- a/src/ol/animation.js +++ b/src/ol/animation.js @@ -115,7 +115,7 @@ ol.animation.rotate = function(options) { (sourceRotation - frameState.viewState.rotation) * delta; frameState.animate = true; f...
Remove goog.isNull in animation class
diff --git a/lib/cucumber/cli/options.rb b/lib/cucumber/cli/options.rb index <HASH>..<HASH> 100644 --- a/lib/cucumber/cli/options.rb +++ b/lib/cucumber/cli/options.rb @@ -118,6 +118,7 @@ module Cucumber "This option can be specified multiple times.") do |v| @options[:require] << v ...
Must require 'java' before using $CLASSPATH in JRuby <I>. [#<I> state:resolved]
diff --git a/lib/database_cleaner/data_mapper/truncation.rb b/lib/database_cleaner/data_mapper/truncation.rb index <HASH>..<HASH> 100644 --- a/lib/database_cleaner/data_mapper/truncation.rb +++ b/lib/database_cleaner/data_mapper/truncation.rb @@ -53,7 +53,7 @@ module DataMapper def truncate_table(table_name) ...
Fixes missing #uses_sequence invokation in adapter classes for sqlite and sqlite3
diff --git a/tests/Integration/ReactMqttClientTest.php b/tests/Integration/ReactMqttClientTest.php index <HASH>..<HASH> 100644 --- a/tests/Integration/ReactMqttClientTest.php +++ b/tests/Integration/ReactMqttClientTest.php @@ -335,6 +335,29 @@ class ReactMqttClientTest extends \PHPUnit_Framework_TestCase } ...
Add is connected on 'connect' event test Proves that a client is connected once the "connect" event is dispatched.
diff --git a/app/models/ldap_authentication.rb b/app/models/ldap_authentication.rb index <HASH>..<HASH> 100644 --- a/app/models/ldap_authentication.rb +++ b/app/models/ldap_authentication.rb @@ -27,19 +27,21 @@ class LdapAuthentication encryption: get_encryption) if ::Configuration.ldap_user_dn_...
Fix for failed authentication - Net::LDAP returns False, which does not expose a "first" method.
diff --git a/bdates/__init__.py b/bdates/__init__.py index <HASH>..<HASH> 100644 --- a/bdates/__init__.py +++ b/bdates/__init__.py @@ -85,7 +85,7 @@ def get_date_from_match_group(match): if month.isdigit(): month = int(month) else: - month = month_to_number[month] + month = month_to_num...
fixed month_to_number lookup where month isn't capitalized/titled for some reason
diff --git a/.babelrc.js b/.babelrc.js index <HASH>..<HASH> 100644 --- a/.babelrc.js +++ b/.babelrc.js @@ -29,11 +29,4 @@ module.exports = { ], ignore: [/\/node_modules\/(?!@interactjs\/)/], - - extensions: [ - '.ts', - '.tsx', - '.js', - '.jsx', - ] } diff --git a/scripts/bundler.js b/script...
chore: move babelify extensions config to bundler
diff --git a/src/getstream.js b/src/getstream.js index <HASH>..<HASH> 100644 --- a/src/getstream.js +++ b/src/getstream.js @@ -26,7 +26,7 @@ function connect(apiKey, apiSecret, appId, options) { * @example <caption>where streamURL looks like</caption> * "https://thierry:pass@gestream.io/?app=1" */ - if (ty...
fixes #<I> with undefined process.env
diff --git a/Test/Asserters/Crawler.php b/Test/Asserters/Crawler.php index <HASH>..<HASH> 100644 --- a/Test/Asserters/Crawler.php +++ b/Test/Asserters/Crawler.php @@ -8,9 +8,9 @@ use mageekguy\atoum\asserters; class Crawler extends asserters\object { - public function setWith($value) + public function setWith...
Update crawler assert to fix #<I> issue
diff --git a/km3pipe/__version__.py b/km3pipe/__version__.py index <HASH>..<HASH> 100644 --- a/km3pipe/__version__.py +++ b/km3pipe/__version__.py @@ -9,7 +9,7 @@ Pep 386 compliant version info. (1, 2, 0, 'beta', 2) => "1.2b2" """ -version_info = (0, 6, 1, 'final', 0) +version_info = (0, 6, 2, 'final', 0) de...
Changes version to <I>
diff --git a/axiom/attributes.py b/axiom/attributes.py index <HASH>..<HASH> 100644 --- a/axiom/attributes.py +++ b/axiom/attributes.py @@ -101,7 +101,7 @@ class Comparable: _likeOperators = ('LIKE', 'NOT LIKE') def _like(self, op, *others): if op.upper() not in self._likeOperators: - raise...
use %r instead of %s when formatting the tuple of acceptable LIKE expressions
diff --git a/js/jquery.cloudinary.js b/js/jquery.cloudinary.js index <HASH>..<HASH> 100644 --- a/js/jquery.cloudinary.js +++ b/js/jquery.cloudinary.js @@ -166,13 +166,13 @@ }; $.fn.cloudinary = function(options) { this.filter('img').each(function() { - options = $.extend({width: $(this).attr('width')...
Options were shared between iterations of $.fn.cloudinary
diff --git a/lib/ftp.js b/lib/ftp.js index <HASH>..<HASH> 100644 --- a/lib/ftp.js +++ b/lib/ftp.js @@ -11,7 +11,7 @@ var RE_XLISTUNIX = XRegExp.cache('^(?<type>[\\-ld])(?<permission>([\\-r][\\-w][\ RE_XTIMEVAL = XRegExp.cache('^(?<year>\\d{4})(?<month>\\d{2})(?<date>\\d{2})(?<hour>\\d{2})(?<minute>\\d{2})(?<second...
fix missed change to response end regexp
diff --git a/lib/overcommit/plugins/pre_commit/coffee_lint.rb b/lib/overcommit/plugins/pre_commit/coffee_lint.rb index <HASH>..<HASH> 100644 --- a/lib/overcommit/plugins/pre_commit/coffee_lint.rb +++ b/lib/overcommit/plugins/pre_commit/coffee_lint.rb @@ -8,7 +8,8 @@ module Overcommit::GitHook return :warn, 'Ru...
Fix CoffeeScript linter path processing The path was not being created properly for coffee_lint. This commit emulates the other plug-ins by creating a paths variable. Submitted as a pull request here: <URL>
diff --git a/code/libraries/koowa/controller/resource.php b/code/libraries/koowa/controller/resource.php index <HASH>..<HASH> 100644 --- a/code/libraries/koowa/controller/resource.php +++ b/code/libraries/koowa/controller/resource.php @@ -331,6 +331,11 @@ abstract class KControllerResource extends KControllerAbstract ...
re #<I> : Fluent interface doesn't set view properly in controllers
diff --git a/rackup.php b/rackup.php index <HASH>..<HASH> 100755 --- a/rackup.php +++ b/rackup.php @@ -1,7 +1,6 @@ #!/usr/bin/env php <?php -require "lib/Rack.php"; -require "lib/RubyRack.php"; +require "autoload.php"; class App { diff --git a/test/app.php b/test/app.php index <HASH>..<HASH> 100644 --- a/test/app...
scripts use autoloader now.
diff --git a/src/scroller.js b/src/scroller.js index <HASH>..<HASH> 100644 --- a/src/scroller.js +++ b/src/scroller.js @@ -76,8 +76,11 @@ var Scroller = React.createClass({displayName: "Scroller", // Set styles if (item._node) { for(var prop in styleObject) { - item._node.style[p...
Skip setting same styles are previous frames for better performance
diff --git a/moco-core/src/main/java/com/github/dreamhead/moco/handler/AbstractResponseHandler.java b/moco-core/src/main/java/com/github/dreamhead/moco/handler/AbstractResponseHandler.java index <HASH>..<HASH> 100644 --- a/moco-core/src/main/java/com/github/dreamhead/moco/handler/AbstractResponseHandler.java +++ b/moco...
added missing final to abstract response handler
diff --git a/lib/knex.js b/lib/knex.js index <HASH>..<HASH> 100644 --- a/lib/knex.js +++ b/lib/knex.js @@ -200,10 +200,12 @@ function explainAfterQuery (app, knex) { knex.on('query-response', (_response, { sql, bindings }) => { sql = knex.client._formatQuery(sql, bindings).trim(); if (haveQueryPlan(sql)) {...
fix: raise explain exception * Mysql <I> only support SELECT statement
diff --git a/GPy/plotting/gpy_plot/gp_plots.py b/GPy/plotting/gpy_plot/gp_plots.py index <HASH>..<HASH> 100644 --- a/GPy/plotting/gpy_plot/gp_plots.py +++ b/GPy/plotting/gpy_plot/gp_plots.py @@ -91,7 +91,7 @@ def _plot_mean(self, canvas, helper_data, helper_prediction, if projection == '2d': ...
[gp_plots] transposed plotting of 2d contours
diff --git a/src/adapters/S3.js b/src/adapters/S3.js index <HASH>..<HASH> 100644 --- a/src/adapters/S3.js +++ b/src/adapters/S3.js @@ -1,5 +1,12 @@ +var util = require('util'); +var BaseAdapter = require(__dirname + '/../base_adapter'); + +var S3Adapter = function(fs) { + this.fs = fs; +} + +util.inherits(S3Adapter,...
Update S3 adapter to inherit the base adapter.
diff --git a/ddl/partition.go b/ddl/partition.go index <HASH>..<HASH> 100644 --- a/ddl/partition.go +++ b/ddl/partition.go @@ -50,8 +50,19 @@ func buildTablePartitionInfo(ctx sessionctx.Context, d *ddl, s *ast.CreateTableS enable = false default: // When tidb_enable_table_partition = 'auto', - // Partition by ...
ddl: enable hash partition and range columns partition by default (#<I>)
diff --git a/spec/unit/veritas/comparator/compare_spec.rb b/spec/unit/veritas/comparator/compare_spec.rb index <HASH>..<HASH> 100644 --- a/spec/unit/veritas/comparator/compare_spec.rb +++ b/spec/unit/veritas/comparator/compare_spec.rb @@ -28,6 +28,12 @@ describe Comparator, '#compare' do instance.hash.should eql(o...
Temporary commit to see which #hash method is returning a non-Fixnum
diff --git a/mdata/cache/ccache_metric.go b/mdata/cache/ccache_metric.go index <HASH>..<HASH> 100644 --- a/mdata/cache/ccache_metric.go +++ b/mdata/cache/ccache_metric.go @@ -244,12 +244,11 @@ func (mc *CCacheMetric) Search(res *CCSearchResult, from, until uint32) { if !res.Complete && res.From > res.Until { log...
no need to rebuild the keys slice when we already have it
diff --git a/javacord-api/src/main/java/org/javacord/api/entity/server/BoostLevel.java b/javacord-api/src/main/java/org/javacord/api/entity/server/BoostLevel.java index <HASH>..<HASH> 100644 --- a/javacord-api/src/main/java/org/javacord/api/entity/server/BoostLevel.java +++ b/javacord-api/src/main/java/org/javacord/api...
Id Bugfix Tier 3 ID was set to "2" when it should be "3"
diff --git a/src/vis/image.js b/src/vis/image.js index <HASH>..<HASH> 100644 --- a/src/vis/image.js +++ b/src/vis/image.js @@ -166,16 +166,18 @@ var vizjson = this.imageOptions.vizjson; - var isHTTPS = vizjson.indexOf("https") !== -1 ? true : false; - this.options.tiler_domain = domain; + ...
if we serve the vizjson without the protocol, trust the info we got from the layer
diff --git a/appender.go b/appender.go index <HASH>..<HASH> 100644 --- a/appender.go +++ b/appender.go @@ -2,6 +2,7 @@ package golog import ( "fmt" + color "github.com/ivpusic/go-clicolor/clicolor" ) @@ -19,7 +20,7 @@ type Appender interface { // Representing stdout appender. type Stdout struct { - datefo...
exposed date format for stdout logger
diff --git a/lib/discordrb/data.rb b/lib/discordrb/data.rb index <HASH>..<HASH> 100644 --- a/lib/discordrb/data.rb +++ b/lib/discordrb/data.rb @@ -852,7 +852,7 @@ module Discordrb process_channels(data['channels']) process_voice_states(data['voice_states']) - @owner = self.member(@owner_id) + ...
Remove a redundant self reference when obtaining the owner
diff --git a/DependencyInjection/Configuration.php b/DependencyInjection/Configuration.php index <HASH>..<HASH> 100644 --- a/DependencyInjection/Configuration.php +++ b/DependencyInjection/Configuration.php @@ -106,10 +106,6 @@ return $v; }) ->end() ->end() ->array...
Removing conflicting validation rule. While PR #<I> added support for using both serialization groups and versions, the configuration validation was not updated to reflect these changes. This commit simply removes the specific validation rule that is affected.
diff --git a/batchSystems/gridengine.py b/batchSystems/gridengine.py index <HASH>..<HASH> 100644 --- a/batchSystems/gridengine.py +++ b/batchSystems/gridengine.py @@ -65,13 +65,13 @@ class MemoryString: return cmp(self.bytes, other.bytes) def prepareQsub(cpu, mem): - qsubline = ["qsub","-b","y","-terse",...
Corrected bugs in command line to SGE
diff --git a/app/models/cms/layout.rb b/app/models/cms/layout.rb index <HASH>..<HASH> 100644 --- a/app/models/cms/layout.rb +++ b/app/models/cms/layout.rb @@ -81,7 +81,7 @@ protected # Forcing page content reload def clear_cached_page_content - self.pages.each{ |page| page.clear_cached_content! } + Cms:...
same idea for layout cached content busting
diff --git a/pug/miner/views.py b/pug/miner/views.py index <HASH>..<HASH> 100644 --- a/pug/miner/views.py +++ b/pug/miner/views.py @@ -247,7 +247,7 @@ def context_from_request(request, context=None, Form=GetLagForm, delim=',', verb 'max_lag': str(max_lag), 'min_date': ', '.join(context...
fix bug in get of regex from context
diff --git a/sc2common/__version__.py b/sc2common/__version__.py index <HASH>..<HASH> 100644 --- a/sc2common/__version__.py +++ b/sc2common/__version__.py @@ -17,6 +17,6 @@ See the License for the specific language governing permissions and limitations under the License. """ -VERSION = (1, 0, 13) +VERSION = (1, 1, ...
- significant version bump owing to logic changes within RestrictedType class
diff --git a/iapws/iapws97.py b/iapws/iapws97.py index <HASH>..<HASH> 100644 --- a/iapws/iapws97.py +++ b/iapws/iapws97.py @@ -4021,7 +4021,7 @@ def _Bound_hs(h, s): """ region = None s13 = _Region1(623.15, 100)["s"] - s13s = _Region1(623.15, Ps_623)["s"] + s13s = _Region1(623.15, Ps_623)["s"] ...
Correct flake8 E<I> complaint. E<I> multiple spaces after ','
diff --git a/springloaded/src/main/java/org/springsource/loaded/MethodInvokerRewriter.java b/springloaded/src/main/java/org/springsource/loaded/MethodInvokerRewriter.java index <HASH>..<HASH> 100644 --- a/springloaded/src/main/java/org/springsource/loaded/MethodInvokerRewriter.java +++ b/springloaded/src/main/java/org/...
Allow for class not yet loaded when rewriting invokedynamic
diff --git a/tests/test_substrate.py b/tests/test_substrate.py index <HASH>..<HASH> 100644 --- a/tests/test_substrate.py +++ b/tests/test_substrate.py @@ -828,7 +828,7 @@ class TestMAASAccountFromConfig(TestCase): config = get_maas_env().config with patch('subprocess.check_call', autospec=True) as cc_...
Correct check on MAASAccount types in test