hash
stringlengths
40
40
diff
stringlengths
131
114k
message
stringlengths
7
980
project
stringlengths
5
67
split
stringclasses
1 value
7b5400737f33cb9464bfe25c9c9bc3cb099d67d3
diff --git a/cmd/routing-api/stats_test.go b/cmd/routing-api/stats_test.go index <HASH>..<HASH> 100644 --- a/cmd/routing-api/stats_test.go +++ b/cmd/routing-api/stats_test.go @@ -31,12 +31,32 @@ var _ = Describe("Routes API", func() { Describe("Stats for event subscribers", func() { Context("Subscribe", func() { ...
Refactor stats test for subscriptions to use a channel
cloudfoundry_routing-api
train
df8fd5d2aa851021d8235da19dafa4f3cb09d445
diff --git a/badger/kv.go b/badger/kv.go index <HASH>..<HASH> 100644 --- a/badger/kv.go +++ b/badger/kv.go @@ -61,6 +61,8 @@ type Options struct { // Run value log garbage collection if we can reclaim at least this much space. This is a ratio. ValueGCThreshold float64 + // How often to run value log garbage colle...
Allow client to set how often to run value log garbage collector.
dgraph-io_badger
train
7f33e4cbfd67dbc562a176e20b024c8d424d05c2
diff --git a/warm/components/__init__.py b/warm/components/__init__.py index <HASH>..<HASH> 100644 --- a/warm/components/__init__.py +++ b/warm/components/__init__.py @@ -307,6 +307,8 @@ class SubNet(Base): dns_nameservers=options.get("dns_nameservers", []), enable_dhcp=options.get("enable_dhc...
Fix gateway_ip for a subnet
sahid_warm
train
3a0816970c86b148841011f8c2277cef6be84916
diff --git a/fortpy/elements.py b/fortpy/elements.py index <HASH>..<HASH> 100755 --- a/fortpy/elements.py +++ b/fortpy/elements.py @@ -1625,8 +1625,10 @@ class Module(CodeElement, Decoratable): while (self._contains_index is None and i < max_i and start + i < len(self._lines)): - ...
Fix bug in detecting the 'contains' keyword in modules.
rosenbrockc_fortpy
train
ba528e50e5b85b16191e69af56fefb2d08ba2a69
diff --git a/tests/Plugins/MediaEmbed/ParserTest.php b/tests/Plugins/MediaEmbed/ParserTest.php index <HASH>..<HASH> 100644 --- a/tests/Plugins/MediaEmbed/ParserTest.php +++ b/tests/Plugins/MediaEmbed/ParserTest.php @@ -1149,8 +1149,8 @@ class ParserTest extends Test } ], [ - 'http://vm.tiktok.com/e8Ebxd...
Updated test [ci skip]
s9e_TextFormatter
train
b83d3cc802cdaa69b8c77b6db54aa8fe4e472ba7
diff --git a/table/destination.go b/table/destination.go index <HASH>..<HASH> 100644 --- a/table/destination.go +++ b/table/destination.go @@ -333,15 +333,13 @@ func (dest *Destination) explicitWithdraw() paths { // Known paths will no longer have paths whose new version is present in // new paths. func (dest *Desti...
table: improve implicitWithdraw() remove one loop.
osrg_gobgp
train
337b393c4726c41bc5a3c134f9c05071ede95165
diff --git a/src/main/java/org/attribyte/wp/model/Shortcode.java b/src/main/java/org/attribyte/wp/model/Shortcode.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/attribyte/wp/model/Shortcode.java +++ b/src/main/java/org/attribyte/wp/model/Shortcode.java @@ -13,6 +13,12 @@ import java.util.Map; */ public cla...
With the introduction of "positional" attributes, parser is now a hack job. Must revisit.
attribyte_wpdb
train
3504dcb4ffeea3bf817cd509e8a9370ebac0b8d2
diff --git a/src/responseHandlers/TestResponseHandler.js b/src/responseHandlers/TestResponseHandler.js index <HASH>..<HASH> 100644 --- a/src/responseHandlers/TestResponseHandler.js +++ b/src/responseHandlers/TestResponseHandler.js @@ -47,10 +47,6 @@ var TestResponseHandler = jsface.Class(AbstractResponseHandler, { ...
Removing manual removal of BOM - GH#<I>
postmanlabs_newman
train
7052efb118d3250240ff9077d505f30bcc4076ef
diff --git a/spec/suite/DataTableSpec.php b/spec/suite/DataTableSpec.php index <HASH>..<HASH> 100644 --- a/spec/suite/DataTableSpec.php +++ b/spec/suite/DataTableSpec.php @@ -12,6 +12,24 @@ describe("DataTable", function() { }); + it("should work with empty ResultSet", function() { + + $resultset = $this->d...
Fixed issue #8 (Empty resultset/array/builder)
gazlab_phalcon-datatables
train
9ab3f25e5e9a449741717635600fd2c32eb2da8c
diff --git a/contao/dca/tl_metamodel_attribute.php b/contao/dca/tl_metamodel_attribute.php index <HASH>..<HASH> 100644 --- a/contao/dca/tl_metamodel_attribute.php +++ b/contao/dca/tl_metamodel_attribute.php @@ -43,7 +43,7 @@ $GLOBALS['TL_DCA']['tl_metamodel_attribute']['fields']['file_multiple'] = [ 'label' =>...
Remove the obsolete submit on change from checkbox file multiple
MetaModels_attribute_file
train
5485e8bacd95d03f1ee45343a1ae3afec2ecd882
diff --git a/setuptools/tests/test_msvc9compiler.py b/setuptools/tests/test_msvc9compiler.py index <HASH>..<HASH> 100644 --- a/setuptools/tests/test_msvc9compiler.py +++ b/setuptools/tests/test_msvc9compiler.py @@ -57,17 +57,21 @@ def mock_reg(hkcu=None, hklm=None): read_keys=read_keys, read_values=read_values...
Split the first test into two more tests.
pypa_setuptools
train
fd65bc8fffe36d18b5d2a63526164b1add56ac51
diff --git a/pkg/client/cache/shared_informer.go b/pkg/client/cache/shared_informer.go index <HASH>..<HASH> 100644 --- a/pkg/client/cache/shared_informer.go +++ b/pkg/client/cache/shared_informer.go @@ -207,7 +207,7 @@ func (s *sharedIndexInformer) LastSyncResourceVersion() string { s.startedLock.Lock() defer s.sta...
prevent panic if resourceversion checked early
kubernetes_kubernetes
train
d2ccbdbe231d2b234d4856d9e3b824cfd505ac18
diff --git a/examples/audio/main.go b/examples/audio/main.go index <HASH>..<HASH> 100644 --- a/examples/audio/main.go +++ b/examples/audio/main.go @@ -78,6 +78,14 @@ func playerBarRect() (x, y, w, h int) { return } +type SEStream struct { + *bytes.Reader +} + +func (s *SEStream) Close() error { + return nil +} + ...
audio: Add Player.Close (#<I>)
hajimehoshi_ebiten
train
d3629df8b7566cc4f2d960b25820ac1ebbd797e8
diff --git a/src/styleable.js b/src/styleable.js index <HASH>..<HASH> 100644 --- a/src/styleable.js +++ b/src/styleable.js @@ -1,30 +1,21 @@ -import getDisplayName from './utils/get-display-name' import invariant from 'invariant' -import React from 'react' import PropTypes from 'prop-types' +import React from 'react'...
refactor: renames and rm unused for clarity
pluralsight_react-styleable
train
3fec41104e17ed087a7def2db7d806e01e9682ed
diff --git a/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/batch/BatchAutoConfiguration.java b/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/batch/BatchAutoConfiguration.java index <HASH>..<HASH> 100644 --- a/sprin...
Ensure that Batch schema is in place before DB is accessed Fixes gh-<I>
spring-projects_spring-boot
train
1bfc65fbe6564ccd1919cdc8aafd92d9717c5383
diff --git a/lib/literate_maruku.rb b/lib/literate_maruku.rb index <HASH>..<HASH> 100644 --- a/lib/literate_maruku.rb +++ b/lib/literate_maruku.rb @@ -13,6 +13,12 @@ module LiterateMaruku # attach the result to the generated document. See our website or the tests # for further examples. module ClassMethods + ...
* changed the binding to be a class variable instead of a global - added documentation
schmidt_literate_maruku
train
3ea7db95134b650ed8b461a724ace8c9cede472e
diff --git a/spec/purgatory_spec.rb b/spec/purgatory_spec.rb index <HASH>..<HASH> 100644 --- a/spec/purgatory_spec.rb +++ b/spec/purgatory_spec.rb @@ -153,14 +153,14 @@ describe Purgatory do @widget = Widget.create name: 'foo', price: 100 @widget.name = 'bar' @widget.price = 200 - @purgatory = @widget...
should test on purgatory instance that is retrieved from the db instead of one thats returned by Purgatory.create
financeit_purgatory
train
29d7e14c876b5e8a2175de7319a589002d4b1a7c
diff --git a/config/webpack.umd.config.js b/config/webpack.umd.config.js index <HASH>..<HASH> 100644 --- a/config/webpack.umd.config.js +++ b/config/webpack.umd.config.js @@ -49,7 +49,7 @@ config.stats = { config.plugins = [ - new CleanWebPackPlugin([path.join(root, 'dist')]), + new CleanWebPackPlugin([path.join...
Define the root for clean webpack plugin
tutti-ch_react-styleguide
train
c90659d624c444c1765d707d13a7cac8c1bdc57e
diff --git a/src/test/java/stormpot/PoolTest.java b/src/test/java/stormpot/PoolTest.java index <HASH>..<HASH> 100644 --- a/src/test/java/stormpot/PoolTest.java +++ b/src/test/java/stormpot/PoolTest.java @@ -360,7 +360,7 @@ public class PoolTest { * @param fixture * @throws Exception */ - @Test(timeout = 30...
implement a "manual break-point" in the newly-rediscovered racy test, so we have a chance of inspecting it in VisualVM the next time it happens.
chrisvest_stormpot
train
e6c1a22aa511396fd4a0a5ef6fc655c895a0f9fd
diff --git a/uportal-war/src/main/java/org/jasig/portal/events/aggr/PortalEventAggregatorImpl.java b/uportal-war/src/main/java/org/jasig/portal/events/aggr/PortalEventAggregatorImpl.java index <HASH>..<HASH> 100644 --- a/uportal-war/src/main/java/org/jasig/portal/events/aggr/PortalEventAggregatorImpl.java +++ b/uportal...
UP-<I> Fix inf loop in event aggr cleanup
Jasig_uPortal
train
cbc5d95e8864f60ca9f5722d213c5c4a30895566
diff --git a/lib/snaptoken/commands/doc.rb b/lib/snaptoken/commands/doc.rb index <HASH>..<HASH> 100644 --- a/lib/snaptoken/commands/doc.rb +++ b/lib/snaptoken/commands/doc.rb @@ -58,8 +58,13 @@ class Snaptoken::Commands::Doc < Snaptoken::Commands::BaseCommand theme.palette @config[:rouge_theme] end + t...
make font-weight of bold-highlighted code configurable
snaptoken_leg
train
9d0787da9f9bda86bacea1bbc409371e95e850f1
diff --git a/src/tagify.js b/src/tagify.js index <HASH>..<HASH> 100644 --- a/src/tagify.js +++ b/src/tagify.js @@ -551,6 +551,9 @@ Tagify.prototype = { if( this.settings.a11y.focusableTags ) tagElm.focus() + else + // place caret after edited tag + ...
bugfix - in mix-mode, place the caret after a tag which was just edited, instead of before it
yairEO_tagify
train
0d1cdd26d657f6559b52332e207e1cc9e7db7c67
diff --git a/ethutil/bytes_test.go b/ethutil/bytes_test.go index <HASH>..<HASH> 100644 --- a/ethutil/bytes_test.go +++ b/ethutil/bytes_test.go @@ -28,16 +28,17 @@ func (s *BytesSuite) TestDeleteFromByteSlice(c *checker.C) { } } +*/ func (s *BytesSuite) TestNumberToBytes(c *checker.C) { - data := int(1) - exp := [...
Update TestNumberToBytes
ethereum_go-ethereum
train
8b7d61d9ff73f327032091d08b110f2561a8c229
diff --git a/immutablemodel/admin.py b/immutablemodel/admin.py index <HASH>..<HASH> 100644 --- a/immutablemodel/admin.py +++ b/immutablemodel/admin.py @@ -10,14 +10,10 @@ class ImmutableModelAdmin(admin.ModelAdmin): if not obj is None: # We'r chaging the obj - try: - im...
fixing (I think, needs test) admin readonly fields
red56_django-immutablemodel
train
256d247fb1b1f56c70e1e5b9ed20d113ba046700
diff --git a/lib/Client.js b/lib/Client.js index <HASH>..<HASH> 100644 --- a/lib/Client.js +++ b/lib/Client.js @@ -85,6 +85,9 @@ Object.defineProperties( Client.prototype , { const DEFAULT_QUERY_PARSER_OPTIONS = { brackets: true , autoPush: true , keyPath: true } ; Lazyness.instanceProperty( Client.prototype , 'que...
remove expect.js from devdep
cronvel_server-kit
train
d64e7502634d1d4df5888fb9d654daf62a1815b4
diff --git a/.travis.yml b/.travis.yml index <HASH>..<HASH> 100644 --- a/.travis.yml +++ b/.travis.yml @@ -62,7 +62,7 @@ script: - coverage combine .coverage* - coverage xml -i - codecov --file coverage.xml - - zeus upload -t "application/x-cobertura+xml" coverage.xml + - '[[ -z "$ZEUS_API_TOKEN" ]] || zeus ...
fix: Record UTC timestamps for transactions (#<I>) * fix: Record UTC timestamps for transactions * fix: Do not upload coverage to zeus if no api token is available * noop for bot * syntax?
getsentry_sentry-python
train
b93ac8fc523ea3fcbc21df7571265b68937bd836
diff --git a/bloop/dynamo_client.py b/bloop/dynamo_client.py index <HASH>..<HASH> 100644 --- a/bloop/dynamo_client.py +++ b/bloop/dynamo_client.py @@ -359,19 +359,16 @@ def dump_key(engine, obj): return dynamo_key -# Helpers TODO: Refactor def key_schema(model): schema = [{ 'AttributeName': mode...
Clean up dynamo_client helpers
numberoverzero_bloop
train
1f1adb835a679551b23de8c18514b747ef146137
diff --git a/railties/test/rails_info_test.rb b/railties/test/rails_info_test.rb index <HASH>..<HASH> 100644 --- a/railties/test/rails_info_test.rb +++ b/railties/test/rails_info_test.rb @@ -38,7 +38,7 @@ class InfoTest < ActiveSupport::TestCase end def test_framework_version - assert_property 'Active Suppor...
Fix test: ActiveSupport.version is returning now a Gem::Version instead of a String
rails_rails
train
dee4c79c489292b5ba74a4a633229166f0bfae4f
diff --git a/common.go b/common.go index <HASH>..<HASH> 100644 --- a/common.go +++ b/common.go @@ -9,5 +9,6 @@ func tmpFile(dir, pattern string) (string, error) { if err != nil { return "", err } + f.Close() return f.Name(), nil }
make tmpFile close the newly created file in case a future task need to delete it This could cause checksumming from file on windows to error because the go-getter would try to download to that temporary file that is still opened. This probably worked on unix system as the system considered the process as being the sa...
hashicorp_go-getter
train
cf3f36abed73b9a0602656d54fa1f90eacdb22bc
diff --git a/java/client/src/org/openqa/selenium/OutputType.java b/java/client/src/org/openqa/selenium/OutputType.java index <HASH>..<HASH> 100644 --- a/java/client/src/org/openqa/selenium/OutputType.java +++ b/java/client/src/org/openqa/selenium/OutputType.java @@ -18,9 +18,9 @@ package org.openqa.selenium; import...
[java] Refactoring OutputType.FILE#save (#<I>) Leveraging Java 7 Files class.
SeleniumHQ_selenium
train
80e3bcca9fe20a46da0a11897a5213e1f0b117f2
diff --git a/test_src/test_proj/models/files.py b/test_src/test_proj/models/files.py index <HASH>..<HASH> 100644 --- a/test_src/test_proj/models/files.py +++ b/test_src/test_proj/models/files.py @@ -8,7 +8,7 @@ class File(FileModel): name = models.CharField(max_length=1024) for_order1 = models.IntegerField() ...
Add support for `pk` field
vstconsulting_vstutils
train
4af3c5efebd51f6cba1bfa71f051758c5d667388
diff --git a/test/integration/scheduler_perf/util.go b/test/integration/scheduler_perf/util.go index <HASH>..<HASH> 100644 --- a/test/integration/scheduler_perf/util.go +++ b/test/integration/scheduler_perf/util.go @@ -243,7 +243,12 @@ func collectHistogramVec(metric string, labels map[string]string, lvMap map[stri }...
Skip adding data to avoid "json: unsupported value: NaN" panic when data is NaN
kubernetes_kubernetes
train
07059767dfc57dac3726aa520f17ee3a4f405df6
diff --git a/spyderlib/widgets/colors.py b/spyderlib/widgets/colors.py index <HASH>..<HASH> 100644 --- a/spyderlib/widgets/colors.py +++ b/spyderlib/widgets/colors.py @@ -19,10 +19,10 @@ class ColorButton(QPushButton): self._color = QColor() def choose_color(self): - rgba, valid = QColorDi...
Fix color selection dialog, which was not shown on PySide, because it was invoked through deprecated QColorDialog.getRgba() function absent there
spyder-ide_spyder
train
cb92a4015627202b4a67d324b69aa29935078277
diff --git a/telethon/client/updates.py b/telethon/client/updates.py index <HASH>..<HASH> 100644 --- a/telethon/client/updates.py +++ b/telethon/client/updates.py @@ -513,8 +513,13 @@ class UpdateMethods: self._log[__name__].debug('Getting difference for entities ' 'for %r', ...
Add additional asserts to debug issue with peer empty channels
LonamiWebs_Telethon
train
56b30a0003c57ca31922cfc4e4488feb668bf55b
diff --git a/src/models/time.js b/src/models/time.js index <HASH>..<HASH> 100644 --- a/src/models/time.js +++ b/src/models/time.js @@ -312,6 +312,7 @@ var TimeModel = Model.extend({ if(_this.delay < _this.delayThresholdX2) step*=2; if(_this.delay < _this.delayThresholdX4) step*=2; time ...
<I>_<I>: Year is not shown according to the bubbles place #<I>
vizabi_vizabi
train
89d26cb6ed5b5e9f28ce24bca7d56d1751c463f4
diff --git a/test/parser.test.js b/test/parser.test.js index <HASH>..<HASH> 100644 --- a/test/parser.test.js +++ b/test/parser.test.js @@ -1,10 +1,11 @@ +var babel = require("babel-core"); var expect = require("expect"); var parse = require("../src/parser").parse; describe("parser", function() { describe(".pars...
Mock babel.transform for missing coverage
webpack-contrib_npm-install-webpack-plugin
train
e0d1f91eb04f4c88f35f025e1b4c096822c89aad
diff --git a/lib/bbcloud/api.rb b/lib/bbcloud/api.rb index <HASH>..<HASH> 100644 --- a/lib/bbcloud/api.rb +++ b/lib/bbcloud/api.rb @@ -3,6 +3,7 @@ module Brightbox attr_reader :id class ApiError < StandardError ; end class NotFound < ApiError ; end + class Conflict < ApiError ; end @@api = nil ...
return nil if find is called with nil. Fixes #<I>
brightbox_brightbox-cli
train
1fbcae87f7ef7fc56329e211ca426cbd3c7437fb
diff --git a/lib/bolt/applicator.rb b/lib/bolt/applicator.rb index <HASH>..<HASH> 100644 --- a/lib/bolt/applicator.rb +++ b/lib/bolt/applicator.rb @@ -34,7 +34,12 @@ module Bolt } bolt_catalog_exe = File.join(libexec, 'bolt_catalog') - out, err, stat = Open3.capture3(bolt_catalog_exe, 'compile', st...
(BOLT-<I>) Fix catalog compilation when Ruby isn't in PATH Prefix PATH with the bindir for the current Ruby, to make sure the version with Bolt is used when compiling a manifest block. Also explicitly invokes Ruby so it works on Windows.
puppetlabs_bolt
train
1b30a9573638db83fa01900059f6edb19d6d9545
diff --git a/src/main/java/org/takes/facets/auth/social/PsLinkedin.java b/src/main/java/org/takes/facets/auth/social/PsLinkedin.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/takes/facets/auth/social/PsLinkedin.java +++ b/src/main/java/org/takes/facets/auth/social/PsLinkedin.java @@ -53,11 +53,6 @@ import org...
#<I> removed not used constant
yegor256_takes
train
5f5a0203d04d8428c368bcca30768a2788119ce4
diff --git a/Server/Python/src/dbs/web/DBSWriterModel.py b/Server/Python/src/dbs/web/DBSWriterModel.py index <HASH>..<HASH> 100644 --- a/Server/Python/src/dbs/web/DBSWriterModel.py +++ b/Server/Python/src/dbs/web/DBSWriterModel.py @@ -18,6 +18,9 @@ from dbs.utils.DBSTransformInputType import transformInputType impor...
Add NATS integration and implement PdmV use case
dmwm_DBS
train
0aa192132636a77c39a310ce369a55d694753939
diff --git a/conf.py b/conf.py index <HASH>..<HASH> 100644 --- a/conf.py +++ b/conf.py @@ -31,9 +31,13 @@ sys.path.insert(0, os.path.abspath('.')) # Add any Sphinx extension module names here, as strings. They can be # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom # ones. -extensions = ['sphinx...
conditionally add restbuilder for readthedocs support
dschep_lambda-decorators
train
318ed4e849ce369aeaae963f500b73a839a71b13
diff --git a/tests/test_generic_processor.py b/tests/test_generic_processor.py index <HASH>..<HASH> 100644 --- a/tests/test_generic_processor.py +++ b/tests/test_generic_processor.py @@ -675,7 +675,7 @@ class TestImportToPackRename(TestCaseForGenericProcessor): handler.process(self.get_command_iter(old_path, n...
Add tests for renaming to a deleted destination
jelmer_python-fastimport
train
ae3d8cac5e4b1f25d6f108e40bf61535e32e7866
diff --git a/treeview.go b/treeview.go index <HASH>..<HASH> 100644 --- a/treeview.go +++ b/treeview.go @@ -409,6 +409,9 @@ func (t *TreeView) process() { // Determine visible nodes and their placement. var graphicsOffset, maxTextX int t.nodes = nil + if t.root == nil { + return + } selectedIndex := -1 topLev...
Avoiding panics for empty tree views.
rivo_tview
train
677e3717bfbd3a567776535be276f4e2848ef4a1
diff --git a/src/com/google/javascript/jscomp/DefaultPassConfig.java b/src/com/google/javascript/jscomp/DefaultPassConfig.java index <HASH>..<HASH> 100644 --- a/src/com/google/javascript/jscomp/DefaultPassConfig.java +++ b/src/com/google/javascript/jscomp/DefaultPassConfig.java @@ -2326,6 +2326,11 @@ public final class...
Run inlineObjectLiterals pass when language_out is ES6+. ------------- Created by MOE: <URL>
google_closure-compiler
train
86a9675ec60245c1b5a7bcb43941c218e110104a
diff --git a/.flowconfig b/.flowconfig index <HASH>..<HASH> 100644 --- a/.flowconfig +++ b/.flowconfig @@ -19,6 +19,7 @@ flow/interfaces [options] +include_warnings=true esproposal.class_static_fields=enable esproposal.class_instance_fields=enable module.file_ext=.js @@ -35,3 +36,12 @@ module.system.node.resolv...
Flow config lint (#<I>) * [flow] configure lint and warnings * [flow] remove unused suppressions * turn of sketchy-null lints for now * ignore dotfiles when coverage is concerned * revert codecov ignore - works locally, not remotely?
mui-org_material-ui
train
307cf17fcd5682d4165f52510284430dc0c6fded
diff --git a/lib/friendly_id/candidates.rb b/lib/friendly_id/candidates.rb index <HASH>..<HASH> 100644 --- a/lib/friendly_id/candidates.rb +++ b/lib/friendly_id/candidates.rb @@ -23,6 +23,9 @@ module FriendlyId unless pre_candidates.all? {|x| reserved?(x)} pre_candidates.reject! {|x| reserved?(x)} ...
Make Candidates#each iterable without block.
norman_friendly_id
train
0bf9ae0e54df3ce428f3b0b3c7c18261a420a73f
diff --git a/TYPO3.Flow/Classes/MVC/Controller/NotFoundController.php b/TYPO3.Flow/Classes/MVC/Controller/NotFoundController.php index <HASH>..<HASH> 100644 --- a/TYPO3.Flow/Classes/MVC/Controller/NotFoundController.php +++ b/TYPO3.Flow/Classes/MVC/Controller/NotFoundController.php @@ -40,12 +40,22 @@ namespace F3\FLOW...
FLOW3: * replaced to @inject occurences with explicit inject methods Original-Commit-Hash: <I>a<I>d<I>c<I>f0a0fbccfd0cf<I>a2f<I>
neos_flow-development-collection
train
e82ab43030c391bbcf0b59acc52e41eab7126ab2
diff --git a/photutils/aperture/mask.py b/photutils/aperture/mask.py index <HASH>..<HASH> 100644 --- a/photutils/aperture/mask.py +++ b/photutils/aperture/mask.py @@ -38,7 +38,6 @@ class ApertureMask: """ Array representation of the mask data array (e.g., for matplotlib). """ - retur...
Update ApertureMask to use get_overlap_slices
astropy_photutils
train
2c8843b4de6e0aa06f0cc9e273e9f029b013dd0e
diff --git a/builder/vmware/driver_esx5.go b/builder/vmware/driver_esx5.go index <HASH>..<HASH> 100644 --- a/builder/vmware/driver_esx5.go +++ b/builder/vmware/driver_esx5.go @@ -201,7 +201,7 @@ func (d *ESX5Driver) SSHAddress(state multistep.StateBag) (string, error) { func (d *ESX5Driver) DirExists(path string) (b...
builder/vmware: esx file check works properly
hashicorp_packer
train
3bdfc8d093b879bee7b2f2d80a00b3614146d6ae
diff --git a/core/src/main/java/org/modelmapper/internal/MappingEngineImpl.java b/core/src/main/java/org/modelmapper/internal/MappingEngineImpl.java index <HASH>..<HASH> 100644 --- a/core/src/main/java/org/modelmapper/internal/MappingEngineImpl.java +++ b/core/src/main/java/org/modelmapper/internal/MappingEngineImpl.ja...
Pre-converter value should be set in context prior to property mapping
modelmapper_modelmapper
train
29d4bc03f86b9021ff73b53f8041497def05a436
diff --git a/lib/active_admin/application.rb b/lib/active_admin/application.rb index <HASH>..<HASH> 100644 --- a/lib/active_admin/application.rb +++ b/lib/active_admin/application.rb @@ -42,7 +42,7 @@ module ActiveAdmin setting :logout_link_path, :destroy_admin_user_session_path # The method to use when gen...
Logout now works with Devise < <I>. Closes #<I>.
activeadmin_activeadmin
train
ddb9d7fe0d988be355d4c2e6638be7359303ce8b
diff --git a/spec/support/vcr.rb b/spec/support/vcr.rb index <HASH>..<HASH> 100644 --- a/spec/support/vcr.rb +++ b/spec/support/vcr.rb @@ -3,8 +3,20 @@ require 'vcr' VCR.configure do |config| config.cassette_library_dir = "spec/fixtures/vcr_cassettes" config.hook_into :webmock # or :fakeweb + + headers_matcher ...
Ignore some headers in VCR, trying to pass tests.
Jesus_dropbox_api
train
77ee7c872bf703e0710d653944e488a9d64b6bba
diff --git a/website/src/widgets/quickstart-training.js b/website/src/widgets/quickstart-training.js index <HASH>..<HASH> 100644 --- a/website/src/widgets/quickstart-training.js +++ b/website/src/widgets/quickstart-training.js @@ -86,13 +86,14 @@ export default function QuickstartTraining({ id, title, download = 'base_...
Fix default transformer in quickstart generator (resolves #<I>) [ci skip]
explosion_spaCy
train
17d42eef5d42fb8acbe4551536f902cf6e273cc1
diff --git a/fut14/core.py b/fut14/core.py index <HASH>..<HASH> 100644 --- a/fut14/core.py +++ b/fut14/core.py @@ -85,7 +85,6 @@ class Core(object): self.secret_answer_hash = EAHashingAlgorithm().EAHash(secret_answer) self.r = requests.Session() # init/reset requests session object self.r....
core: update credits at the end of login method
futapi_fut
train
ce9a132932fc2d54c1691f8ff3f29559396c6300
diff --git a/evm/chains/chain.py b/evm/chains/chain.py index <HASH>..<HASH> 100644 --- a/evm/chains/chain.py +++ b/evm/chains/chain.py @@ -95,21 +95,28 @@ class Chain(object): """ return self.get_vm().block - def get_transaction(self, transaction_hash): - try: - (block_num, inde...
chain: get pending & canonical transaction by hash
ethereum_py-evm
train
a187354920b27d85181d9aff71e8b7a2796234d0
diff --git a/src/LaravelLoggerServiceProvider.php b/src/LaravelLoggerServiceProvider.php index <HASH>..<HASH> 100644 --- a/src/LaravelLoggerServiceProvider.php +++ b/src/LaravelLoggerServiceProvider.php @@ -3,6 +3,7 @@ namespace jeremykenedy\LaravelLogger; use Illuminate\Routing\Router; +use Illuminate\Support\Faca...
Update LaravelLoggerServiceProvider.php To keep a consistency on the usage of classes, the usage of the facades should be better, because we don't know if the user, on their framework, removed the aliases or not.
jeremykenedy_laravel-logger
train
2abc0a4a20a482c10f95e67b5bc9dc4dd20b1116
diff --git a/SingularityService/pom.xml b/SingularityService/pom.xml index <HASH>..<HASH> 100644 --- a/SingularityService/pom.xml +++ b/SingularityService/pom.xml @@ -39,7 +39,7 @@ </dependency> <dependency> - <groupId>com.codahale.dropwizard</groupId> + <groupId>io.dropwizard</groupId> <ar...
fix imports in response to dropwizard-guice changes
HubSpot_Singularity
train
44007db82509eaf2063012511b286161bf5db56e
diff --git a/source/new-component.js b/source/new-component.js index <HASH>..<HASH> 100644 --- a/source/new-component.js +++ b/source/new-component.js @@ -39,9 +39,8 @@ module.exports = function({ prettierConfig ); - fsExtra - .ensureDir(folderPath) - .then(() => ensureEmptyFolder(folderPath)...
Fixes folder being created before checking if it exists
Creuna-Oslo_react-scripts
train
6fecaa8a077e655a3009b15b2408a08d1117b85f
diff --git a/helpers/class.ItemResolver.php b/helpers/class.ItemResolver.php index <HASH>..<HASH> 100644 --- a/helpers/class.ItemResolver.php +++ b/helpers/class.ItemResolver.php @@ -52,7 +52,16 @@ class taoQtiTest_helpers_ItemResolver extends FileResolver { // The item is retrieved from the database. ...
Fixes xinclude compaction issue at delivery compilation time
oat-sa_extension-tao-testqti
train
b21c781104b499b39666055711c921c71e2d1cfc
diff --git a/src/GuzzleRetryMiddleware.php b/src/GuzzleRetryMiddleware.php index <HASH>..<HASH> 100644 --- a/src/GuzzleRetryMiddleware.php +++ b/src/GuzzleRetryMiddleware.php @@ -27,6 +27,7 @@ use GuzzleHttp\Promise\Promise; use GuzzleHttp\Promise\PromiseInterface; use Psr\Http\Message\RequestInterface; use Psr\Http...
Add first_retry_timestamp on first request and test to ensure that it is set only on first request
caseyamcl_guzzle_retry_middleware
train
15de9ddffddb31ffe24fc1bf63fdc77254f9653d
diff --git a/src/python/dxpy/bindings/dxfile_functions.py b/src/python/dxpy/bindings/dxfile_functions.py index <HASH>..<HASH> 100644 --- a/src/python/dxpy/bindings/dxfile_functions.py +++ b/src/python/dxpy/bindings/dxfile_functions.py @@ -181,7 +181,7 @@ def _download_symbolic_link(dxid, md5digest, project, dest_filena...
DEVEX-<I> max-retries change for download error <I> (#<I>)
dnanexus_dx-toolkit
train
2ba148afc3f149894b3fc8758d33a830d243fd4b
diff --git a/lib/protocol/task.js b/lib/protocol/task.js index <HASH>..<HASH> 100644 --- a/lib/protocol/task.js +++ b/lib/protocol/task.js @@ -409,17 +409,19 @@ function taskProtocolFactory (Promise, assert, Constants, messenger, _, Result) }; // NOTE: publishes onto the events exchange - TaskProtocol.p...
Open another PR due to VEY-<I>_on-core branch closure
RackHD_on-core
train
45c5d23d2b97f8059ffadfa629cee8b54daad13a
diff --git a/phy/cluster/manual/session.py b/phy/cluster/manual/session.py index <HASH>..<HASH> 100644 --- a/phy/cluster/manual/session.py +++ b/phy/cluster/manual/session.py @@ -417,7 +417,7 @@ class Session(BaseSession): self.set_user_settings(path=op.join(curdir, 'default_settings.py'), ...
WIP: add wizard to session.
kwikteam_phy
train
db81bff3edac2bb362c2093154a749a11defc9ea
diff --git a/.babelrc b/.babelrc index <HASH>..<HASH> 100644 --- a/.babelrc +++ b/.babelrc @@ -1,3 +1,4 @@ { - "presets": ["es2015", "stage-0", "react"] + "presets": ["es2015", "stage-0", "react"], + "plugins": ["transform-runtime"] } diff --git a/example/src/modules/app.js b/example/src/modules/app.js index <HASH...
Use async/await instead of promises, because they're nice
andyhite_redux-jsonapi
train
63837b510f4a19baff432e2b812e7d9b16a12946
diff --git a/index.html b/index.html index <HASH>..<HASH> 100644 --- a/index.html +++ b/index.html @@ -32,7 +32,9 @@ }); var directions = mapboxgl.Directions({ - container: 'directions' + container: 'directions', + unit: 'metric', + accessToken: mapboxgl.accessToken })...
Pass options to store as an action when directions is initialized
mapbox_mapbox-gl-directions
train
d4dfea9f2dc5e7ee9d99e8049caf315dd8541599
diff --git a/spec/mspec-opal/formatters.rb b/spec/mspec-opal/formatters.rb index <HASH>..<HASH> 100644 --- a/spec/mspec-opal/formatters.rb +++ b/spec/mspec-opal/formatters.rb @@ -196,20 +196,13 @@ module InvertedFormatter MSpec.register :finish, self end - def before(example) - puts "==> Running #{example...
Allow InvertedFormatter to override methods
opal_opal
train
4ebdefb154d57121685b6ae0b24887e08b5f8ee5
diff --git a/src/Rules/Methods/CallMethodsOnPossiblyNullRule.php b/src/Rules/Methods/CallMethodsOnPossiblyNullRule.php index <HASH>..<HASH> 100644 --- a/src/Rules/Methods/CallMethodsOnPossiblyNullRule.php +++ b/src/Rules/Methods/CallMethodsOnPossiblyNullRule.php @@ -58,7 +58,7 @@ class CallMethodsOnPossiblyNullRule imp...
Add better description to "call on nullable" error
phpstan_phpstan
train
099abe8fcfbebe2b885e041229c7d0d20c686226
diff --git a/mave/core.py b/mave/core.py index <HASH>..<HASH> 100644 --- a/mave/core.py +++ b/mave/core.py @@ -42,33 +42,38 @@ class Preprocessor(object): holiday_keys = ['USFederal'], dayfirst = False, yearfirst = False, + zipcode = None, ...
removed depreccated country and zipcode parsing from inputfile
CenterForTheBuiltEnvironment_mave
train
3de93af3d006abd7eb8baabf0ac0c07a90e092cc
diff --git a/src/Ufo/Modules/Controller.php b/src/Ufo/Modules/Controller.php index <HASH>..<HASH> 100644 --- a/src/Ufo/Modules/Controller.php +++ b/src/Ufo/Modules/Controller.php @@ -13,6 +13,7 @@ use Ufo\Core\Config; use Ufo\Core\ContainerInterface; use Ufo\Core\DebugInterface; use Ufo\Core\DIObject; +use Ufo\Core\...
feat: extract create object methods to create objects from child namespace
enikeishik_ufoframework
train
1f7ea36da4d1ce80cf734ec0ec7b746faeaee318
diff --git a/handlers/zipkin.go b/handlers/zipkin.go index <HASH>..<HASH> 100644 --- a/handlers/zipkin.go +++ b/handlers/zipkin.go @@ -45,11 +45,12 @@ func (z *Zipkin) ServeHTTP(rw http.ResponseWriter, r *http.Request, next http.Ha existingTraceID := r.Header.Get(b3.TraceID) existingSpanID := r.Header.Get(b3.SpanID...
Let zipkip handler adhere to w3 spec (#<I>) * Let zipkip handler adhere to w3 spec * Reuse idgenerator * remove unused import
cloudfoundry_gorouter
train
19141690b8054f8195be5ec57ff7b0b5a64d81d4
diff --git a/packages/proact/driver/index.js b/packages/proact/driver/index.js index <HASH>..<HASH> 100644 --- a/packages/proact/driver/index.js +++ b/packages/proact/driver/index.js @@ -20,11 +20,11 @@ const REPLACE = Symbol('replace'); const SKIP = Symbol('skip'); const TODO = Symbol('todo'); -function reset(driv...
proact: make driver API simpler and more expressive * simpler: remove `at()` method * simpler: have `traverse()` take node and options object as arguments * more expressive: include task-specific handler in options object
apparebit_js-junction
train
ad2c8d79d21758d116b8cf13918e48d390326eaf
diff --git a/src/react/modals/modals.js b/src/react/modals/modals.js index <HASH>..<HASH> 100644 --- a/src/react/modals/modals.js +++ b/src/react/modals/modals.js @@ -55,10 +55,6 @@ export class BaseModal extends mixin(React.PureComponent).with(Animation) { this.props.show ? bodyNotAllowedToScroll(document) : body...
fixed double declaration of componentDidMount in the baseModal
pivotal-cf_pivotal-ui
train
685af62a6690918cb262791253d77efdd206cea0
diff --git a/src/main/java/org/vanilladb/bench/StatisticMgr.java b/src/main/java/org/vanilladb/bench/StatisticMgr.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/vanilladb/bench/StatisticMgr.java +++ b/src/main/java/org/vanilladb/bench/StatisticMgr.java @@ -168,7 +168,7 @@ public class StatisticMgr { } ...
Fix a typo in StatisticMgr (by YX)
vanilladb_vanillabench
train
71b862dddded547dc47796f55bc36338db028bba
diff --git a/src/View/View.php b/src/View/View.php index <HASH>..<HASH> 100644 --- a/src/View/View.php +++ b/src/View/View.php @@ -123,7 +123,7 @@ class View implements EventDispatcherInterface * * @var array */ - public $helpers = []; + protected $helpers = []; /** * The name of th...
Make View::$helpers protected.
cakephp_cakephp
train
1344803128f3eecb6d28baa309516635195b0b04
diff --git a/openid.js b/openid.js index <HASH>..<HASH> 100644 --- a/openid.js +++ b/openid.js @@ -1144,8 +1144,6 @@ var _verifyDiscoveredInformation = function(params, stateless, extensions, stric } _verifyAssertionAgainstProviders(providers, params, stateless, extensions, callback); - - ret...
Remove residual callback after assertion has been verified
havard_node-openid
train
fc7ee2a32916477927eda1f24c19f39ac7e85ac7
diff --git a/spec/func_tests/job_spec.rb b/spec/func_tests/job_spec.rb index <HASH>..<HASH> 100644 --- a/spec/func_tests/job_spec.rb +++ b/spec/func_tests/job_spec.rb @@ -227,12 +227,23 @@ describe JenkinsApi::Client::Job do end end + describe "#add_email_notification" do + it "Should acce...
[Job] - Issue #<I> - Added functional test for the feature
arangamani_jenkins_api_client
train
de4f34baae48db440fcd353df1bd5585ee983936
diff --git a/src/Model/ProcessingConfig.php b/src/Model/ProcessingConfig.php index <HASH>..<HASH> 100644 --- a/src/Model/ProcessingConfig.php +++ b/src/Model/ProcessingConfig.php @@ -505,6 +505,9 @@ final class ProcessingConfig implements SystemChangedEventRecorder if (!is_string($connectorConfig['name']) || e...
Add new required props to connector config
prooph_link-app-core
train
12e68c67c5acdfd9ce8af3abad2a68d0f93cfaa6
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -1,6 +1,6 @@ const execSync = require('child_process').execSync -function getGlobs(globs) { +function getGlobs(globs = '') { if (typeof globs === 'string') { return globs.split(' ') } else if (Array.isArray(globs)) {
Get diff of all files if args are given
slammayjammay_git-diff-glob
train
3bea5bc0c41018e3497c88101cf1a1d840006455
diff --git a/edisgo/flex_opt/reinforce_grid.py b/edisgo/flex_opt/reinforce_grid.py index <HASH>..<HASH> 100644 --- a/edisgo/flex_opt/reinforce_grid.py +++ b/edisgo/flex_opt/reinforce_grid.py @@ -3,12 +3,14 @@ import copy from edisgo.flex_opt import check_tech_constraints as checks from edisgo.flex_opt import reinforc...
Add option to conduct reinforcement for worst-case snapshots
openego_eDisGo
train
b4309ff1164ceaacf658c8fd7966d250e8a5da4f
diff --git a/director/lib/director/config.rb b/director/lib/director/config.rb index <HASH>..<HASH> 100644 --- a/director/lib/director/config.rb +++ b/director/lib/director/config.rb @@ -55,10 +55,15 @@ module Bosh::Director # checkpoint task progress every 30 secs @task_checkpoint_interval = 30 - ...
redis is too chatty in the task logs
cloudfoundry_bosh
train
6a03e926e4639708d21e689670dd827fc5d2f42e
diff --git a/cauldron/steptest/__init__.py b/cauldron/steptest/__init__.py index <HASH>..<HASH> 100644 --- a/cauldron/steptest/__init__.py +++ b/cauldron/steptest/__init__.py @@ -157,7 +157,12 @@ class StepTestCase(unittest.TestCase): res.thread.join() # Prevent threading race conditions + ch...
Test Support Strengthen project creation in test support to prevent threading issues during parallel testing.
sernst_cauldron
train
261d8ba93102b9143ffe1ddcf9c450e70d23728b
diff --git a/lightflow/config.py b/lightflow/config.py index <HASH>..<HASH> 100644 --- a/lightflow/config.py +++ b/lightflow/config.py @@ -57,6 +57,7 @@ class Config(metaclass=Singleton): return self.config.get(key, default) def update_from_file(self, filename): + print('Using configuration: {}'....
Improve the handling of errors in the signal receive loop
AustralianSynchrotron_lightflow
train
7cca2af6e213e17a92e200ab00e5072ff3533146
diff --git a/spec/filters/bugs/kernel.rb b/spec/filters/bugs/kernel.rb index <HASH>..<HASH> 100644 --- a/spec/filters/bugs/kernel.rb +++ b/spec/filters/bugs/kernel.rb @@ -1,6 +1,4 @@ opal_filter "Kernel" do - fails "A class definition allows the definition of class-level instance variables in a class method" - fai...
Re-enable ivars in classes spec
opal_opal
train
d0e320763968ddaa06dff18ff7ca0c8fb0843b06
diff --git a/runner/precise_runner/__init__.py b/runner/precise_runner/__init__.py index <HASH>..<HASH> 100644 --- a/runner/precise_runner/__init__.py +++ b/runner/precise_runner/__init__.py @@ -1,3 +1,3 @@ from .runner import PreciseRunner, PreciseEngine, ReadWriteStream -__version__ = '0.2.0' +__version__ = '0.2.1...
Increment runner version to <I>
MycroftAI_mycroft-precise
train
c42e53d70d879736dd793eec58a3093d9be36f4a
diff --git a/src/structures/User.js b/src/structures/User.js index <HASH>..<HASH> 100644 --- a/src/structures/User.js +++ b/src/structures/User.js @@ -224,7 +224,7 @@ class User { * @returns {Promise<UserProfile>} */ fetchProfile() { - return this.client.api.users[this.id].profile.get().then(data => new U...
Fixed User#fetchProfile, UserProfile#premium and added #flags (#<I>) * Fixed User#fetchProfile, UserProfile#premium and added #flags * made UserProfile#flags a getter and stored the raw bitfield under UserProfile#_flags * lowercased Flags
discordjs_discord.js
train
298a26e0b2d086a32f14ee675bf24322cc92ddd4
diff --git a/cli/cobra.go b/cli/cobra.go index <HASH>..<HASH> 100644 --- a/cli/cobra.go +++ b/cli/cobra.go @@ -2,10 +2,8 @@ package cli // import "github.com/docker/docker/cli" import ( "fmt" - "strings" "github.com/docker/docker/pkg/term" - "github.com/pkg/errors" "github.com/spf13/cobra" ) @@ -21,7 +19,...
Remove unused help command dockerd has no subcommands, so the help command is not used.
moby_moby
train
90c621e42e3bf7c9c48d8a570d3833335494f4fe
diff --git a/examples/rpcclient.py b/examples/rpcclient.py index <HASH>..<HASH> 100644 --- a/examples/rpcclient.py +++ b/examples/rpcclient.py @@ -34,5 +34,5 @@ if __name__ == "__main__": client = whizzer.UnixClient(loop, factory, "marshal_adder") client.connect() proxy = factory.proxy(0).result() - p...
ensure signals and timeouts for futures work properly
bfrog_whizzer
train
8d1e3388f6bda6f3a1d4fca68738eaf080965d65
diff --git a/examples/api_test.py b/examples/api_test.py index <HASH>..<HASH> 100644 --- a/examples/api_test.py +++ b/examples/api_test.py @@ -23,7 +23,7 @@ def create_app(): webview.load_html("<h1>Serverless application</h1>") api = Api() - webview.set_api(api) + webview.set_js_api(api) webview....
[WinForms] Name changes and better logging
r0x0r_pywebview
train
8ab4bb2ad3af26cfafd5ef704af7e3c2176ea56a
diff --git a/subconvert.py b/subconvert.py index <HASH>..<HASH> 100755 --- a/subconvert.py +++ b/subconvert.py @@ -101,6 +101,7 @@ class GenericSubParser(object): if st: # yield parsing result if new start marker occurred, then clear results if atom['time_from'] and atom['text']: + atom['text'...
Define generic sub formatting to known format.
mgoral_subconvert
train
39e6eb07865c03745e75fb53ea3d851fec81d5aa
diff --git a/CHANGELOG b/CHANGELOG index <HASH>..<HASH> 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,6 @@ = ActiveMerchant CHANGELOG +* Provide a C_STATE value of "Outside United States" for SageGateway when processing international customers [cody] * PayPal Website Payments Pro Canada supports Amex [cody] * ...
Provide a C_STATE value of 'Outside United States' for SageGateway when processing international customers
activemerchant_active_merchant
train
fa590af0d7201aff2f04e4387b9898318d723ca5
diff --git a/pypet/pypetlogging.py b/pypet/pypetlogging.py index <HASH>..<HASH> 100644 --- a/pypet/pypetlogging.py +++ b/pypet/pypetlogging.py @@ -122,7 +122,9 @@ def _change_logging_kwargs(kwargs): for prefix in ('', 'multiproc_'): for handler_dict in dictionary[prefix + 'handlers'].values(): ...
FIX: Removed mixed slashes for windows logging tests;
SmokinCaterpillar_pypet
train
6ef9fc281fed986c6b308c560f3790b263a7c90c
diff --git a/test/agent/agent_test.rb b/test/agent/agent_test.rb index <HASH>..<HASH> 100644 --- a/test/agent/agent_test.rb +++ b/test/agent/agent_test.rb @@ -3,11 +3,6 @@ require 'oj' Oj.default_options = {:mode => :strict} -# Stub out Agent discovery & announce requests -WebMock.stub_request(:get, "http://127.0....
Move stub_request to helper file
instana_ruby-sensor
train
c719fa1a8c82b9e3b795be9f3bdd1fa130834ea8
diff --git a/tests/unit/Model/RamlModelTest.php b/tests/unit/Model/RamlModelTest.php index <HASH>..<HASH> 100644 --- a/tests/unit/Model/RamlModelTest.php +++ b/tests/unit/Model/RamlModelTest.php @@ -11,8 +11,7 @@ use Symfony\Component\Yaml\Yaml; class RamlModelTest extends AbstractModelTest { -// const RAML_MODE...
WIP: ipristinate correct path
commercetools_commercetools-php-sdk
train
b5855ca615d3fc02d0838172d4e4010572e5482a
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100755 --- a/setup.py +++ b/setup.py @@ -106,6 +106,11 @@ setup( 'ldap = uri.scheme:URLScheme', 'telnet = uri.scheme:URLScheme', 'sftp = uri.scheme:URLScheme', + # Care of https://github.com/APSL/uri/commit/709b4b73daae7b8651b92fd4fa63af41c...
Additional protocol scheme declarations for mysql, redis, and mongodb.
marrow_uri
train
3e3ab66761d938afac8017996e0bf749618a4bf6
diff --git a/src/sap.m/src/sap/m/Button.js b/src/sap.m/src/sap/m/Button.js index <HASH>..<HASH> 100644 --- a/src/sap.m/src/sap/m/Button.js +++ b/src/sap.m/src/sap/m/Button.js @@ -558,7 +558,8 @@ sap.ui.define([ */ Button.prototype.onkeydown = function(oEvent) { - if (oEvent.which === KeyCodes.SPACE || oEvent.wh...
[FIX] sap.m.Button: does not fire press on Ctrl+ENTER BCP: <I> Change-Id: I<I>c<I>ab4ab<I>a<I>fa1f<I>dab9e<I>aba
SAP_openui5
train
60d8f48d1051207613491187981c618897a9a4ff
diff --git a/dallinger/recruiters.py b/dallinger/recruiters.py index <HASH>..<HASH> 100644 --- a/dallinger/recruiters.py +++ b/dallinger/recruiters.py @@ -258,7 +258,7 @@ class ProlificRecruiter(object): "reward": self.config.get( "prolific:reward" ), # This is the hourly rat...
Prolific studies are "ACTIVE", not "PUBLISHED"
Dallinger_Dallinger
train
34ec24564d66ec5817298e265dbce0ac2f647f6c
diff --git a/packages/mendel-pipeline/src/cache/client.js b/packages/mendel-pipeline/src/cache/client.js index <HASH>..<HASH> 100644 --- a/packages/mendel-pipeline/src/cache/client.js +++ b/packages/mendel-pipeline/src/cache/client.js @@ -39,6 +39,7 @@ class CacheClient extends EventEmitter { } connect(isRe...
Prevent server to swallow exceptions; more debug messages
yahoo_mendel
train
2c49566e1ee33cb358f44185a62cf13f6c1dd7e3
diff --git a/lib/lightchef/resources/base.rb b/lib/lightchef/resources/base.rb index <HASH>..<HASH> 100644 --- a/lib/lightchef/resources/base.rb +++ b/lib/lightchef/resources/base.rb @@ -30,8 +30,12 @@ module Lightchef super end - def run_command(type, *args) + def run_specinfra_command(type...
Rename run_command to run_specinfra_command.
itamae-kitchen_itamae
train
767c3b3b89cd60f22028cc062ba81cad604c31e1
diff --git a/app/controllers/assets_controller.rb b/app/controllers/assets_controller.rb index <HASH>..<HASH> 100644 --- a/app/controllers/assets_controller.rb +++ b/app/controllers/assets_controller.rb @@ -22,7 +22,8 @@ class AssetsController < ApplicationController params[:q] = '*' end - @assets = As...
Fuzzy taxon search functionality. *Really fuzzy* returns _Everything_ always. This will need to be improved vastly.
cortex-cms_cortex
train
5dbe92b8805cdc39986e374a85cf60c82fb2bea3
diff --git a/Entity/StopPointRepository.php b/Entity/StopPointRepository.php index <HASH>..<HASH> 100644 --- a/Entity/StopPointRepository.php +++ b/Entity/StopPointRepository.php @@ -30,8 +30,7 @@ class StopPointRepository extends EntityRepository $stopPoint->setPdfGenerationDate(new \DateTime()); $...
FIX about pdf generation on click.
CanalTP_MttBundle
train