hash
stringlengths
40
40
diff
stringlengths
131
114k
message
stringlengths
7
980
project
stringlengths
5
67
split
stringclasses
1 value
0321395ea9f0c4e20f89bc72e9dc3e32b42dec46
diff --git a/tablecodec/tablecodec.go b/tablecodec/tablecodec.go index <HASH>..<HASH> 100644 --- a/tablecodec/tablecodec.go +++ b/tablecodec/tablecodec.go @@ -559,7 +559,7 @@ func Unflatten(datum types.Datum, ft *types.FieldType, loc *time.Location) (type // EncodeIndexSeekKey encodes an index value to kv.Key. func...
types/question: fix the variable reallocation in the function EncodeIndexSeekKey (#<I>) (#<I>)
pingcap_tidb
train
24953567e069fff0cf34041253734242b3e95528
diff --git a/monolith/cli/base.py b/monolith/cli/base.py index <HASH>..<HASH> 100644 --- a/monolith/cli/base.py +++ b/monolith/cli/base.py @@ -77,6 +77,7 @@ class ExecutionManager(object): cmdparser = subparsers.add_parser(name, help=command.help) for argument in command.get_args(): ...
Added BaseCommand.setup_parser
lukaszb_monolith
train
3d0ae15a205403626fb997389747cc0bce3a8d9b
diff --git a/packages/sproutcore-metal/lib/core.js b/packages/sproutcore-metal/lib/core.js index <HASH>..<HASH> 100644 --- a/packages/sproutcore-metal/lib/core.js +++ b/packages/sproutcore-metal/lib/core.js @@ -353,6 +353,17 @@ SC.compare = function (v, w) { var type1 = SC.typeOf(v); var type2 = SC.typeOf(w); +...
Basic support for Comparable in SC.compare()
emberjs_ember.js
train
1f0727dab8d1d6293698ecd482144a62b5eb2b84
diff --git a/src/Sulu/Bundle/ContactBundle/Controller/AccountCategoryController.php b/src/Sulu/Bundle/ContactBundle/Controller/AccountCategoryController.php index <HASH>..<HASH> 100644 --- a/src/Sulu/Bundle/ContactBundle/Controller/AccountCategoryController.php +++ b/src/Sulu/Bundle/ContactBundle/Controller/AccountCate...
added check for empty string ids in account categories controller
sulu_sulu
train
5e68f2524cb59273ba01627721527f69c3d5bf09
diff --git a/rxjava-core/src/main/java/rx/Observable.java b/rxjava-core/src/main/java/rx/Observable.java index <HASH>..<HASH> 100644 --- a/rxjava-core/src/main/java/rx/Observable.java +++ b/rxjava-core/src/main/java/rx/Observable.java @@ -4478,6 +4478,17 @@ public class Observable<T> { } /** + * Ignores...
Implemented the 'IgnoreElements' operator
ReactiveX_RxJava
train
67f5817862cea7406b52fd4442b42967feddf205
diff --git a/sshd-shell-spring-boot-starter/src/main/java/sshd/shell/springboot/console/BaseUserInputProcessor.java b/sshd-shell-spring-boot-starter/src/main/java/sshd/shell/springboot/console/BaseUserInputProcessor.java index <HASH>..<HASH> 100644 --- a/sshd-shell-spring-boot-starter/src/main/java/sshd/shell/springboo...
Expanded visibility level to public in order to be able to extend UserInputProcessors
anand1st_sshd-shell-spring-boot
train
b54ee3d8fdaf497bcf9c588cb2c5839d6981d9df
diff --git a/girder/api/v1/folder.py b/girder/api/v1/folder.py index <HASH>..<HASH> 100644 --- a/girder/api/v1/folder.py +++ b/girder/api/v1/folder.py @@ -120,6 +120,23 @@ class Folder(Resource): return self._filter(folder) @Resource.endpoint + def DELETE(self, path, params): + """ + De...
Folder delete endpoint, and corresponding test My test found a bug! Yay!
girder_girder
train
b42d720b5bb5a01a4e57ba892fb45e317356d695
diff --git a/test-utils/utils/utils.go b/test-utils/utils/utils.go index <HASH>..<HASH> 100644 --- a/test-utils/utils/utils.go +++ b/test-utils/utils/utils.go @@ -60,7 +60,7 @@ type Utils struct { derefCacheLock sync.Mutex } -// NewUtils returnes new Utils struct for a given bucket name and subdirectory +// NewUti...
fix some typos for test-utils/utils/utils.go
kubernetes-retired_contrib
train
d38341b5e0a08e6846ee739413a5a3a8f95cccb8
diff --git a/lib/devise/rails/routes.rb b/lib/devise/rails/routes.rb index <HASH>..<HASH> 100644 --- a/lib/devise/rails/routes.rb +++ b/lib/devise/rails/routes.rb @@ -205,11 +205,15 @@ module ActionDispatch::Routing # Allow you to add authentication request from the router: # - # authenticate(:user) do...
Don't require explicit scope in authenticate router extension
plataformatec_devise
train
a4127490f17e5fd6870a20d4d23d96f27f882000
diff --git a/packages/modal/src/Modal.js b/packages/modal/src/Modal.js index <HASH>..<HASH> 100644 --- a/packages/modal/src/Modal.js +++ b/packages/modal/src/Modal.js @@ -20,6 +20,8 @@ const Modal = ({ onRequestClose, showCloseButton, children, + cardProps, + closeProps, }) => { const handleKeyDown = eve...
feat(modal): add customization for the card wrapper and the close icon affects: @crave/farmblocks-modal
CraveFood_farmblocks
train
9aa1af0ec43f894c3ffa7bcce03db5f397fa7b65
diff --git a/code/libraries/koowa/components/com_koowa/template/helper/bootstrap.php b/code/libraries/koowa/components/com_koowa/template/helper/bootstrap.php index <HASH>..<HASH> 100644 --- a/code/libraries/koowa/components/com_koowa/template/helper/bootstrap.php +++ b/code/libraries/koowa/components/com_koowa/templat...
bootstrap.min.css is removed
timble_kodekit
train
913fc0de56edb0b7ea25594638f28876d507f303
diff --git a/externs/window.js b/externs/window.js index <HASH>..<HASH> 100644 --- a/externs/window.js +++ b/externs/window.js @@ -129,12 +129,14 @@ function clearImmediate(immediateID) {} /** * @param {number|undefined?} intervalID * @see https://developer.mozilla.org/en/DOM/window.clearInterval + * @suppress {du...
Suppress duplicate on setTimeout and friends. ------------- Created by MOE: <URL>
google_closure-compiler
train
b401e0f6af6b6397e2ce38bbd374368a997df1a4
diff --git a/spec/support/models/tag.rb b/spec/support/models/tag.rb index <HASH>..<HASH> 100644 --- a/spec/support/models/tag.rb +++ b/spec/support/models/tag.rb @@ -5,4 +5,7 @@ require 'support/protobuf/tag_service' # class Tag < ::ActiveRemote::Base service_class ::Generic::Remote::TagService + + attr_accessor...
JSON serialization require attributes to be defined, so we need them on our helper model too.
liveh2o_active_remote
train
e1ca108e95046fee6ddd719a145fc48ddb78e8ac
diff --git a/lib/rlint/callback.rb b/lib/rlint/callback.rb index <HASH>..<HASH> 100644 --- a/lib/rlint/callback.rb +++ b/lib/rlint/callback.rb @@ -22,12 +22,22 @@ module Rlint # class Callback ## + # Hash containing custom options that have been set. + # + # @return [Hash] + # + attr_reader :o...
Options for callback classes. Callback classes used for Rlint::Iterator can now take a Hash containing custom options similar to Rack middelware.
YorickPeterse_ruby-lint
train
9bdd6ab1bb345092613764cc8a9d2be9896c688e
diff --git a/clustering/common/src/main/java/org/jboss/as/clustering/controller/AddStepHandler.java b/clustering/common/src/main/java/org/jboss/as/clustering/controller/AddStepHandler.java index <HASH>..<HASH> 100644 --- a/clustering/common/src/main/java/org/jboss/as/clustering/controller/AddStepHandler.java +++ b/clus...
Add support for add operation transformations.
wildfly_wildfly
train
de8ff9f0d1fd5b40f949faef745148b0f7b476e8
diff --git a/cas-server-core/src/main/java/org/jasig/cas/web/ServiceValidateController.java b/cas-server-core/src/main/java/org/jasig/cas/web/ServiceValidateController.java index <HASH>..<HASH> 100644 --- a/cas-server-core/src/main/java/org/jasig/cas/web/ServiceValidateController.java +++ b/cas-server-core/src/main/jav...
CAS-<I> expose an onSuccessfulValidation method to do things (if you want)
apereo_cas
train
94c9b87431d43bd12a81256386dc87607606b619
diff --git a/builder/azure/chroot/step_mount_device_test.go b/builder/azure/chroot/step_mount_device_test.go index <HASH>..<HASH> 100644 --- a/builder/azure/chroot/step_mount_device_test.go +++ b/builder/azure/chroot/step_mount_device_test.go @@ -1,3 +1,5 @@ +//+build linux,freebsd + package chroot import (
Only run on platforms supported by chroot.
hashicorp_packer
train
61ad38fb685f89a85b1ab39ef10633101b71798a
diff --git a/src/main/java/org/graphwalker/core/machine/ExecutionContext.java b/src/main/java/org/graphwalker/core/machine/ExecutionContext.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/graphwalker/core/machine/ExecutionContext.java +++ b/src/main/java/org/graphwalker/core/machine/ExecutionContext.java @@ -2...
Fix issue when compiling with jdk 8
GraphWalker_graphwalker-project
train
7753542057cd498b5932b0babea78aad8786b88e
diff --git a/flink-runtime/src/main/java/org/apache/flink/runtime/highavailability/HighAvailabilityServices.java b/flink-runtime/src/main/java/org/apache/flink/runtime/highavailability/HighAvailabilityServices.java index <HASH>..<HASH> 100644 --- a/flink-runtime/src/main/java/org/apache/flink/runtime/highavailability/H...
[FLINK-<I>][ha] Add default implementation for HighAvailabilityServices.cleanupJobData In order to not break the HighAvailabilityServices interface, this commit adds a default implementation for the HighAavilabilityServices.cleanupJobData method which does nothing. Users of this interface are recommended to override t...
apache_flink
train
bf8ffc47a482df2cdbc7e896fd8f965c97fb6d68
diff --git a/src/Symfony/Framework/WebBundle/Bundle.php b/src/Symfony/Framework/WebBundle/Bundle.php index <HASH>..<HASH> 100644 --- a/src/Symfony/Framework/WebBundle/Bundle.php +++ b/src/Symfony/Framework/WebBundle/Bundle.php @@ -3,10 +3,8 @@ namespace Symfony\Framework\WebBundle; use Symfony\Foundation\Bundle\Bun...
[WebBundle] removed unneeded code
symfony_symfony
train
61f57bfe78d5c4221b5baa8b20f5d870db9c6cf8
diff --git a/sastool/io/credo_cct/loader.py b/sastool/io/credo_cct/loader.py index <HASH>..<HASH> 100644 --- a/sastool/io/credo_cct/loader.py +++ b/sastool/io/credo_cct/loader.py @@ -11,12 +11,25 @@ from ... import classes2 class Loader(classes2.Loader): def __init__(self, basedir: str, recursive: bool = True, pr...
Efficiency enhancement on credo_cct.Loader
awacha_sastool
train
38c83abb0bb409782b6107fb258cdd70b3848786
diff --git a/client/my-sites/current-site/stale-cart-items-notice.js b/client/my-sites/current-site/stale-cart-items-notice.js index <HASH>..<HASH> 100644 --- a/client/my-sites/current-site/stale-cart-items-notice.js +++ b/client/my-sites/current-site/stale-cart-items-notice.js @@ -20,11 +20,10 @@ const staleCartItemNo...
Remove duration from StaleCartItemsNotice (#<I>) * Remove duration from StaleCartItemsNotice * Do not remove notice when CartStore changes * Remove existing notice if on upgrades section
Automattic_wp-calypso
train
e1c33ecf80bf0499d7c377663eab3fdf2b382dcc
diff --git a/molo/yourwords/wagtail_hooks.py b/molo/yourwords/wagtail_hooks.py index <HASH>..<HASH> 100644 --- a/molo/yourwords/wagtail_hooks.py +++ b/molo/yourwords/wagtail_hooks.py @@ -74,7 +74,7 @@ class YourWordsEntriesModelAdmin(ModelAdmin): 'is_winner', '_convert'] list_filter = [('sub...
Add the slug as a filter for competition entries
praekeltfoundation_molo.yourwords
train
e9782eebce54233444b17a023fb162e0d3496415
diff --git a/management/src/main/java/io/micronaut/management/endpoint/EndpointDefaultConfiguration.java b/management/src/main/java/io/micronaut/management/endpoint/EndpointDefaultConfiguration.java index <HASH>..<HASH> 100644 --- a/management/src/main/java/io/micronaut/management/endpoint/EndpointDefaultConfiguration....
EndpointDefaultConfiguration port should be nullable (#<I>)
micronaut-projects_micronaut-core
train
de9d31c7dda20e4c16e28d93652e0366813771dc
diff --git a/relaxng/datatype/java/src/org/whattf/datatype/AbstractRel.java b/relaxng/datatype/java/src/org/whattf/datatype/AbstractRel.java index <HASH>..<HASH> 100644 --- a/relaxng/datatype/java/src/org/whattf/datatype/AbstractRel.java +++ b/relaxng/datatype/java/src/org/whattf/datatype/AbstractRel.java @@ -24,7 +24,...
Don't bother with rel IRI checking because CURIEs
validator_validator
train
f6f3c15d6f3b6d64a1fb6e1e73e10f513dc640e7
diff --git a/anyconfig/backend/tests/xml.py b/anyconfig/backend/tests/xml.py index <HASH>..<HASH> 100644 --- a/anyconfig/backend/tests/xml.py +++ b/anyconfig/backend/tests/xml.py @@ -82,8 +82,8 @@ class Test_00(unittest.TestCase): self.assertTrue(dicts_equal(subdic, {"#text": 'A'})) def test_24__process...
refactor/change: fix too-many-argument: utilize keyword options and remove them and compute on demand, etc.
ssato_python-anyconfig
train
d5755151f12032a45cad125498e21ef6b3e4e148
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,7 @@ from setuptools import setup setup( name='missingno', + license='MIT License', packages=['missingno'], # this must be the same as the name above install_requires=['numpy', 'matplotlib', 'scipy'...
Add license to setup.py (#<I>)
ResidentMario_missingno
train
8a0e8f6c2939813873f05d41408297515fe81cf2
diff --git a/penn/laundry.py b/penn/laundry.py index <HASH>..<HASH> 100644 --- a/penn/laundry.py +++ b/penn/laundry.py @@ -40,7 +40,7 @@ class Laundry(object): data_improved = (filter(lambda x: len(x) > 0, data))[1:] # Construct the final JSON - laundry_dict = dict() + laundry_rooms = [] ...
all_halls from object to array. name inserted into each hall
pennlabs_penn-sdk-python
train
04f17669ccd388f8fa062d34acbb2d2c657aa9aa
diff --git a/internal/pipe/snapcraft/snapcraft.go b/internal/pipe/snapcraft/snapcraft.go index <HASH>..<HASH> 100644 --- a/internal/pipe/snapcraft/snapcraft.go +++ b/internal/pipe/snapcraft/snapcraft.go @@ -277,13 +277,20 @@ func create(ctx *context.Context, snap config.Snapcraft, arch string, binaries [ return nil ...
feat(snap): allow previous in review process (#<I>)
goreleaser_goreleaser
train
b749167b3fcb38f550dd397e1fbf7b86f385934c
diff --git a/clients/unshaded/src/main/java/tachyon/hadoop/AbstractTFS.java b/clients/unshaded/src/main/java/tachyon/hadoop/AbstractTFS.java index <HASH>..<HASH> 100644 --- a/clients/unshaded/src/main/java/tachyon/hadoop/AbstractTFS.java +++ b/clients/unshaded/src/main/java/tachyon/hadoop/AbstractTFS.java @@ -122,47 +1...
[TACHYON-<I>] Remove tachyon.async.enabled which is not used
Alluxio_alluxio
train
931c94c7209e84b47790bbc9685fbabd1f0ff492
diff --git a/.travis.yml b/.travis.yml index <HASH>..<HASH> 100644 --- a/.travis.yml +++ b/.travis.yml @@ -18,42 +18,42 @@ env: matrix: - TOX_ENV=py27-cdh-airflow_backend_mysql - TOX_ENV=py27-cdh-airflow_backend_sqlite -# - TOX_ENV=py27-cdh-airflow_backend_postgres + - TOX_ENV=py27-cdh-airflow_backen...
Fix postgres test by adhering to flask specs to return none in case userid not valid
apache_airflow
train
807674c4a9279c1167a8a6b6f5f05e804d1f798c
diff --git a/README.md b/README.md index <HASH>..<HASH> 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,8 @@ Finally, enable all of the rules that you would like to use. "lodash3/prop-shorthand": 1, "lodash3/matches-prop-shorthand": 1, "lodash3/prefer-chain": 1, - "lodash3/preferred-alias": 1 + ...
fix readme minor refactoring
wix_eslint-plugin-lodash
train
8fbab0f5c85564f72e14601240ecf732f71ee071
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -56,12 +56,12 @@ module.exports = function(options) { renderer = options.setup(renderer, stylusSource, stylusPath) } renderer.render(function(error, css) { - if (error)...
rewatch for changes even if there is an error
marcello3d_node-stylish
train
d6c5e269b5d4423a367f45d49acd7640734817eb
diff --git a/theme/preview.php b/theme/preview.php index <HASH>..<HASH> 100644 --- a/theme/preview.php +++ b/theme/preview.php @@ -8,7 +8,7 @@ $preview = 'standard'; } - if (! $site = get_site()) { + if (!$site = get_site()) { print_error('siteisnotdefined', 'debug'); } @@ -34,10 +...
Fix deprecated function calls.
moodle_moodle
train
9d3e22ddb2e38e39d0ea45847c5cfce0f9ada7be
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -280,7 +280,7 @@ exports.request = function (options, callback) { }); //Handle curl exit - curl.on('exit', function (code) { + curl.on('close', function (code) { try { ...
Modify exit 'event' to 'close' for that make sure emitting event after stdout flush
node-js-libs_curlrequest
train
ac84db43095ad881fa7128885ab84c83a406b9d5
diff --git a/explorer/utils.py b/explorer/utils.py index <HASH>..<HASH> 100644 --- a/explorer/utils.py +++ b/explorer/utils.py @@ -88,15 +88,15 @@ def extract_params(text): # Helpers -from django.contrib.admin.forms import AdminAuthenticationForm +from django.contrib.auth.forms import AuthenticationForm from djan...
allow non staff login if passed by permissions
groveco_django-sql-explorer
train
a6bb460497deae46f0c6848d7f918b74867a3725
diff --git a/src/helpers/EventHelper.php b/src/helpers/EventHelper.php index <HASH>..<HASH> 100644 --- a/src/helpers/EventHelper.php +++ b/src/helpers/EventHelper.php @@ -26,7 +26,6 @@ class EventHelper $cacheKey = 'DevGroup/EventsSystem:activeHandlersList'; $handlers = Yii::$app->cache->get($cacheKey...
removed packedJsonAttributes we use jsonEditor now and we do not need this behabior
DevGroup-ru_yii2-events-system
train
30a9e869b0c5529525521b0a5b8e64e5fcf23669
diff --git a/build/build.go b/build/build.go index <HASH>..<HASH> 100644 --- a/build/build.go +++ b/build/build.go @@ -266,6 +266,9 @@ func (s *Session) BuildFiles(filenames []string, pkgObj string, packagePath stri if err := s.BuildPackage(pkg); err != nil { return err } + if s.ImportContext.Packages["main"].Na...
don't build/run a non-main package (fixes #<I>)
gopherjs_gopherjs
train
0baed6e8e90f248d556d30b31ab4b5a7975d7a83
diff --git a/src/PhpPact/Http/GuzzleClient.php b/src/PhpPact/Http/GuzzleClient.php index <HASH>..<HASH> 100644 --- a/src/PhpPact/Http/GuzzleClient.php +++ b/src/PhpPact/Http/GuzzleClient.php @@ -17,7 +17,7 @@ class GuzzleClient implements ClientInterface public function __construct(array $config = []) { - ...
allow http auth for pact publish to the protected brocker
pact-foundation_pact-php
train
a1ddf75a2b95be1f15d062972a6e542da12f093b
diff --git a/servo-core/src/main/java/com/netflix/servo/examples/EchoServerExample.java b/servo-core/src/main/java/com/netflix/servo/examples/EchoServerExample.java index <HASH>..<HASH> 100644 --- a/servo-core/src/main/java/com/netflix/servo/examples/EchoServerExample.java +++ b/servo-core/src/main/java/com/netflix/ser...
Do not use import wildcards, and style fixes.
Netflix_servo
train
8ba54f5b75bbc8f111134896f1d1b72f86137271
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -13,13 +13,17 @@ module.exports = function(options) { options = mergeOptionsWithDefaults(options); var stream = through.obj(function(file, enc, callback) { + var self = this; if (file.isNull()) { - this.pu...
Wait until the build is complete before streaming
hoffi_gulp-msbuild
train
9af298a1cffba57d5bc0181d79be7399ebb7c77b
diff --git a/src/artax/Config.php b/src/artax/Config.php index <HASH>..<HASH> 100644 --- a/src/artax/Config.php +++ b/src/artax/Config.php @@ -27,23 +27,35 @@ namespace artax { use BucketSettersTrait; /** + * Initializes default configuration directive values * + * @param array $params ...
Moved actionable functionality out of Config class and made it a simple collection object used by the bootstrapper
amphp_artax
train
f743201f93e2443ad7d3dc4bafe6e242c42392ab
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -15,10 +15,11 @@ from distutils.core import setup setup(name='astral', - version='0.3', + version='0.4', description='Calculations for the position of the sun.', long_description="""Sun calculations f...
Updated for version <I>
sffjunkie_astral
train
efb0f5dcd0d8ee880abe5f645339bafa05bd81cd
diff --git a/packages/auth/index.js b/packages/auth/index.js index <HASH>..<HASH> 100644 --- a/packages/auth/index.js +++ b/packages/auth/index.js @@ -20,11 +20,11 @@ class Auth { } async init () { - if (!this.config.skipInitialSetup && !cubic.config.auth.certPrivate) { + if (!cubic.config.auth.skipInitia...
fix(auth): Fix issue where initial setup would never be skipped.
cubic-js_cubic
train
d4c202ab0badf62f1c8477f8f3b56c49f8e64766
diff --git a/lib/serverkit/loaders/base_loader.rb b/lib/serverkit/loaders/base_loader.rb index <HASH>..<HASH> 100644 --- a/lib/serverkit/loaders/base_loader.rb +++ b/lib/serverkit/loaders/base_loader.rb @@ -40,6 +40,13 @@ module Serverkit loaded_class.new({}) end + # @return [ERB] + def erb ...
Show ERB source file path on error backtrace
serverkit_serverkit
train
71145bc8a260de6d5c93c7664b74b936d26c8a7e
diff --git a/client/src/main/java/com/opentable/jaxrs/JaxRsClientConfig.java b/client/src/main/java/com/opentable/jaxrs/JaxRsClientConfig.java index <HASH>..<HASH> 100644 --- a/client/src/main/java/com/opentable/jaxrs/JaxRsClientConfig.java +++ b/client/src/main/java/com/opentable/jaxrs/JaxRsClientConfig.java @@ -93,15...
Removes redundant jaxrs client config getHttpClientMaxTotalConnections. Unifies it with getConnectionPoolSize. Note that the default for Jersey clients has effectively been decreaased, although we think the new default is still reasonable.
opentable_otj-jaxrs
train
865e00b45a166466b614a1dbcb8440e19453c58e
diff --git a/src/test/java/org/junit/tests/experimental/parallel/ParallelClassTest.java b/src/test/java/org/junit/tests/experimental/parallel/ParallelClassTest.java index <HASH>..<HASH> 100644 --- a/src/test/java/org/junit/tests/experimental/parallel/ParallelClassTest.java +++ b/src/test/java/org/junit/tests/experiment...
Improved Test: ParallelClassTest
junit-team_junit4
train
14a0211b6af41b05096413e1712eafe367ac0bb1
diff --git a/lib/tern.js b/lib/tern.js index <HASH>..<HASH> 100644 --- a/lib/tern.js +++ b/lib/tern.js @@ -453,7 +453,8 @@ if (query.end == null) throw new Error("missing .query.end field"); var wordStart = resolvePos(file, query.end), wordEnd = wordStart, text = file.text; while (wordStart && /\w$/.test...
Add expandWordForward option to completions query interface Issue #<I>
ternjs_tern
train
155a31f132f07815ee306e0f91e16d8bf24d30dc
diff --git a/sourcemapped-stacktrace.js b/sourcemapped-stacktrace.js index <HASH>..<HASH> 100644 --- a/sourcemapped-stacktrace.js +++ b/sourcemapped-stacktrace.js @@ -30,6 +30,7 @@ function(source_map_consumer) { * @param {Function} [opts.filter] - Filter function applied to each stackTrace line. * ...
Feature: Add opts.sync flag. Using opts.cacheGlobally and opts.sync together makes mapStackTrace suitable for use in Error.prepareStackTrace.
novocaine_sourcemapped-stacktrace
train
bce00b65be6f257045cb30e1cb0f243b95ed5c2c
diff --git a/upload/system/library/db/pgsql.php b/upload/system/library/db/pgsql.php index <HASH>..<HASH> 100644 --- a/upload/system/library/db/pgsql.php +++ b/upload/system/library/db/pgsql.php @@ -49,7 +49,7 @@ class PgSQL { return true; } } else { - throw new \Exception('Error: ' . pg_result_error($thi...
Replaced <br /> with <br>
opencart_opencart
train
b2845378851b2ee7deddee3d11e96025ba3b53a7
diff --git a/pkg/resources/aws/aws.go b/pkg/resources/aws/aws.go index <HASH>..<HASH> 100644 --- a/pkg/resources/aws/aws.go +++ b/pkg/resources/aws/aws.go @@ -2041,6 +2041,7 @@ func ListIAMInstanceProfiles(cloud fi.Cloud, clusterName string) ([]*resources.R Deleter: DeleteIAMInstanceProfile, Obj: profile, ...
Fix that states AWS IAM Instance Profile blocks IAM Role According to [aws-cli docs](<URL>), it is needed to delete any Instance profile that uses a role before deleting the actual role. This fix adds a "blocks" statement to the IAM Instance Profile, to declare that it should block the IAM Role deletion.
kubernetes_kops
train
89d2ecf4804625a300ecddc1a3307b1c87a84af1
diff --git a/aiger/aig.py b/aiger/aig.py index <HASH>..<HASH> 100644 --- a/aiger/aig.py +++ b/aiger/aig.py @@ -26,6 +26,9 @@ class AndGate(NamedTuple): def children(self): return (self.left, self.right) + def __hash__(self): + return hash(id(self)) + class Latch(NamedTuple): input: 'No...
make hashing of named tuple based on the idea
mvcisback_py-aiger
train
32cb58b37f37c97563201682508e44bcaef9d048
diff --git a/nunaliit2-js/src/main/webapp/nunaliit2/n2.couchModule.js b/nunaliit2-js/src/main/webapp/nunaliit2/n2.couchModule.js index <HASH>..<HASH> 100644 --- a/nunaliit2-js/src/main/webapp/nunaliit2/n2.couchModule.js +++ b/nunaliit2-js/src/main/webapp/nunaliit2/n2.couchModule.js @@ -1206,8 +1206,16 @@ var ModuleDisp...
nunaliit2-js: Help dialog. Compute size of content before dialog box is opened. Adjust height if it is predicted that the content will be larger than the window. Issue #<I>
GCRC_nunaliit
train
972860c179f00eed3f702a9d57ef5ea88a0450b9
diff --git a/src/main/java/me/prettyprint/cassandra/examples/ExampleDaoV2.java b/src/main/java/me/prettyprint/cassandra/examples/ExampleDaoV2.java index <HASH>..<HASH> 100644 --- a/src/main/java/me/prettyprint/cassandra/examples/ExampleDaoV2.java +++ b/src/main/java/me/prettyprint/cassandra/examples/ExampleDaoV2.java @...
Fix ExampleDaoV2 and enable its tests
hector-client_hector
train
363ccf3b61a14ad57d70009a7797ef563db02b6f
diff --git a/docs/assets/home.js b/docs/assets/home.js index <HASH>..<HASH> 100644 --- a/docs/assets/home.js +++ b/docs/assets/home.js @@ -23,7 +23,7 @@ define('home', [], function(require) { 'quick-start': function() { var iframe = document.getElementById('quick-start-iframe') - iframe.src = 'exampl...
Update timestamp for quick start page
seajs_seajs
train
85047f999cef1189f7c44b9471cd73d3dc256312
diff --git a/pyvista/plotting/plotting.py b/pyvista/plotting/plotting.py index <HASH>..<HASH> 100644 --- a/pyvista/plotting/plotting.py +++ b/pyvista/plotting/plotting.py @@ -3151,6 +3151,58 @@ class BasePlotter(PickingHelper, WidgetHelper): index or if ``views`` is a tuple or a list, link the given ...
Added link_views example (#<I>) * added link_views() example * Apply suggestions from code review
vtkiorg_vtki
train
2568e85770032b500989241bdabb9b9570c26891
diff --git a/salt/cloud/clouds/vmware.py b/salt/cloud/clouds/vmware.py index <HASH>..<HASH> 100644 --- a/salt/cloud/clouds/vmware.py +++ b/salt/cloud/clouds/vmware.py @@ -2548,11 +2548,11 @@ def create_snapshot(name, kwargs=None, call=None): .. note:: If the VM is powered on, the internal state of the V...
Changing memdump default from False to True in create_snapshot()
saltstack_salt
train
b1d1bcb5cffd077b8127be4aad4f0069882a3d78
diff --git a/package.json b/package.json index <HASH>..<HASH> 100644 --- a/package.json +++ b/package.json @@ -77,9 +77,9 @@ "stylus": "^0.54.5", "stylus-loader": "^2.1.1", "uglifyjs-webpack-plugin": "^0.4.6", + "vue": "^2.4.1", "vue-loader": "^10.1.0", "vue-router": "^2.7.0", - "vue": "^...
fix lint errors. (#<I>)
vuetifyjs_vuetify
train
b99a875cbbf436deefadfc66fdf1f85be4c3d3bb
diff --git a/Filter/NodePublicationConfigurator.php b/Filter/NodePublicationConfigurator.php index <HASH>..<HASH> 100644 --- a/Filter/NodePublicationConfigurator.php +++ b/Filter/NodePublicationConfigurator.php @@ -11,6 +11,7 @@ namespace Clastic\NodeBundle\Filter; use Doctrine\ORM\Mapping\ClassMetaData; use Doctri...
[Backoffice] Use safer checks to prevent unknown methods.
Clastic_NodeBundle
train
da239d30251908f891329ac1148c970a870b8855
diff --git a/markus/backends/logging.py b/markus/backends/logging.py index <HASH>..<HASH> 100644 --- a/markus/backends/logging.py +++ b/markus/backends/logging.py @@ -85,7 +85,7 @@ class LoggingMetrics(BackendBase): self._log('histogram', stat, value, tags) -def LoggingRollupMetrics(BackendBase): +class Lo...
Fix things I would have caught had I written tests first
willkg_markus
train
79b4bdeb2d9a5db95397b39f74bf5bc5cbe63545
diff --git a/h2o-core/src/main/java/hex/ModelBuilder.java b/h2o-core/src/main/java/hex/ModelBuilder.java index <HASH>..<HASH> 100644 --- a/h2o-core/src/main/java/hex/ModelBuilder.java +++ b/h2o-core/src/main/java/hex/ModelBuilder.java @@ -50,7 +50,9 @@ abstract public class ModelBuilder<M extends Model<M,P,O>, P extend...
Missing comments in public API of ModelBuilder
h2oai_h2o-3
train
df0f3ef2d78db8b2c4991c04349b1ed5f9f5ed5c
diff --git a/lib/tkellem/tkellem_server.rb b/lib/tkellem/tkellem_server.rb index <HASH>..<HASH> 100644 --- a/lib/tkellem/tkellem_server.rb +++ b/lib/tkellem/tkellem_server.rb @@ -16,14 +16,6 @@ require 'tkellem/plugins/push_service' module Tkellem -unless ActiveRecord::Base.connected? - ActiveRecord::Base.establi...
fix starting up tkellem pre-dir creation
codekitchen_tkellem
train
bc9d57f7b0893fc8b593952796d6dabd9e3ac945
diff --git a/morse_talk/plot.py b/morse_talk/plot.py index <HASH>..<HASH> 100644 --- a/morse_talk/plot.py +++ b/morse_talk/plot.py @@ -10,7 +10,8 @@ All rights reserved. """ import matplotlib.pyplot as plt -import morse_talk as mtalk + +from morse_talk.encoding import _encode_binary def _create_ax(ax): """ ...
Fix Access to a protected member _... of a client class
morse-talk_morse-talk
train
b66279ce7452ebd8d5f830b45a32814d9b0929c0
diff --git a/README.rst b/README.rst index <HASH>..<HASH> 100644 --- a/README.rst +++ b/README.rst @@ -74,6 +74,13 @@ Also, you can indicate a particular version condition, examples:: import somemodule # fades.pypi == 3 import somemodule # fades.pypi >= 2.1 +Sometimes, the project itself doesn't match t...
Support package names in the module comments. Fixes #<I>.
PyAr_fades
train
42b01beaca349200cc5c8dbf20e70faa7ae2c27a
diff --git a/staging/src/k8s.io/apiserver/pkg/storage/cacher.go b/staging/src/k8s.io/apiserver/pkg/storage/cacher.go index <HASH>..<HASH> 100644 --- a/staging/src/k8s.io/apiserver/pkg/storage/cacher.go +++ b/staging/src/k8s.io/apiserver/pkg/storage/cacher.go @@ -655,7 +655,7 @@ func (c *Cacher) Stop() { } c.stopLoc...
Cacher stopLock should be unlocked
kubernetes_kubernetes
train
233e7d147f9efb7cf381d8f5a80f2559c603ea0b
diff --git a/kubespawner/objects.py b/kubespawner/objects.py index <HASH>..<HASH> 100644 --- a/kubespawner/objects.py +++ b/kubespawner/objects.py @@ -394,6 +394,7 @@ def make_pvc( name, storage_class, access_modes, + selector, storage, labels=None, annotations=None, @@ -410,6 +411,8 @@...
Add support for matching persistent volume using storage selector.
jupyterhub_kubespawner
train
4030bb1f1f0c35b30ca7009e9ebd06849dd45306
diff --git a/btree.go b/btree.go index <HASH>..<HASH> 100644 --- a/btree.go +++ b/btree.go @@ -500,13 +500,14 @@ const ( // thus creating a "greaterOrEqual" or "lessThanEqual" rather than just a // "greaterThan" or "lessThan" queries. func (n *node) iterate(dir direction, start, stop Item, includeStart bool, hit boo...
Improve the iterate seek to O(logN) (#<I>) * improve the iterate seek to O(logN) * add benchmark
google_btree
train
3ab010c53a6ffcb7fba0ff14f60636d5d9a51040
diff --git a/src/Server/RequestResponse.php b/src/Server/RequestResponse.php index <HASH>..<HASH> 100644 --- a/src/Server/RequestResponse.php +++ b/src/Server/RequestResponse.php @@ -13,7 +13,7 @@ final class RequestResponse implements Jsonable, Arrayable private $isError = false; /** - * @param string|...
Handle exceptions during payload processing phase
upgate_laravel-jsonrpc
train
e90e6c2334efbce2e57928c5b99b4504c738d8f4
diff --git a/docroot/modules/custom/ymca_retention/src/LeaderboardManager.php b/docroot/modules/custom/ymca_retention/src/LeaderboardManager.php index <HASH>..<HASH> 100644 --- a/docroot/modules/custom/ymca_retention/src/LeaderboardManager.php +++ b/docroot/modules/custom/ymca_retention/src/LeaderboardManager.php @@ -3...
[YSR-7] Sniffer fix
ymcatwincities_openy
train
70283151f20fe943b991a425958e0245c93c2835
diff --git a/merkledag/merkledag_test.go b/merkledag/merkledag_test.go index <HASH>..<HASH> 100644 --- a/merkledag/merkledag_test.go +++ b/merkledag/merkledag_test.go @@ -5,6 +5,7 @@ import ( "fmt" "io" "io/ioutil" + "sync" "testing" blockservice "github.com/jbenet/go-ipfs/blockservice" @@ -95,72 +96,22 @@ ...
some cleanup, use WaitGroup over channel ugliness
ipfs_go-ipfs
train
c9020cda7fc8b61e62687cdbf60ce8045c3866f0
diff --git a/lib/ripl/debug.rb b/lib/ripl/debug.rb index <HASH>..<HASH> 100644 --- a/lib/ripl/debug.rb +++ b/lib/ripl/debug.rb @@ -10,8 +10,18 @@ module Ripl Debugger.run_init_script(StringIO.new) end + def _valid_syntax?(input) + eval(input, @binding, "ripl-debug syntax check", @line) + rescue...
works with multi-line by only wrapping loop_eval when valid syntax
cldwalker_ripl-debug
train
8f174962bf699f5d57128fe9e41c59dc99cc7444
diff --git a/devices.js b/devices.js index <HASH>..<HASH> 100755 --- a/devices.js +++ b/devices.js @@ -784,7 +784,8 @@ const devices = [ description: 'Mi/Aqara smart home cube', meta: {battery: {voltageToPercentage: '3V_2100'}}, fromZigbee: [fz.xiaomi_battery, fz.MFKZQ01LM_action_multistate, ...
Add angle and side properties the sensor cube (#<I>)
Koenkk_zigbee-shepherd-converters
train
6c13abc2817453706b0ea2bddafa24246d76e198
diff --git a/node/tag.js b/node/tag.js index <HASH>..<HASH> 100644 --- a/node/tag.js +++ b/node/tag.js @@ -30,8 +30,8 @@ function Tag(tagName, config, children) { this.key = config.key != null ? config.key : undefined; - this.namespace = config.attrs && config.attrs.xmlns || ""; - this.is = config.attrs && con...
Sets namespace & type extension of `Tag` node to `null` by default.
crysalead-js_dom-layer
train
4321949b483b13712b5fc7fa7682300d5b85c634
diff --git a/src/main/java/one/util/streamex/CharSpliterator.java b/src/main/java/one/util/streamex/CharSpliterator.java index <HASH>..<HASH> 100644 --- a/src/main/java/one/util/streamex/CharSpliterator.java +++ b/src/main/java/one/util/streamex/CharSpliterator.java @@ -126,7 +126,7 @@ import java.util.function.Consume...
[#<I>] CharSpliterator.estimateSize() fixed; additional spliterator tests
amaembo_streamex
train
6a15b33d69d8d66643bb8886f9916fa28ecaedea
diff --git a/molo/yourwords/templatetags/competition_tag.py b/molo/yourwords/templatetags/competition_tag.py index <HASH>..<HASH> 100644 --- a/molo/yourwords/templatetags/competition_tag.py +++ b/molo/yourwords/templatetags/competition_tag.py @@ -20,7 +20,7 @@ def your_words_competition(context): YourWords...
Return None if there is no competition
praekeltfoundation_molo.yourwords
train
9e84acbca968207223f93ca04c972bec2f292cd8
diff --git a/lib/flex_columns/definition/fake_column.rb b/lib/flex_columns/definition/fake_column.rb index <HASH>..<HASH> 100644 --- a/lib/flex_columns/definition/fake_column.rb +++ b/lib/flex_columns/definition/fake_column.rb @@ -20,6 +20,10 @@ module FlexColumns def type :string end + + de...
Fixes for different Rails versions.
ageweke_flex_columns
train
d65cc071bb3fd458f202d9e3a32fe0dfe1bcaf22
diff --git a/satpy/readers/__init__.py b/satpy/readers/__init__.py index <HASH>..<HASH> 100644 --- a/satpy/readers/__init__.py +++ b/satpy/readers/__init__.py @@ -218,6 +218,10 @@ class ReaderFinder(object): reader_names = set() reader_instances = [] + if filenames is None and sensor is None ...
Fix reader finder so it returns when not asked for anything Resampling in the Scene object requires making an empty Scene. There was an exception being raised because the reader finder was trying to search for files in path `None`.
pytroll_satpy
train
010ff395028e92d9654c2830490e406815352418
diff --git a/Database/Model.php b/Database/Model.php index <HASH>..<HASH> 100644 --- a/Database/Model.php +++ b/Database/Model.php @@ -229,16 +229,16 @@ class Model protected static function loadSchema() { // Make sure there's a place to store the schema - if (!array_key_exists(static::$_table...
Setting of the table name in models is now optional.
nirix_radium
train
ce43cf8f98f515e9dd54823f147f03500726fae5
diff --git a/admin/views/slider/slides.php b/admin/views/slider/slides.php index <HASH>..<HASH> 100755 --- a/admin/views/slider/slides.php +++ b/admin/views/slider/slides.php @@ -55,9 +55,9 @@ Editor::widget( [ 'selector' => '.content-editor', 'loadAssets' => true ] ); <input type="text" name="Slide[url]" placehol...
Updated for file uploader changes.
foxslider_cmg-plugin
train
bcb99cfb6a3b4883845208a2319532e9c6b71cba
diff --git a/app/helpers/alchemy/elements_helper.rb b/app/helpers/alchemy/elements_helper.rb index <HASH>..<HASH> 100644 --- a/app/helpers/alchemy/elements_helper.rb +++ b/app/helpers/alchemy/elements_helper.rb @@ -160,12 +160,15 @@ module Alchemy "#{element.name}_#{element.id}".html_safe end - # Rende...
Adds #element_preview_code_attributes in preparation for Slim and Haml support. * #element_preview_code_attributes returns the preview mode attributes as a hash * #element_preview_code was refactored to use above method and render the attributes as a string
AlchemyCMS_alchemy_cms
train
1cb2038b52caefe43c55a2b99137a1f101296702
diff --git a/scripts/tools/DeleteDeliveryScript.php b/scripts/tools/DeleteDeliveryScript.php index <HASH>..<HASH> 100644 --- a/scripts/tools/DeleteDeliveryScript.php +++ b/scripts/tools/DeleteDeliveryScript.php @@ -31,12 +31,16 @@ use oat\taoDeliveryRdf\model\Delete\DeliveryDeleteService; /** * sudo -u www-data php ...
feat: extend `DeleteDeliveryScript` to allow only linked Delivery Executions' removal --- [TR-<I>](<URL>)
oat-sa_extension-tao-delivery-rdf
train
b10f8ea7e5737ca1f974a795cfbf7b3f4fca870c
diff --git a/fedmsg/crypto/x509.py b/fedmsg/crypto/x509.py index <HASH>..<HASH> 100644 --- a/fedmsg/crypto/x509.py +++ b/fedmsg/crypto/x509.py @@ -235,12 +235,20 @@ def _load_remote_cert(location, cache, cache_expiry, tries=0, **config): Return the local filename. """ + alternative_cache = os.path.expand...
Stick with alternative cache location. Here's the story: - When we validate an incoming message, we try to check that it is signed with our CA and that it is not in our CRL. - When we do that, we check our local cache of those files. If they are too old, we grab them fresh from ``<URL>.
fedora-infra_fedmsg
train
f7a62680bc7df0f17efac83109daf3bdc14bc0f5
diff --git a/experiments/authentication/cookie.js b/experiments/authentication/cookie.js index <HASH>..<HASH> 100644 --- a/experiments/authentication/cookie.js +++ b/experiments/authentication/cookie.js @@ -1,36 +1,23 @@ -// wait for "load" rather than "DOMContentLoaded" -// to ensure that the iframe has finished loadi...
Simplify cookie-based authentication.
aaugustin_websockets
train
5aa5b93201f130da82d993741919c1726f716beb
diff --git a/owncloud/owncloud.py b/owncloud/owncloud.py index <HASH>..<HASH> 100644 --- a/owncloud/owncloud.py +++ b/owncloud/owncloud.py @@ -178,6 +178,15 @@ class ShareInfo(object): return self.share_info['displayname_owner'] return None + def get_name(self): + """Returns the name o...
Add "name" attribute for public links Ability to create links with a name and also retrieve and read the name.
owncloud_pyocclient
train
619dc5f558a71e7ef63ff29e94f4de9a9bc4a73c
diff --git a/packages/function-tree/providers.js b/packages/function-tree/providers.js index <HASH>..<HASH> 100644 --- a/packages/function-tree/providers.js +++ b/packages/function-tree/providers.js @@ -2,4 +2,3 @@ exports.ContextProvider = require('./lib/providers/Context').default exports.ExecutionProvider = require...
fix(function-tree): remove redux provider (#<I>)
cerebral_cerebral
train
1a4e0a4c87635c5ff5071aa0d66800ee467da4ad
diff --git a/erizo_controller/erizoClient/src/webrtc-stacks/BaseStack.js b/erizo_controller/erizoClient/src/webrtc-stacks/BaseStack.js index <HASH>..<HASH> 100644 --- a/erizo_controller/erizoClient/src/webrtc-stacks/BaseStack.js +++ b/erizo_controller/erizoClient/src/webrtc-stacks/BaseStack.js @@ -326,6 +326,14 @@ cons...
Ensure we use Setup actpass role when setting remote offers in Erizo Client (#<I>)
lynckia_licode
train
9628c6ffb1c0b78213b34f0a0e78e80835d8a416
diff --git a/spec/lib/appsignal/transaction_spec.rb b/spec/lib/appsignal/transaction_spec.rb index <HASH>..<HASH> 100644 --- a/spec/lib/appsignal/transaction_spec.rb +++ b/spec/lib/appsignal/transaction_spec.rb @@ -753,7 +753,6 @@ describe Appsignal::Transaction do end it "should call the params...
Remove puts debug statement from spec [ci skip]
appsignal_appsignal-ruby
train
58bf18ba3b49f3c9bef58ab431fef1a15ec39c9b
diff --git a/code/amf/CodeBankSnippets.php b/code/amf/CodeBankSnippets.php index <HASH>..<HASH> 100644 --- a/code/amf/CodeBankSnippets.php +++ b/code/amf/CodeBankSnippets.php @@ -149,7 +149,7 @@ class CodeBankSnippets implements CodeBank_APIClass { $packageDetails=array( ...
Storing of package id is now setup for creating and editing snippets
UndefinedOffset_silverstripe-codebank
train
a4078da648a57847d628f6abc730997ceca55666
diff --git a/plugins/inputs/mongodb/README.md b/plugins/inputs/mongodb/README.md index <HASH>..<HASH> 100644 --- a/plugins/inputs/mongodb/README.md +++ b/plugins/inputs/mongodb/README.md @@ -13,8 +13,10 @@ ## When true, collect per database stats # gather_perdb_stats = false + ## When true, collect per colle...
Skip collection stats when disabled in mongodb input (#<I>)
influxdata_telegraf
train
baf65edae5eaec2a1de740c56093149daab59bf4
diff --git a/lib/turtleio.js b/lib/turtleio.js index <HASH>..<HASH> 100644 --- a/lib/turtleio.js +++ b/lib/turtleio.js @@ -406,7 +406,7 @@ var TurtleIO = function () { } } - if (!regex.get.test(req.method) || status >= 400 || result["x-ratelimit-limit"]) { + if (!regex.get.test(req.method) || status >= 4...
Fixing erroneously dropping the `cache-control` header when the response is rate limited (no direct relationship)
avoidwork_turtle.io
train
aeaece94bf96161db2c42dcfb3c0daa346876b70
diff --git a/cake/libs/file.php b/cake/libs/file.php index <HASH>..<HASH> 100644 --- a/cake/libs/file.php +++ b/cake/libs/file.php @@ -166,9 +166,9 @@ class File extends Object { } if ($bytes === false) { $success = file_get_contents($this->pwd()); - } elseif ($this->open($mode, $force) === true) { + } e...
updating File::write() to handle different line endings, closes #<I> git-svn-id: <URL>
cakephp_cakephp
train
252d14db78f661d6bd69ddf9284e84e1b2f10365
diff --git a/grade/report/overview/lib.php b/grade/report/overview/lib.php index <HASH>..<HASH> 100644 --- a/grade/report/overview/lib.php +++ b/grade/report/overview/lib.php @@ -113,10 +113,13 @@ class grade_report_overview extends grade_report { global $CFG; // MDL-11679, only show 'mycourses' ins...
MDL-<I> Hiding courses with showgrades set to 0. Merging from MOODLE_<I>_STABLE
moodle_moodle
train
3be7f358926c35101587cd705b8e969475f0c010
diff --git a/parser.js b/parser.js index <HASH>..<HASH> 100644 --- a/parser.js +++ b/parser.js @@ -51,7 +51,7 @@ var block = blocks[ 0 ]; var result = [{}]; var end = this._getEnd( block); - var type = block.slice( 0, end ).split( ' ' ); + var type = block.slice( 0, end ).trim().split( ' ' ); var gotRemov...
[depending] niced the depending handling, more tolerances to whitespaces :3
plusgut_tempart
train
d90bfc117373971a9013d619445e27b4e57d2236
diff --git a/CHANGELOG.md b/CHANGELOG.md index <HASH>..<HASH> 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## next +- fix: Make sure that etag field is never null + ## 3.2.3 - fix: Only set etag if it is not empty. Sending empty `if-none-match` seem to cause issues with AWS load balanc...
fix: Make sure that etag field is never null
Unleash_unleash-client-java
train
367c252a83ab736e2f19372dc13710e73c1b1278
diff --git a/restcomm/restcomm.telephony/src/main/java/org/restcomm/connect/telephony/ua/UserAgentManager.java b/restcomm/restcomm.telephony/src/main/java/org/restcomm/connect/telephony/ua/UserAgentManager.java index <HASH>..<HASH> 100644 --- a/restcomm/restcomm.telephony/src/main/java/org/restcomm/connect/telephony/ua...
Adding more debug logs to ensure we remove the registration and active calls only after pinginterval * 3 and not being too aggressive
RestComm_Restcomm-Connect
train
16c32c6e479d006edcfd5b2934f47780f8e2b07f
diff --git a/jaraco/windows/dpapi.py b/jaraco/windows/dpapi.py index <HASH>..<HASH> 100644 --- a/jaraco/windows/dpapi.py +++ b/jaraco/windows/dpapi.py @@ -19,11 +19,12 @@ class DATA_BLOB(ctypes.Structure): A data blob structure for use with MS DPAPI functions. Initialize with string of characters - >>> blob = ...
Rewrite test that fails on Python 2.
jaraco_jaraco.windows
train
f5667c9cba66db60ab064efa5b9cb45cd8b3f444
diff --git a/lib/regknows.rb b/lib/regknows.rb index <HASH>..<HASH> 100755 --- a/lib/regknows.rb +++ b/lib/regknows.rb @@ -22,7 +22,6 @@ module Reg attr :sym def initialize(sym) @sym=sym - super end def === (obj)
Reg::Knows#initialize was failing
coatl_reg
train
d05463091977f691a3d2bf5ec04903383dfa86dd
diff --git a/core/lib/generators/refinery/form/templates/db/migrate/1_create_plural_name.rb b/core/lib/generators/refinery/form/templates/db/migrate/1_create_plural_name.rb index <HASH>..<HASH> 100644 --- a/core/lib/generators/refinery/form/templates/db/migrate/1_create_plural_name.rb +++ b/core/lib/generators/refinery...
Don't load seeds from migration in generated form extension.
refinery_refinerycms
train
c2a2a7112de73be71b0ba0f67e43a0c61f683d36
diff --git a/structr-ui/pom.xml b/structr-ui/pom.xml index <HASH>..<HASH> 100644 --- a/structr-ui/pom.xml +++ b/structr-ui/pom.xml @@ -65,6 +65,10 @@ <groupId>org.slf4j</groupId> <artifactId>log4j-over-slf4j</artifactId> </exclusion> + <exclusion...
Added POM exclusion for incompatible bouncycastle crypto provider, fixed bug in FileBase and Folder that prevented non-admin users from committing a transaction that modified objects that don't belong to that user.
structr_structr
train
d6822c45bd7c2966af0cff70d45e621a64e5669c
diff --git a/src/Illuminate/Routing/Exceptions/StreamedResponseException.php b/src/Illuminate/Routing/Exceptions/StreamedResponseException.php index <HASH>..<HASH> 100644 --- a/src/Illuminate/Routing/Exceptions/StreamedResponseException.php +++ b/src/Illuminate/Routing/Exceptions/StreamedResponseException.php @@ -25,7 ...
[9.x] Fix error introduced in #<I> (#<I>) Hey, this PR just fixes a small bug in the change not render exception inside a streamed download. Currently it accesses the `->message` property of a `Throwable`, which is not defined in the interface and is (in my case) protected, which results in a new error. This PR ju...
laravel_framework
train