hash
stringlengths
40
40
diff
stringlengths
131
114k
message
stringlengths
7
980
project
stringlengths
5
67
split
stringclasses
1 value
f511d2faa5f6e5a56161ff05abafb89bae6d975f
diff --git a/spec/config_spec.rb b/spec/config_spec.rb index <HASH>..<HASH> 100644 --- a/spec/config_spec.rb +++ b/spec/config_spec.rb @@ -3,17 +3,6 @@ require 'spec_helper' describe Confoog::Settings do subject { Confoog::Settings.new } - before(:all) do - # create an internal STDERR so we can still test thi...
Remove unused before/after from tests config_spec.rb
seapagan_confoog
train
4b2e9c8dd77f671dc25c1871cfee44ae7521395c
diff --git a/supernova/executable.py b/supernova/executable.py index <HASH>..<HASH> 100644 --- a/supernova/executable.py +++ b/supernova/executable.py @@ -86,6 +86,8 @@ def run_supernova(): check_supernova_conf(s) parser = argparse.ArgumentParser() + parser.add_argument('-x', '--executable', default='nov...
support running client commands other than nova
major_supernova
train
f391f8c797c7b26280d2d6261a1cf3cafaef8124
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -2,14 +2,13 @@ from setuptools import setup, find_packages setup( name='dirutility', - version='0.2.17', + version='0.2.18', packages=find_packages(), install_requires=[ 'tqdm', 'loopt...
Removed tkinter as a dependency.
mrstephenneal_dirutility
train
f619155c76f6edebdcfcbca9c7762f23b3c7a61d
diff --git a/src/lib/ops/teamOps.js b/src/lib/ops/teamOps.js index <HASH>..<HASH> 100644 --- a/src/lib/ops/teamOps.js +++ b/src/lib/ops/teamOps.js @@ -107,11 +107,11 @@ function makeDefaultUserAdmin (job, next) { } function removeTeams (job, next) { - const { teamIds, organizationId } = job + const { teamId, team...
return error on delete team only if specific team is not found (ignore descendants) - solves race conditions
nearform_udaru
train
a27725fb3f550adaa50fe7c8c75a574357d86947
diff --git a/packages/postcss-colormin/src/__tests__/index.js b/packages/postcss-colormin/src/__tests__/index.js index <HASH>..<HASH> 100644 --- a/packages/postcss-colormin/src/__tests__/index.js +++ b/packages/postcss-colormin/src/__tests__/index.js @@ -99,6 +99,10 @@ const tests = [{ message: 'should add extra s...
Pass through the "composes" property. Fixes <URL>
cssnano_cssnano
train
a6935f0b08b6dfb6b748e9614d3a30db4a060992
diff --git a/spec/rstruct_spec.rb b/spec/rstruct_spec.rb index <HASH>..<HASH> 100644 --- a/spec/rstruct_spec.rb +++ b/spec/rstruct_spec.rb @@ -19,7 +19,14 @@ describe Rstruct do c=Class.new(Object){ extend(Rstruct::ClassMethods) } c.should respond_to(:struct) c.should respond_to(:default_registry) + c...
abstract a new class for container types
emonti_rstruct
train
b6d14417c1dbf0c9323b85d095f26a6327fa2920
diff --git a/Makefile b/Makefile index <HASH>..<HASH> 100644 --- a/Makefile +++ b/Makefile @@ -69,7 +69,7 @@ test_suite: compile testdata @# newline in. @# Report expected failures if any! - @echo Expecting 1 test to fail in support of issue 55 + @#echo Expecting 1 test to fail in support of issue 55 # Run gui...
Got a few simple tests done and passing for line-polygon clipping
inasafe_inasafe
train
c988c42b51c652904b3d21f7afd53527472bb452
diff --git a/lib/test.js b/lib/test.js index <HASH>..<HASH> 100644 --- a/lib/test.js +++ b/lib/test.js @@ -387,7 +387,7 @@ Test.prototype.spawn = function spawnTest (cmd, args, options, name, extra) { return } - if (extra.skip) + if (extra.skip || extra.todo) return this.pass(name, extra) var star...
don't spawn() for todo tests
tapjs_node-tap
train
f39d0ff3fc5e3ddbb0021c42f8f1f796cd57474e
diff --git a/lib/ViewModels/SearchTabViewModel.js b/lib/ViewModels/SearchTabViewModel.js index <HASH>..<HASH> 100644 --- a/lib/ViewModels/SearchTabViewModel.js +++ b/lib/ViewModels/SearchTabViewModel.js @@ -2,7 +2,6 @@ /*global require,ga*/ var defaultValue = require('terriajs-cesium/Source/Core/defaultValue'); -va...
Fix jshint warning.
TerriaJS_terriajs
train
1444c483693316c896f9c8af1fea247fe80e07f4
diff --git a/lib/parse/object.rb b/lib/parse/object.rb index <HASH>..<HASH> 100644 --- a/lib/parse/object.rb +++ b/lib/parse/object.rb @@ -133,6 +133,10 @@ module Parse as_json.to_json(*a) end + def inspect + "#{@class_name}:#{@parse_object_id} #{super}" + end + # Update the fields of the ...
include class and id in inspect
adelevie_parse-ruby-client
train
ba47817c1d690f8b43e0634dc65fce9ad0fc1afe
diff --git a/src/Router.php b/src/Router.php index <HASH>..<HASH> 100644 --- a/src/Router.php +++ b/src/Router.php @@ -45,6 +45,25 @@ final class Router */ private $defaultReturnType; + + /** + * Translation array. + * Make sures about return type. + * @var array + */ + private static...
limit return types and define aliases of them.
selamiphp_router
train
fd447aea06e759b4ea9bbca52bb1019a22c97d3f
diff --git a/lib/dev.js b/lib/dev.js index <HASH>..<HASH> 100644 --- a/lib/dev.js +++ b/lib/dev.js @@ -73,6 +73,7 @@ module.exports = async function dev (sourceDir, cliOptions = {}) { } const compiler = webpack(config) + const host = cliOptions.host || options.siteConfig.host || '0.0.0.0' portfinder.basePor...
fix: use correct host in tip after the server has started (#<I>)
vuejs_vuepress
train
614c256adff24333678e962b15e19074483a27e3
diff --git a/lib/icecast-stack.js b/lib/icecast-stack.js index <HASH>..<HASH> 100644 --- a/lib/icecast-stack.js +++ b/lib/icecast-stack.js @@ -17,7 +17,11 @@ NO_METADATA_BYTE[0] = 0; */ function IcecastReadStack(stream, metaint, retainMetadata) { - StreamStack.call(this, stream); + StreamStack.call(this, stream,...
Update for StreamStack <I> API; don't re-emit on parent stream, that's BAD!
TooTallNate_node-icy
train
3647bf90ed6e4b3a73477f8c58e7fdf97cfa4db7
diff --git a/packages/victory-core/src/victory-util/wrapper.js b/packages/victory-core/src/victory-util/wrapper.js index <HASH>..<HASH> 100644 --- a/packages/victory-core/src/victory-util/wrapper.js +++ b/packages/victory-core/src/victory-util/wrapper.js @@ -235,15 +235,10 @@ export default { // if we have exp...
use Array.reduce for stack bin logic
FormidableLabs_victory
train
e0300123ee05ba1efb9b27517e18e5e34c84e655
diff --git a/lib/opal/cli.rb b/lib/opal/cli.rb index <HASH>..<HASH> 100644 --- a/lib/opal/cli.rb +++ b/lib/opal/cli.rb @@ -7,7 +7,7 @@ module Opal class CLI attr_reader :options, :file, :compiler_options, :evals, :load_paths, :argv, :output, :requires, :gems, :stubs, :verbose, :port, :preload, ...
Set $DEBUG to true when the flag is set by CLI
opal_opal
train
1e657546397f378285c9e7197ad9971e67003936
diff --git a/pw.py b/pw.py index <HASH>..<HASH> 100644 --- a/pw.py +++ b/pw.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -from __future__ import print_function +from __future__ import print_function, unicode_literals from collections import namedtuple from functools import partial import argparse @@ -40,6 +40,10 @@ def...
unicode strings should now work properly on both python 2/3
catch22_pw
train
d88266127b0f60f8baa1b7842388cbf7124410ef
diff --git a/build/visitors/lint.js b/build/visitors/lint.js index <HASH>..<HASH> 100644 --- a/build/visitors/lint.js +++ b/build/visitors/lint.js @@ -2,32 +2,50 @@ var jshint = require('jshint').JSHINT; var options = require("./options/lint-options.js"); var exclude = require("./options/lint-exclude.js"); +/** ...
JSHint visitor: ignore "confusing use of !"
ariatemplates_ariatemplates
train
1766a6bac007d132c21b024cacb96ebe434ff89e
diff --git a/src/Dexie.js b/src/Dexie.js index <HASH>..<HASH> 100644 --- a/src/Dexie.js +++ b/src/Dexie.js @@ -3101,7 +3101,7 @@ export default function Dexie(dbName, options) { try { fn(); } catch (ex) { - onerror(ex); + onerror && onerror(ex); } } @...
SecurityError when storage is disabled #<I>
dfahlander_Dexie.js
train
5c858f7ff38820aff6b68d2ddb128d38554add74
diff --git a/packages/bs-loader/index.js b/packages/bs-loader/index.js index <HASH>..<HASH> 100644 --- a/packages/bs-loader/index.js +++ b/packages/bs-loader/index.js @@ -50,10 +50,10 @@ function transformSrc(moduleDir, src) { function runBsb(buildDir, compilation) { if (compilation.__HAS_RUN_BSB__) return Promis...
set HAS_RUN_BSB after bsb is done. Before, you set `__HAS_RUN_BSB__` immediatly to true, so when you enter multiple times in `runBsb` you might resolve too soon, resulting in an error, because the compilation hasn't actually been done.
rrdelaney_bs-loader
train
dccd097fefeafbd6f20efc3775f143f6c03b6018
diff --git a/lib/register/collector.rb b/lib/register/collector.rb index <HASH>..<HASH> 100644 --- a/lib/register/collector.rb +++ b/lib/register/collector.rb @@ -2,14 +2,14 @@ module Register # collect anything that is in the space but and reachable from init module Collector - def collect_space + def s...
remove collecting from the machine use as stand alone module
ruby-x_rubyx
train
8b269c2fa0b566c4ff6194470f36fc981e2e94e9
diff --git a/src/draw/update.js b/src/draw/update.js index <HASH>..<HASH> 100644 --- a/src/draw/update.js +++ b/src/draw/update.js @@ -36,11 +36,11 @@ d3plus.draw.update = function(vars) { if (d3plus.apps[vars.type.value].zoom) { vars.g.zoom .datum(vars) - .call(d3.behavior.zoom().on("zoom",d3plus.z...
made d3.behavior.zoom a global variable
alexandersimoes_d3plus
train
3580ef98ffb536fa3d48c36e9ef9397fb290923d
diff --git a/phpsec.class.php b/phpsec.class.php index <HASH>..<HASH> 100644 --- a/phpsec.class.php +++ b/phpsec.class.php @@ -597,8 +597,7 @@ class phpsec { private static function cryptoInit() { /* TODO: Do some checks to see if our PHP installation supports the algos. */ - /* Open the cipher. */ - se...
Added decryption. Also some small changes to the crypto stuff.
phpsec_phpSec
train
356d347e1ddc75f6b73a2851f283e0a98aa14e3b
diff --git a/synergy/scheduler/state_machine_continuous.py b/synergy/scheduler/state_machine_continuous.py index <HASH>..<HASH> 100644 --- a/synergy/scheduler/state_machine_continuous.py +++ b/synergy/scheduler/state_machine_continuous.py @@ -126,6 +126,8 @@ class StateMachineContinuous(AbstractStateMachine): ...
#<I> reworking tree_node, introducing explicit RootNode
mushkevych_scheduler
train
62e87c8879168248a9ec983926c56cb25b11df75
diff --git a/permission/permitems.go b/permission/permitems.go index <HASH>..<HASH> 100644 --- a/permission/permitems.go +++ b/permission/permitems.go @@ -17,7 +17,11 @@ var ( PermAppCreate = PermissionRegistry.get("app.create") PermAppDelete = PermissionRegistry.get("a...
permission: add permission items for deployment kinds
tsuru_tsuru
train
c9accb694ce7d0d4033e9a1a7bf67e4342856a28
diff --git a/spinoff/actor/_actor.py b/spinoff/actor/_actor.py index <HASH>..<HASH> 100644 --- a/spinoff/actor/_actor.py +++ b/spinoff/actor/_actor.py @@ -21,7 +21,7 @@ from spinoff.actor.events import ( UnhandledError, Events, UnhandledMessage, DeadLetter, ErrorIgnored, TopLevelActorTerminated, ErrorReportingFail...
Added logging of inner exceptions with CreateFailed and BadSupervision (or any other WrappingException)
eallik_spinoff
train
6fa732766de6bdce84af837165e8f4470aacab92
diff --git a/pyt/cfg.py b/pyt/cfg.py index <HASH>..<HASH> 100644 --- a/pyt/cfg.py +++ b/pyt/cfg.py @@ -49,6 +49,11 @@ class Node(object): self.outgoing.append(successor) successor.ingoing.append(self) + def connect_predecessors(self, predecessors): + for n in predecessors: + sel...
Added method that connects a list of predecessors
python-security_pyt
train
af1ff0e5c712a0c50b5ece3e302e97c7b14ad591
diff --git a/qtpylib/broker.py b/qtpylib/broker.py index <HASH>..<HASH> 100644 --- a/qtpylib/broker.py +++ b/qtpylib/broker.py @@ -68,11 +68,8 @@ class Broker(): # ----------------------------------- # connect to IB self.ibConn = ezibpy.ezIBpy() - self.ibConn.connect(clientId=int(ibcli...
moved ibConn.connect() to own method
ranaroussi_qtpylib
train
8f9cab652672efd7895d465e845c0441c470c75c
diff --git a/salt/returners/sentry_return.py b/salt/returners/sentry_return.py index <HASH>..<HASH> 100644 --- a/salt/returners/sentry_return.py +++ b/salt/returners/sentry_return.py @@ -52,7 +52,6 @@ from salt.ext import six try: from raven import Client - from raven.transport.http import HTTPTransport ...
[sentry_returner] don't force transport config transport can be configured in the DSN as an example this configuration issue with SNI servers <URL>
saltstack_salt
train
07b7eccd9812f556e59ce864ec936a76bf4bde08
diff --git a/src/components/select/QSelect.js b/src/components/select/QSelect.js index <HASH>..<HASH> 100644 --- a/src/components/select/QSelect.js +++ b/src/components/select/QSelect.js @@ -308,7 +308,7 @@ export default { 'class': this.alignClass }, this.selectedOptions.map(opt => { return h(...
QSelect: use opt.value as key for chips (#<I>)
quasarframework_quasar
train
0330e53002e5f5f323b21aae7c88d764d39bb411
diff --git a/lib/datasource-executor.js b/lib/datasource-executor.js index <HASH>..<HASH> 100644 --- a/lib/datasource-executor.js +++ b/lib/datasource-executor.js @@ -119,21 +119,7 @@ function executeDst(api, request, dst) { } else { filterPartNew.value = []; ...
datasource-executor: fix storedType casting when using filters
godmodelabs_flora
train
772537299a04d70fccc4d2eb71dd0679165aa31c
diff --git a/test/test_book.rb b/test/test_book.rb index <HASH>..<HASH> 100644 --- a/test/test_book.rb +++ b/test/test_book.rb @@ -75,10 +75,10 @@ class BookTest < Test::Unit::TestCase Dir.mktmpdir do |dir| File.open(File.join(dir, 'PARAMS'), 'w') do |o| o.puts 'WORDS_FILE = "x_words_file"' - ...
added tests for ReVIEW::Parameters
kmuto_review
train
76fca50875954d744a38c8a708d75bcdaa5f5382
diff --git a/lib/codemirror.js b/lib/codemirror.js index <HASH>..<HASH> 100644 --- a/lib/codemirror.js +++ b/lib/codemirror.js @@ -417,6 +417,7 @@ var CodeMirror = (function() { var pos = clipPos({line: change.start + change.old.length - 1, ch: editEnd(replaced[replaced.length-1], c...
Ensure the input field is updated afer an undo/redo
codemirror_CodeMirror
train
a85da70fb4a230ca7d473ffee6626877592e1ae9
diff --git a/lib/bandwidth/client.rb b/lib/bandwidth/client.rb index <HASH>..<HASH> 100644 --- a/lib/bandwidth/client.rb +++ b/lib/bandwidth/client.rb @@ -40,7 +40,7 @@ module Bandwidth Faraday.new(api_endpoint) { |faraday| faraday.basic_auth(api_token, api_secret) faraday.headers['Accept...
Update client.rb Changed `-` to `/` in user agent
Bandwidth_ruby-bandwidth
train
012c3dab9501b3588f61956b320108cd9241f7b9
diff --git a/staging/src/k8s.io/apimachinery/pkg/watch/watch.go b/staging/src/k8s.io/apimachinery/pkg/watch/watch.go index <HASH>..<HASH> 100644 --- a/staging/src/k8s.io/apimachinery/pkg/watch/watch.go +++ b/staging/src/k8s.io/apimachinery/pkg/watch/watch.go @@ -32,8 +32,8 @@ type Interface interface { Stop() // ...
Clarify comment on Watch::ResultChan()
kubernetes_kubernetes
train
e250dd95b72a094c610c0e0eadf2540f037d1cf0
diff --git a/lib/Context.js b/lib/Context.js index <HASH>..<HASH> 100644 --- a/lib/Context.js +++ b/lib/Context.js @@ -28,6 +28,9 @@ class Context extends EventEmitter { this.controllerName = null; this.actionName = null; + // lets keep the ref for the socket, prevents + // the server from shutting do...
added ref/unref support to sockets, more graceful shutdown
SandJS_http
train
7869f15c566dc8910960cff4eb7df83961a2d3ab
diff --git a/src/Product/Model/Product.php b/src/Product/Model/Product.php index <HASH>..<HASH> 100644 --- a/src/Product/Model/Product.php +++ b/src/Product/Model/Product.php @@ -158,6 +158,27 @@ class Product implements ProductInterface } /** + * Checks if the product is available at a certain date + ...
Added helper methods to check availability
lmammino_e-foundation
train
723dac32adad1610d9a2fcdb43bd412f5fb19317
diff --git a/dist/pipe.js b/dist/pipe.js index <HASH>..<HASH> 100644 --- a/dist/pipe.js +++ b/dist/pipe.js @@ -2531,7 +2531,7 @@ Pagelet.prototype.broadcast = function broadcast(event) { this.emit.apply(this, arguments); this.pipe.emit.apply(this.pipe, [ this.name +'::'+ event, - this.pipe + this ]....
[minor] Emit with a reference to pagelet
bigpipe_bigpipe.js
train
5585a455c055c41159c7c78d39c1567b968b26be
diff --git a/src/Charcoal/App/App.php b/src/Charcoal/App/App.php index <HASH>..<HASH> 100644 --- a/src/Charcoal/App/App.php +++ b/src/Charcoal/App/App.php @@ -197,17 +197,16 @@ class App extends SlimApp implements $this->setupMiddlewares(); } + /** + * @return void + */ public function s...
Simplify module loading. It's a deprecated feature used only by charcoal-admin.
locomotivemtl_charcoal-app
train
b77636ab5da7afa5657a5c08126baa0d05f86004
diff --git a/skorch/tests/test_net.py b/skorch/tests/test_net.py index <HASH>..<HASH> 100644 --- a/skorch/tests/test_net.py +++ b/skorch/tests/test_net.py @@ -16,7 +16,8 @@ import torch from torch import nn import torch.nn.functional as F -from skorch.net import to_numpy +from skorch.utils import to_numpy +from sko...
Add a test for forward method.
skorch-dev_skorch
train
1a1dd13829aa70d0490b07485080ad6d75924cc0
diff --git a/CHANGELOG.md b/CHANGELOG.md index <HASH>..<HASH> 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,7 @@ ### Bugs fixed * [#155](https://github.com/bbatsov/rubocop/issues/155) 'Do not use semicolons to terminate expressions.' is not implemented correctly +* `OpMethod` now handles definition of una...
`OpMethod` now handles definition of unary operators without crashing.
rubocop-hq_rubocop
train
54733ee2ed68743a10ef481a42778c63427cdf03
diff --git a/libdokan/emptyfs.go b/libdokan/emptyfs.go index <HASH>..<HASH> 100644 --- a/libdokan/emptyfs.go +++ b/libdokan/emptyfs.go @@ -19,35 +19,36 @@ func (t emptyFile) Cleanup(fi *dokan.FileInfo) { func (t emptyFile) CloseFile(*dokan.FileInfo) { } func (t emptyFile) SetEndOfFile(fi *dokan.FileInfo, length int6...
libdokan: return ErrAccessDenied by default
keybase_client
train
aaa8a5aa6d7ee34cfd9a5e50d4c45e0d927c8190
diff --git a/internal/core/metadata/rest_command.go b/internal/core/metadata/rest_command.go index <HASH>..<HASH> 100644 --- a/internal/core/metadata/rest_command.go +++ b/internal/core/metadata/rest_command.go @@ -95,7 +95,7 @@ func restUpdateCommand(w http.ResponseWriter, r *http.Request) { // Loop through matched...
#<I>: Fix issue where duplicate commands were being allowed.
edgexfoundry_edgex-go
train
92813d8583ebf0fdd075f81a62b581f6fd55ec0c
diff --git a/src/arcrest/manageorg/_content.py b/src/arcrest/manageorg/_content.py index <HASH>..<HASH> 100644 --- a/src/arcrest/manageorg/_content.py +++ b/src/arcrest/manageorg/_content.py @@ -2035,7 +2035,7 @@ class UserContent(BaseAGOLClass): params['buildInitialCache'] = buildIntialCache if p...
fixed issue where log should have been logs
Esri_ArcREST
train
0891761692a8ec9ee3080fbebbfd01a5bd7d327c
diff --git a/modules/social_features/social_search/src/EventSubscriber/RedirectSubscriber.php b/modules/social_features/social_search/src/EventSubscriber/RedirectSubscriber.php index <HASH>..<HASH> 100644 --- a/modules/social_features/social_search/src/EventSubscriber/RedirectSubscriber.php +++ b/modules/social_feature...
Issue #<I> by epapaniko, Ressinel, ribel: Search form submit redirects to the wrong path when the installation is under a subdirectory. (#<I>)
goalgorilla_open_social
train
95886008618e375344e718df477cb8124a4eb998
diff --git a/src/main/java/de/jfachwert/pruefung/exception/LocalizedValidationException.java b/src/main/java/de/jfachwert/pruefung/exception/LocalizedValidationException.java index <HASH>..<HASH> 100644 --- a/src/main/java/de/jfachwert/pruefung/exception/LocalizedValidationException.java +++ b/src/main/java/de/jfachwer...
LocalizedValidationException generalized
oboehm_jfachwert
train
362681949bb4107129b32abbb6a90c3b3463a23e
diff --git a/methods/moving-average-convergence-divergence.js b/methods/moving-average-convergence-divergence.js index <HASH>..<HASH> 100644 --- a/methods/moving-average-convergence-divergence.js +++ b/methods/moving-average-convergence-divergence.js @@ -52,7 +52,7 @@ TradingMethod.prototype.update = function (candle) ...
calc MACD over close instead of VWP
askmike_gekko
train
b1e03851587c9ed4d6a061787f41975817729200
diff --git a/src/scripts/utils/upload.js b/src/scripts/utils/upload.js index <HASH>..<HASH> 100644 --- a/src/scripts/utils/upload.js +++ b/src/scripts/utils/upload.js @@ -31,7 +31,7 @@ let upload = { request.upload(req.url, { fields: { name: req.file.relativePath, - ...
No longer use tags but server errs if they're not passed
OpenNeuroOrg_openneuro
train
1a44e25ffa2714fd4f4107df956e4d27e9fd8717
diff --git a/lib/testWithSpectron.js b/lib/testWithSpectron.js index <HASH>..<HASH> 100644 --- a/lib/testWithSpectron.js +++ b/lib/testWithSpectron.js @@ -1,5 +1,4 @@ const execa = require('execa') -const Application = require('spectron').Application const electronPath = require('electron') const merge = require('lo...
fix(testWithSpectron): don't import spectron
nklayman_vue-cli-plugin-electron-builder
train
52f8eadef0375e71a94e2b9ad370389d4b7494ae
diff --git a/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/AbstractGremlinTest.java b/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/AbstractGremlinTest.java index <HASH>..<HASH> 100644 --- a/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/AbstractGremlinTest.java +++ b/gremlin-test/src/main/...
Changed output for failed assumption in tests to use Graph as opposed to GraphTraversalContext.
apache_tinkerpop
train
706eab74faab652b2e709858b9b564c2df5b065b
diff --git a/requirements.txt b/requirements.txt index <HASH>..<HASH> 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,4 +2,4 @@ tornado>=4.2.1 redis>=2.10.5 pytest>=3.0.1 pytest-cov>=2.3.1 -pytest-tornado>=0.4.4 +pytest-tornado>=0.4.5 diff --git a/tests/test_event_source.py b/tests/test_event_source.py in...
Update tests for pytest <I>
mivade_tornadose
train
81c8b871e5cc5b5fde11479844e5a58c21f1db2b
diff --git a/tests/api_test.js b/tests/api_test.js index <HASH>..<HASH> 100644 --- a/tests/api_test.js +++ b/tests/api_test.js @@ -272,6 +272,7 @@ sre.ApiTest.prototype.testToDescription = function() { * Test for semantic tree API. */ sre.ApiTest.prototype.testToEnriched = function() { + var post = function(x) {r...
Adapts api tests for enriched to use toString postprocessing.
zorkow_speech-rule-engine
train
a52c4bce6689b5b5255fbd1ea905cd525169e3c0
diff --git a/builtin/providers/azure/resource_azure_sql_database_server_firewall_rule.go b/builtin/providers/azure/resource_azure_sql_database_server_firewall_rule.go index <HASH>..<HASH> 100644 --- a/builtin/providers/azure/resource_azure_sql_database_server_firewall_rule.go +++ b/builtin/providers/azure/resource_azur...
provider/azure: Don't delete firewall rules on non-existent servers
hashicorp_terraform
train
b98754787cc152d218cdf1e048397b018b5fa1fa
diff --git a/salt/wheel/__init__.py b/salt/wheel/__init__.py index <HASH>..<HASH> 100644 --- a/salt/wheel/__init__.py +++ b/salt/wheel/__init__.py @@ -14,6 +14,7 @@ import salt.payload import salt.utils import salt.exceptions from salt.utils.error import raise_error +from salt.utils.event import tagify class Wh...
Added a cmd_sync method to WheelClient This matches the behavior and semantics of the RunnerClient() method of the same name.
saltstack_salt
train
83f249bdd359d39d69d9e7881fdf68eec49b5c91
diff --git a/gwpy/cli/timeseries.py b/gwpy/cli/timeseries.py index <HASH>..<HASH> 100644 --- a/gwpy/cli/timeseries.py +++ b/gwpy/cli/timeseries.py @@ -99,9 +99,9 @@ class TimeSeries(CliProduct): strt += x0 if stop < 1e8: stop += x0 - b = max(0, (...
cli/timeseries.py: search for max forces vaues to int to sto numpy from ccomplaining
gwpy_gwpy
train
e7b0e129abfed0fdd11c2e85d53ca29893ad39af
diff --git a/src/ActiveRecord.php b/src/ActiveRecord.php index <HASH>..<HASH> 100644 --- a/src/ActiveRecord.php +++ b/src/ActiveRecord.php @@ -207,26 +207,26 @@ class ActiveRecord extends BaseActiveRecord return $result === false ? false : true; } - public function batchPerformScenario($defaultScenar...
added default to $data in batch/Perform/Scenario()
hiqdev_yii2-hiart
train
308fd2a5438adcd58253f35f2e7e7927464682af
diff --git a/lib/run-query.js b/lib/run-query.js index <HASH>..<HASH> 100644 --- a/lib/run-query.js +++ b/lib/run-query.js @@ -92,11 +92,13 @@ clients.postgres = function (query, connection, callback) { // This will be configurable if people need more records for some reason cursor.read(connec...
retry failed pg-cursor queries using regular method
rickbergfalk_sqlpad
train
cc43965809693dd169b079a38cacae6a6a75b095
diff --git a/requirements.php b/requirements.php index <HASH>..<HASH> 100644 --- a/requirements.php +++ b/requirements.php @@ -26,85 +26,85 @@ $requirementsChecker = new YiiRequirementChecker(); /** * Adjust requirements according to your application specifics. */ -$requirements = [ +$requirements = array( // Da...
reverted short array syntax in requirements.php fixes #<I>
yiisoft_yii2-app-advanced
train
8ba146071dfbc59adb918137f955e8bf8dbc3676
diff --git a/src/Validator/Rules/OverlappingFieldsCanBeMerged.php b/src/Validator/Rules/OverlappingFieldsCanBeMerged.php index <HASH>..<HASH> 100644 --- a/src/Validator/Rules/OverlappingFieldsCanBeMerged.php +++ b/src/Validator/Rules/OverlappingFieldsCanBeMerged.php @@ -426,7 +426,7 @@ class OverlappingFieldsCanBeMerge...
Fix wrong length being used in validator.
webonyx_graphql-php
train
905ea032f6a9a5467731474f5083916263ff0199
diff --git a/src/android/Sms.java b/src/android/Sms.java index <HASH>..<HASH> 100644 --- a/src/android/Sms.java +++ b/src/android/Sms.java @@ -27,34 +27,38 @@ public class Sms extends CordovaPlugin { public boolean execute(String action, JSONArray args, final CallbackContext callbackContext) throws JSONException { ...
Update Sms.java Placed the working part of the execute method into a Cordova getThreadPool Runnable object so that it doesn't hog the main thread
cordova-sms_cordova-sms-plugin
train
d289f8d65e9e9618cecbb93bc51e33a7e2ea7fdb
diff --git a/src/test/java/com/arangodb/ArangoSearchTest.java b/src/test/java/com/arangodb/ArangoSearchTest.java index <HASH>..<HASH> 100644 --- a/src/test/java/com/arangodb/ArangoSearchTest.java +++ b/src/test/java/com/arangodb/ArangoSearchTest.java @@ -334,7 +334,9 @@ public class ArangoSearchTest extends BaseTest { ...
fixed assertions on arangosearch numbers
arangodb_arangodb-java-driver
train
228cd62f7c32fba07f8b9bc9204dd1cd0dfd09f6
diff --git a/alot/widgets.py b/alot/widgets.py index <HASH>..<HASH> 100644 --- a/alot/widgets.py +++ b/alot/widgets.py @@ -128,9 +128,14 @@ class ThreadlineWidget(urwid.AttrMap): cols.append(('fixed', len(authorsstring), self.authors_w)) if self.thread: - subjectstring = self.thread.get_s...
sanitize subject string in ThreadlineWidgets should fix issues #<I>, #<I>
pazz_alot
train
e04f219948ce7b7075423026244ebfafa00b3d3e
diff --git a/src/Psalm/Type.php b/src/Psalm/Type.php index <HASH>..<HASH> 100644 --- a/src/Psalm/Type.php +++ b/src/Psalm/Type.php @@ -110,9 +110,13 @@ abstract class Type ?string $namespace, array $aliased_classes, ?string $this_class, - bool $allow_self = false + bool $allow_s...
return static instead of self when static context detected (#<I>) * return this instead of self when static context detected * replace $this by static
vimeo_psalm
train
a56b16a1b10416ad4768b1a69690669dcd69126f
diff --git a/lib/URL-impl.js b/lib/URL-impl.js index <HASH>..<HASH> 100644 --- a/lib/URL-impl.js +++ b/lib/URL-impl.js @@ -143,8 +143,12 @@ exports.implementation = class URLImpl { if (this._url.host === null || this._url.cannotBeABaseURL || this._url.scheme === "file") { return; } - - usm.basicURLP...
Apply new spec change making port = "" a non-noop.
jsdom_whatwg-url
train
ce8cb7e0036fca4a1aae22611dc98ba28047740f
diff --git a/src/rename-app.js b/src/rename-app.js index <HASH>..<HASH> 100755 --- a/src/rename-app.js +++ b/src/rename-app.js @@ -13,6 +13,8 @@ var builder = new xml2js.Builder({ module.exports = function (context) { + if(context.opts.platforms.indexOf('android') === -1) return; + console.log('Attempting ...
Added a check so the script only runs for the android platform
blakgeek_cordova-plugin-app-name
train
70fa7c34b2a2fc47cf4d5aebc227c82e946d1e36
diff --git a/src/coderep.js b/src/coderep.js index <HASH>..<HASH> 100644 --- a/src/coderep.js +++ b/src/coderep.js @@ -189,13 +189,14 @@ export class Empty extends CodeRep { } export class Token extends CodeRep { - constructor(token) { + constructor(token, isRegExp = false) { super(); this.token = token...
Fix #<I>: codegen 'a/i' as 'a/i', not 'a/ i'
shapesecurity_shift-codegen-js
train
1d59a735559f93f52bb7bd70e80c800a81825b3d
diff --git a/core/renderMiddleware.js b/core/renderMiddleware.js index <HASH>..<HASH> 100644 --- a/core/renderMiddleware.js +++ b/core/renderMiddleware.js @@ -492,6 +492,12 @@ function writeBody(req, res, context, start, page) { // I learned how to chain an array of promises from http://bahmutov.calepin.co/chaining-p...
Handle exceptions during timeoutRenderPromise, too These were previously getting swallowed by Q, and causing the request to hang.
redfin_react-server
train
8d7e5b904a24b08210b90b93c57a0004eea717cf
diff --git a/selendroid-server/src/main/java/io/selendroid/server/model/internal/AbstractNativeElementContext.java b/selendroid-server/src/main/java/io/selendroid/server/model/internal/AbstractNativeElementContext.java index <HASH>..<HASH> 100644 --- a/selendroid-server/src/main/java/io/selendroid/server/model/internal...
Using more defensive programming to avoid NPE. #<I>
selendroid_selendroid
train
f0efd69c23e5a2081b30d885d475f3c7fb731901
diff --git a/start_manager/node_starter/starter_test.go b/start_manager/node_starter/starter_test.go index <HASH>..<HASH> 100644 --- a/start_manager/node_starter/starter_test.go +++ b/start_manager/node_starter/starter_test.go @@ -147,6 +147,14 @@ var _ = Describe("Starter", func() { }) Context("error handling"...
Add test for bad state in StartNodeFromState [#<I>]
cloudfoundry_mariadb_ctrl
train
db8ea452959a7d7fc1dbdf810756aae517474919
diff --git a/src/Composer/Autoload/ClassMapGenerator.php b/src/Composer/Autoload/ClassMapGenerator.php index <HASH>..<HASH> 100644 --- a/src/Composer/Autoload/ClassMapGenerator.php +++ b/src/Composer/Autoload/ClassMapGenerator.php @@ -272,11 +272,18 @@ class ClassMapGenerator // This is an XHP clas...
Fix enum parsing when the syntax is "enum foo:string {}" without space between name and type, fixes #<I>
composer_composer
train
b5ba4dc6c10f61f0ec5d8931fd5b87179dfd7a60
diff --git a/client/signup/config/flows.js b/client/signup/config/flows.js index <HASH>..<HASH> 100644 --- a/client/signup/config/flows.js +++ b/client/signup/config/flows.js @@ -118,6 +118,13 @@ const flows = { lastModified: '2016-01-28' }, + newsite: { + steps: [ 'survey', 'themes-headstart', 'domains-with-th...
Signup: Add a new Headstart flow with the vertical survey. This flow will be assigned to EN users clicking "Create Website" on the home page.
Automattic_wp-calypso
train
9a1c42fab15923f2196caedd6eee4281a599c360
diff --git a/lib/runner/extensions/event.command.js b/lib/runner/extensions/event.command.js index <HASH>..<HASH> 100644 --- a/lib/runner/extensions/event.command.js +++ b/lib/runner/extensions/event.command.js @@ -59,6 +59,7 @@ module.exports = { } // @todo - remove this when chrome app and electro...
Hooked up the Error event
postmanlabs_postman-runtime
train
f70961d2081371006a5300588bc6ca308bc7e8e3
diff --git a/source/rafcon/gui/interface.py b/source/rafcon/gui/interface.py index <HASH>..<HASH> 100644 --- a/source/rafcon/gui/interface.py +++ b/source/rafcon/gui/interface.py @@ -102,7 +102,7 @@ def create_folder(query, default_name=None, default_path=None): :param str query: Prompt asking the user for a speci...
fix(interface): do now use '\' is docstrings, replace by '/'
DLR-RM_RAFCON
train
796ac00039a69c0d0f424a7ae0792794012ba06d
diff --git a/Swat/SwatCascadeFlydown.php b/Swat/SwatCascadeFlydown.php index <HASH>..<HASH> 100644 --- a/Swat/SwatCascadeFlydown.php +++ b/Swat/SwatCascadeFlydown.php @@ -11,16 +11,17 @@ require_once 'Swat/SwatFlydown.php'; */ class SwatCascadeFlydown extends SwatFlydown { - + // {{{ public properties + /** *...
This documentation was added before the options array changed type so some of it may be out of date. svn commit r<I>
silverorange_swat
train
5987bc02531f323ee6079c766bd0bfd262f51833
diff --git a/admin.php b/admin.php index <HASH>..<HASH> 100644 --- a/admin.php +++ b/admin.php @@ -535,7 +535,7 @@ if ( I18N::translate('Your web server is using PHP version %s, which is no longer receiving security updates. You should upgrade to a later version as soon as possible.', PHP_VERSION) . '<br><a href=...
It is always later than July <I>
fisharebest_webtrees
train
9f8fe36df16ad6ddf0d3f23c3ac03fac54ca2bfd
diff --git a/pysoa/test/plugins/pytest.py b/pysoa/test/plugins/pytest.py index <HASH>..<HASH> 100644 --- a/pysoa/test/plugins/pytest.py +++ b/pysoa/test/plugins/pytest.py @@ -16,6 +16,14 @@ from _pytest._code.source import Source from _pytest.mark import MARK_GEN +try: + import pyparsing + TEST_PLANS_ENABLED...
[PATCH] Fix optionality of test plans Test plans are supposed to be optional. But the failure to install tests plans makes the PyTest plugin fail to load. We can't make entry points (the plugin loading mechansim) optional, so we have to make the plugin do nothing if test plans aren't installed.
eventbrite_pysoa
train
4fd2f1c951a9ddf40c5a09232bb266b63d333f0c
diff --git a/runtimes/client-runtime/src/main/java/com/microsoft/rest/ServiceResponseBuilder.java b/runtimes/client-runtime/src/main/java/com/microsoft/rest/ServiceResponseBuilder.java index <HASH>..<HASH> 100644 --- a/runtimes/client-runtime/src/main/java/com/microsoft/rest/ServiceResponseBuilder.java +++ b/runtimes/c...
Fix error constructor call in mapper adapter
Azure_azure-sdk-for-java
train
abd843d7a784c82afff08bd69f3c0b89e0ba32c0
diff --git a/lib/rest-graph.rb b/lib/rest-graph.rb index <HASH>..<HASH> 100644 --- a/lib/rest-graph.rb +++ b/lib/rest-graph.rb @@ -11,13 +11,14 @@ begin require 'rack' rescue LoadError; end -begin - require 'json' -rescue LoadError +# pick a json gem if available +%w[ yajl/json_gem json json_pure ].each{ |json| ...
rest-graph.rb: try to pick yajl/json_gem first.
godfat_rest-core
train
d663d9235798704380be0e800a47de322199c250
diff --git a/auth/shibboleth/classes/helper.php b/auth/shibboleth/classes/helper.php index <HASH>..<HASH> 100644 --- a/auth/shibboleth/classes/helper.php +++ b/auth/shibboleth/classes/helper.php @@ -93,13 +93,12 @@ class helper { foreach ($sessions as $session) { // Get user session from DB. - ...
MDL-<I> auth_shibboleth: consistent session parsing during logout.
moodle_moodle
train
709547f98ad6ab9a021d68126913c29027f38e84
diff --git a/client/lxd_instances.go b/client/lxd_instances.go index <HASH>..<HASH> 100644 --- a/client/lxd_instances.go +++ b/client/lxd_instances.go @@ -352,6 +352,7 @@ func (r *ProtocolLXD) CopyInstance(source InstanceServer, instance api.Instance, req := api.InstancesPost{ Name: instance.Name, Instan...
client/lxd/instances: Sends instance type when copying instances
lxc_lxd
train
44d82238e898bacdeffd39f60391f5814f5fa78c
diff --git a/lib/geocoder.js b/lib/geocoder.js index <HASH>..<HASH> 100644 --- a/lib/geocoder.js +++ b/lib/geocoder.js @@ -1,44 +1,124 @@ -var request = require('superagent') +var _ = require('underscore') + + , request = require('superagent') , geocache = require('./geocache') - , defaults = { + , apiUrl = '...
Added helper properties for city and province/ state based on country
bigmountainideas_google-geocoder
train
f8a83ccb63ccde535bcef9e75cff3faf29455e07
diff --git a/spyder/plugins/editor.py b/spyder/plugins/editor.py index <HASH>..<HASH> 100644 --- a/spyder/plugins/editor.py +++ b/spyder/plugins/editor.py @@ -1238,7 +1238,7 @@ class Editor(SpyderPluginWidget): self.set_last_focus_editorstack(self, editorstack) editorstack.set_closable( len(s...
Fix first error that prevented to split the Editor
spyder-ide_spyder
train
32333ab375bc0cd7299c94c710a850591d5f89b8
diff --git a/spMQTT.class.php b/spMQTT.class.php index <HASH>..<HASH> 100644 --- a/spMQTT.class.php +++ b/spMQTT.class.php @@ -82,7 +82,7 @@ class spMQTT extends spMQTTBase{ $errno, $errstr, 60, - STREAM_CLIENT_CONNECT | STREAM_CLIENT_PERSISTENT, + STREAM_CLI...
remove persistent connection, check socket before read/write
sskaje_mqtt
train
4ef21d547c6d0f3c07caaf1caffb9bd3be2e4141
diff --git a/test/test.js b/test/test.js index <HASH>..<HASH> 100644 --- a/test/test.js +++ b/test/test.js @@ -11,7 +11,7 @@ var dependencyGraph = require("../lib/graph/make_graph"), path = require('path'), rmdir = require('rimraf'), pluginify = require("../lib/build/pluginifier"), - fs = require('fs'), + fs = re...
Recursively make directories in tests This fixes a test that was pluginifying to an `out/` directory that doesn't exist. Using `fs-extra` fixes this.
stealjs_steal-tools
train
2e1cf1ffc3b95c2ee41f855ce932f21be9d84f72
diff --git a/lib/core/plugin/base.rb b/lib/core/plugin/base.rb index <HASH>..<HASH> 100644 --- a/lib/core/plugin/base.rb +++ b/lib/core/plugin/base.rb @@ -242,9 +242,10 @@ class Base < Core if config.delete(:i18n, true) plugin_namespace = self.class.namespace if self.class.respond_to?(:namespace) + ...
Adding operation prefixing to the localization ids in the base plugin class.
coralnexus_nucleon
train
4df8318b9d66ef3c155e384b92d6f152349e62ce
diff --git a/lib/nominet-epp/operations/poll.rb b/lib/nominet-epp/operations/poll.rb index <HASH>..<HASH> 100644 --- a/lib/nominet-epp/operations/poll.rb +++ b/lib/nominet-epp/operations/poll.rb @@ -35,7 +35,9 @@ module NominetEPP return if resp.code != 1301 || resp.msgQ['count'] == '0' return [re...
Allow returning false in #poll block to break poll loop.
m247_nominet-epp
train
78825afd926e1eab9a4e985d3d71835b38fe835e
diff --git a/gorb-docker-link/main.go b/gorb-docker-link/main.go index <HASH>..<HASH> 100644 --- a/gorb-docker-link/main.go +++ b/gorb-docker-link/main.go @@ -173,7 +173,7 @@ func invokeFunc(vs, rs string, ports []gdc.APIPort, fn portAction) []error { } // Mangle the VS name. - vsID := fmt.Sprintf("%s_%d_%s", ...
[GDL] Use a different separator for name mangling.
kobolog_gorb
train
635df4f5e3e0a79b7747d109e915564ccc85e1d0
diff --git a/src/Gzero/Core/Middleware/Init.php b/src/Gzero/Core/Middleware/Init.php index <HASH>..<HASH> 100644 --- a/src/Gzero/Core/Middleware/Init.php +++ b/src/Gzero/Core/Middleware/Init.php @@ -36,7 +36,7 @@ class Init { public function handle($request, Closure $next) { if (str_contains($request...
Init Middleware - set redirect code to <I>
GrupaZero_cms
train
5cfcfbbe5d6cb27f370ee385ea5506d59cf575e4
diff --git a/spec/graphql/schema/validator/required_validator_spec.rb b/spec/graphql/schema/validator/required_validator_spec.rb index <HASH>..<HASH> 100644 --- a/spec/graphql/schema/validator/required_validator_spec.rb +++ b/spec/graphql/schema/validator/required_validator_spec.rb @@ -5,13 +5,22 @@ require_relative "....
Use blank message when Rails is loaded in tests
rmosolgo_graphql-ruby
train
514f8e02a9cf3281a14141fa291d093b2b219162
diff --git a/spec/nexpose/connection/site_spec.rb b/spec/nexpose/connection/site_spec.rb index <HASH>..<HASH> 100644 --- a/spec/nexpose/connection/site_spec.rb +++ b/spec/nexpose/connection/site_spec.rb @@ -18,7 +18,7 @@ describe Nexpose::Connection, :with_api_login do let(:basic_site) do Nexpose::Site....
Use Site#included_addresses over Site#included_scan_targets[:addresses]
rapid7_nexpose-client
train
4f8d98ce7cae7059c1a945d696a49897605dccfc
diff --git a/src/ca/eandb/jdcp/hub/JobHub.java b/src/ca/eandb/jdcp/hub/JobHub.java index <HASH>..<HASH> 100644 --- a/src/ca/eandb/jdcp/hub/JobHub.java +++ b/src/ca/eandb/jdcp/hub/JobHub.java @@ -236,6 +236,8 @@ public final class JobHub implements JobService { TaskDescription task = info.requestTask(); if (...
JobHub should associated the job with the service that provided it when a task is requested.
bwkimmel_jdcp
train
7cb7e5118a7fccfb3c73cd1e29fa4269ac223927
diff --git a/src/util/methodDataByVersion.js b/src/util/methodDataByVersion.js index <HASH>..<HASH> 100644 --- a/src/util/methodDataByVersion.js +++ b/src/util/methodDataByVersion.js @@ -861,7 +861,10 @@ module.exports = { runInContext: 1, times: 2, toPath: 1, - uniqueI...
Add methods from <I>. Fixes #<I>
wix_eslint-plugin-lodash
train
076288307f9c9fad55938f67631dbaf2a5e5db4e
diff --git a/question/classes/privacy/provider.php b/question/classes/privacy/provider.php index <HASH>..<HASH> 100644 --- a/question/classes/privacy/provider.php +++ b/question/classes/privacy/provider.php @@ -360,21 +360,18 @@ class provider implements // A user may have created or updated a question. ...
MDL-<I> core_question: Avoid using UNION in get_users_in_context()
moodle_moodle
train
14a7b9f794353b3671ccda907893af239481d6e6
diff --git a/tools/build/jsserve.js b/tools/build/jsserve.js index <HASH>..<HASH> 100644 --- a/tools/build/jsserve.js +++ b/tools/build/jsserve.js @@ -4,7 +4,12 @@ module.exports = function(gulp, plugins, config) { root: [__dirname+'/../../'+config.path], port: config.port, livereload: false, - ...
fix(jsserve): serve empty favicon to prevent errors in benchmarks Background: our benchmarks check whether there were errors in the browser log after they executed.
angular_angular
train
82bc91e8de4cd8694bc9ef7b18cb6831879ec566
diff --git a/worker/execution/oo-execution-impl/src/main/java/com/hp/oo/execution/services/ExecutionServiceImpl.java b/worker/execution/oo-execution-impl/src/main/java/com/hp/oo/execution/services/ExecutionServiceImpl.java index <HASH>..<HASH> 100644 --- a/worker/execution/oo-execution-impl/src/main/java/com/hp/oo/exec...
try to fix RAS in OO
CloudSlang_score
train
847417e559f8ab4f2acaff579de263e90f8855eb
diff --git a/lib/mobility/plugins/fallbacks.rb b/lib/mobility/plugins/fallbacks.rb index <HASH>..<HASH> 100644 --- a/lib/mobility/plugins/fallbacks.rb +++ b/lib/mobility/plugins/fallbacks.rb @@ -92,10 +92,12 @@ locale was +nil+. private def define_read(fallbacks) - define_method :read do |locale,...
Fix fallbacks when fallback is an array
shioyama_mobility
train
b20718937c144126909e2bb691a4cd237902220b
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,8 @@ METADATA = dict( description='Django app providing registration through a variety of APIs', long_description=open('README.rst').read(), url='http://github.com/flashingpumpkin/django-socialregistra...
Fixes #<I> - templates are now correctly include as package_data
flashingpumpkin_django-socialregistration
train
1015696f02bf19000b843a9174c02348568543c3
diff --git a/lib/formats/cli.js b/lib/formats/cli.js index <HASH>..<HASH> 100644 --- a/lib/formats/cli.js +++ b/lib/formats/cli.js @@ -17,8 +17,10 @@ module.exports = function (overview, statistics, ruleSetResults) { utils.divider, _.map(overview, renderOverview).join('\n') + '\n', _.map(statistics, rend...
hide `0` values as they indicate the warning doesn't apply
addyosmani_psi
train
e530e3d4125fae4f10ec0095ffb95e511e5e3736
diff --git a/core/src/main/java/me/prettyprint/cassandra/connection/RoundRobinBalancingPolicy.java b/core/src/main/java/me/prettyprint/cassandra/connection/RoundRobinBalancingPolicy.java index <HASH>..<HASH> 100644 --- a/core/src/main/java/me/prettyprint/cassandra/connection/RoundRobinBalancingPolicy.java +++ b/core/sr...
added check for excludedhosts being equal to or greater than active in pools. address GH issue <I>
hector-client_hector
train
f2b7aa021eca2b999d3ff702454d9b641405d9f5
diff --git a/src/Parameters/EnhancedEcommerce/ProductAction.php b/src/Parameters/EnhancedEcommerce/ProductAction.php index <HASH>..<HASH> 100644 --- a/src/Parameters/EnhancedEcommerce/ProductAction.php +++ b/src/Parameters/EnhancedEcommerce/ProductAction.php @@ -41,7 +41,7 @@ class ProductAction extends SingleParameter...
Fixing setting product action to checkout option
theiconic_php-ga-measurement-protocol
train
a83e597f7ef756a9239f5f8fcac8d8b667185022
diff --git a/ripe/atlas/sagan/traceroute.py b/ripe/atlas/sagan/traceroute.py index <HASH>..<HASH> 100644 --- a/ripe/atlas/sagan/traceroute.py +++ b/ripe/atlas/sagan/traceroute.py @@ -213,9 +213,6 @@ class TracerouteResult(Result): hop = Hop(hop, **kwargs) - if hop.median_rtt: - ...
set last_median_rtt only once
RIPE-NCC_ripe.atlas.sagan
train