hash
stringlengths
40
40
diff
stringlengths
131
114k
message
stringlengths
7
980
project
stringlengths
5
67
split
stringclasses
1 value
72c0e9dd648d64da2f54c9436f2b73b4cca54fee
diff --git a/lib/api/routes/preconditions/authentication.js b/lib/api/routes/preconditions/authentication.js index <HASH>..<HASH> 100644 --- a/lib/api/routes/preconditions/authentication.js +++ b/lib/api/routes/preconditions/authentication.js @@ -32,7 +32,7 @@ module.exports = function(req, res, next){ res...
Changed key to use uid instead of profile._id
grasshopper-cms_grasshopper-api-js
train
e6ba8eb0e4cf2350216324e29ac839eaee854dd0
diff --git a/lib/apipie_bindings/api.rb b/lib/apipie_bindings/api.rb index <HASH>..<HASH> 100644 --- a/lib/apipie_bindings/api.rb +++ b/lib/apipie_bindings/api.rb @@ -74,6 +74,8 @@ module ApipieBindings headers.merge!(config[:headers]) unless config[:headers].nil? headers.merge!(options.delete(:headers)) ...
Fexes #8 - Error responses are not logged
Apipie_apipie-bindings
train
23fd38be12f4d9bd2058c952947dd3af4341f527
diff --git a/app/assets/javascripts/fae/form/_ajax.js b/app/assets/javascripts/fae/form/_ajax.js index <HASH>..<HASH> 100644 --- a/app/assets/javascripts/fae/form/_ajax.js +++ b/app/assets/javascripts/fae/form/_ajax.js @@ -10,7 +10,6 @@ Fae.form.ajax = { init: function() { this.$addedit_form = $('.js-addedit-fo...
fix issue with undefined value being passed into validator function
wearefine_fae
train
fdb8879ea983582cc4602e9bc8c37f53c1a71bf0
diff --git a/lib/remi/data_set.rb b/lib/remi/data_set.rb index <HASH>..<HASH> 100644 --- a/lib/remi/data_set.rb +++ b/lib/remi/data_set.rb @@ -9,6 +9,8 @@ module Remi def_delegators :@interface, :open_for_write, :open_for_read, :close, :delete def_delegators :@active_row, :row_number, :last_row + class U...
DataSet by-group variable validation and spec.
inside-track_remi
train
54c7228b60b033c2638a01612d283351f1d10a9c
diff --git a/src/clc/APIv2/queue.py b/src/clc/APIv2/queue.py index <HASH>..<HASH> 100644 --- a/src/clc/APIv2/queue.py +++ b/src/clc/APIv2/queue.py @@ -11,6 +11,15 @@ Requests object variables: requests.error_requests requests.success_requests +Request object variables: + + (undocumented) + +Requestv2Exprimental ...
+add NIC support +requestv2experimental support
CenturyLinkCloud_clc-python-sdk
train
306f7469c3ba8dcf11348d206258f991368979b3
diff --git a/lib/DataDragon/DataDragonHelper.js b/lib/DataDragon/DataDragonHelper.js index <HASH>..<HASH> 100644 --- a/lib/DataDragon/DataDragonHelper.js +++ b/lib/DataDragon/DataDragonHelper.js @@ -39,7 +39,7 @@ const cache = new NodeCache({ // TODO: replace with settable cache? (see endpoin stdTTL: 4 * 60 * 60, // ...
fix(DataDragonHelper): use fs.readFile instead of require Require does have the advantage of caching files it reads, but that's also its drawback in this case. Objects could be mutated and lead to obfuscated bugs. Now reading files with fs to always get a new object.
Colorfulstan_LeagueJS
train
a5707bee656dfe4c59b8ec8f65c32f204480a593
diff --git a/hellocharts-library/src/lecho/lib/hellocharts/renderer/PieChartRenderer.java b/hellocharts-library/src/lecho/lib/hellocharts/renderer/PieChartRenderer.java index <HASH>..<HASH> 100644 --- a/hellocharts-library/src/lecho/lib/hellocharts/renderer/PieChartRenderer.java +++ b/hellocharts-library/src/lecho/lib/...
Remove circleRadius member variable from PieChartRenderer
lecho_hellocharts-android
train
0313fe879dc023a09a39b9738f2a7e458b162082
diff --git a/src/javascript/file/FileDrop.js b/src/javascript/file/FileDrop.js index <HASH>..<HASH> 100644 --- a/src/javascript/file/FileDrop.js +++ b/src/javascript/file/FileDrop.js @@ -13,11 +13,12 @@ define('moxie/file/FileDrop', [ 'moxie/core/utils/Dom', 'moxie/core/Exceptions', 'moxie/core/utils/Basic', + 'm...
Debug, FileInput/FileDrop: Log when instantiating.
moxiecode_moxie
train
8173b03d33a4bcc67302f92da347417c3583ebf3
diff --git a/CoreAsset.php b/CoreAsset.php index <HASH>..<HASH> 100644 --- a/CoreAsset.php +++ b/CoreAsset.php @@ -16,7 +16,7 @@ class CoreAsset extends AssetBundle * [$sourcePath description] * @var string */ - public $sourcePath = '@bower/fullcalendar/tag/dist'; + public $sourcePath = '@bower/...
Wrong path to "dist" directory "dist" directory is not inside "tag" directory
philippfrenzel_yii2fullcalendar
train
1b12d46001328a77bb7fac6c18134af2a14fe226
diff --git a/CHANGELOG.md b/CHANGELOG.md index <HASH>..<HASH> 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,14 @@ CHANGELOG](http://keepachangelog.com/) for how to update this file. This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased][unreleased] +### Fixed +- `setTimeout` is...
Schedule metrics interval on demand instead of recursively. Fixes #9
honeybadger-io_honeybadger-node
train
317405caf90c9c0653f0138827383ac5085f1a4a
diff --git a/openquake/job/__init__.py b/openquake/job/__init__.py index <HASH>..<HASH> 100644 --- a/openquake/job/__init__.py +++ b/openquake/job/__init__.py @@ -77,10 +77,10 @@ def run_job(job_file, output_type): try: results = a_job.launch() - except Exception as e: + except: ...
Fixed the catch all/raise idiom in run_job. The broken one was discarding the stack trace. Former-commit-id: <I>de<I>b<I>d<I>aaa<I>c<I>bf<I>cccbe<I>a<I>a
gem_oq-engine
train
92a96e2003eae4a16bc1e4fc2704ab204ae04188
diff --git a/auth/config/auth.social.php b/auth/config/auth.social.php index <HASH>..<HASH> 100644 --- a/auth/config/auth.social.php +++ b/auth/config/auth.social.php @@ -92,7 +92,7 @@ $config['auth_social_signon_providers'] = [ ], 'wrapper' => [ 'class' => 'Hybrid_Providers_Instagram', -...
chore: Replaced constant FCPATH with NAILS_APP_PATH
nails_module-auth
train
ec541a22b4ad15743e3685d00794375ed29e4ff7
diff --git a/resource_aws_network_acl_test.go b/resource_aws_network_acl_test.go index <HASH>..<HASH> 100644 --- a/resource_aws_network_acl_test.go +++ b/resource_aws_network_acl_test.go @@ -182,6 +182,18 @@ func TestAccAWSNetworkAcl_SubnetChange(t *testing.T) { } func TestAccAWSNetworkAcl_Subnets(t *testing.T) { +...
provider/aws: Add tests for Network ACL subnets
terraform-providers_terraform-provider-aws
train
d198e286a07aefc82311b470c130a3631e5a7779
diff --git a/MarkdownPP/Modules/TableOfContents.py b/MarkdownPP/Modules/TableOfContents.py index <HASH>..<HASH> 100644 --- a/MarkdownPP/Modules/TableOfContents.py +++ b/MarkdownPP/Modules/TableOfContents.py @@ -1,7 +1,7 @@ # Copyright (C) 2010 John Reese # Licensed under the MIT license -import re +import re, sys ...
Add support for [text][link] style links, fix re.sub bug with string.replace since we're not using re.sub with a regex anyway
jreese_markdown-pp
train
e48c761787af8eb3304172ccd8c9357adcaf3405
diff --git a/werkzeug/datastructures.py b/werkzeug/datastructures.py index <HASH>..<HASH> 100644 --- a/werkzeug/datastructures.py +++ b/werkzeug/datastructures.py @@ -1596,10 +1596,8 @@ class Accept(ImmutableList): list.__init__(self, values) else: self.provided = True - va...
Simplifies Accept header constructor. This commit removes the function calls and in-place sorting in favor of using the built-in `sorted` method with the appropriate `key` and `reverse` keyword arguments.
pallets_werkzeug
train
9e301e2a9d8bb0a011f75c78e346398fc82608e6
diff --git a/lib/lazy_resource/request.rb b/lib/lazy_resource/request.rb index <HASH>..<HASH> 100644 --- a/lib/lazy_resource/request.rb +++ b/lib/lazy_resource/request.rb @@ -30,7 +30,6 @@ module LazyResource def log_response(response) LazyResource.logger.info "[#{response.code}](#{(response.time * 1000)....
Response logger: Remove the body.
ahlatimer_lazy_resource
train
af9ca983ad0aeda516ace93d38bebc305c9bef2d
diff --git a/lib/Gitlab/Model/Event.php b/lib/Gitlab/Model/Event.php index <HASH>..<HASH> 100644 --- a/lib/Gitlab/Model/Event.php +++ b/lib/Gitlab/Model/Event.php @@ -13,8 +13,10 @@ class Event extends AbstractModel 'target_id', 'target_type', 'author_id', + 'author_username', ...
Expose username in project events and adder user object based on author_id to Event. Fixes #<I>
m4tthumphrey_php-gitlab-api
train
869499b0b6d5858994af3146edadae680cd09a38
diff --git a/trunk/JLanguageTool/src/java/de/danielnaber/languagetool/rules/de/CaseRule.java b/trunk/JLanguageTool/src/java/de/danielnaber/languagetool/rules/de/CaseRule.java index <HASH>..<HASH> 100644 --- a/trunk/JLanguageTool/src/java/de/danielnaber/languagetool/rules/de/CaseRule.java +++ b/trunk/JLanguageTool/src/j...
add "Für" and "Wider" as exceptions
languagetool-org_languagetool
train
09537344547dd6c52f8737c68ed7735b7ea6fcb3
diff --git a/src/Composer/ExtensionAutoloader.php b/src/Composer/ExtensionAutoloader.php index <HASH>..<HASH> 100644 --- a/src/Composer/ExtensionAutoloader.php +++ b/src/Composer/ExtensionAutoloader.php @@ -2,6 +2,7 @@ namespace Bolt\Composer; +use Bolt\Extension\ExtensionInterface; use Bolt\Filesystem\Filesystem...
Load a collection of extension classes
bolt_bolt
train
14c9b85b7947a9a6128a86498a469f50148415b3
diff --git a/atoma/simple.py b/atoma/simple.py index <HASH>..<HASH> 100644 --- a/atoma/simple.py +++ b/atoma/simple.py @@ -1,7 +1,9 @@ """Simple API that abstracts away the differences between feed types.""" from datetime import datetime, timedelta +import os from typing import Optional, List, Tuple +import urllib...
Generate fallback attachment title in simple API if needed
NicolasLM_atoma
train
817c1f74ae9a6c0ac5fe6c2e7960d5633b721d00
diff --git a/lib/subtle/param_constructor.rb b/lib/subtle/param_constructor.rb index <HASH>..<HASH> 100644 --- a/lib/subtle/param_constructor.rb +++ b/lib/subtle/param_constructor.rb @@ -5,8 +5,8 @@ class Object params.each do |attr, value| self.public_send("#{attr}=", value) end if params - ...
Make sure the instance-specific block is called last.
darrencauthon_subtle
train
fa5e644b745e7a15e105b782c455a549cd4734c9
diff --git a/writer.go b/writer.go index <HASH>..<HASH> 100644 --- a/writer.go +++ b/writer.go @@ -48,13 +48,15 @@ func NewMasterPlaylist() *MasterPlaylist { return p } -// Append variant to master playlist +// Append variant to master playlist. +// This operation does reset playlist cache. func (p *MasterPlaylis...
Changed logic of Slide(). Now it will not remove chunks until playlist length is equal winsize.
grafov_m3u8
train
e56e03c816285f59066bfc2fd5648fa2339375b1
diff --git a/test/Channel.js b/test/Channel.js index <HASH>..<HASH> 100644 --- a/test/Channel.js +++ b/test/Channel.js @@ -34,6 +34,7 @@ describe('Channel', function() { server2 = new Server(new MemorySocket()); server1.on('error', function() {}); + server2.on('error', function() {});...
Fix client and channel tests; mock server should expect error event.
gdaws_node-stomp
train
db9a7204d2304c36313a772afa3ab3632e093406
diff --git a/encoding/ewkb/scan_test.go b/encoding/ewkb/scan_test.go index <HASH>..<HASH> 100644 --- a/encoding/ewkb/scan_test.go +++ b/encoding/ewkb/scan_test.go @@ -20,7 +20,7 @@ func Example_scan() { } defer db.Close() - mock.ExpectQuery(`SELECT name, location FROM cities WHERE name = \?;`). + mock.ExpectQuery...
Make use of ST_AsBinary and ST_AsEWKB explicit in examples
twpayne_go-geom
train
6edc93707fc55e45403f07d4d1dc42be0ca6265e
diff --git a/src/main/java/com/github/webdriverextensions/internal/DefaultWebComponentFactory.java b/src/main/java/com/github/webdriverextensions/internal/DefaultWebComponentFactory.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/github/webdriverextensions/internal/DefaultWebComponentFactory.java +++ b/src/mai...
Fixing squid:S<I> - Catches should be combined.
webdriverextensions_webdriverextensions
train
5195161253a269c4c2e04971465c888503c43536
diff --git a/image.go b/image.go index <HASH>..<HASH> 100644 --- a/image.go +++ b/image.go @@ -19,7 +19,6 @@ import ( "image" "image/color" "math" - "runtime" "sync/atomic" "github.com/hajimehoshi/ebiten/internal/graphics" @@ -639,7 +638,6 @@ func (i *Image) Dispose() error { } i.mipmap.dispose() i.re...
graphics: Remove SetFinalizer at Image Package shareable should take care of this. Finalizers are called at arbitrary timing in a different goroutine and might cause tough problems. This might be related to #<I>.
hajimehoshi_ebiten
train
87069c1bc9d4bb1b77b7854d2311c51450d4d8f6
diff --git a/src/ValuSo/Service/BatchService.php b/src/ValuSo/Service/BatchService.php index <HASH>..<HASH> 100644 --- a/src/ValuSo/Service/BatchService.php +++ b/src/ValuSo/Service/BatchService.php @@ -83,7 +83,7 @@ class BatchService $options = is_array($options) ? $options : array(); $opt...
Adds 'verbose' option to batch API
valu-digital_valuso
train
f08badea97836271bdfcb0fb36c14bdcbaf80cf3
diff --git a/test/mp/compiler/compile-to-template-alipay.spec.js b/test/mp/compiler/compile-to-template-alipay.spec.js index <HASH>..<HASH> 100644 --- a/test/mp/compiler/compile-to-template-alipay.spec.js +++ b/test/mp/compiler/compile-to-template-alipay.spec.js @@ -28,14 +28,15 @@ function wrapHtml (code) { } func...
test: update test for scope-id
kaola-fed_megalo
train
bd26306339513c29668e7b8a8b96bcbcf6f03805
diff --git a/src/server_core.js b/src/server_core.js index <HASH>..<HASH> 100644 --- a/src/server_core.js +++ b/src/server_core.js @@ -127,7 +127,8 @@ module.exports = function(React, ReactDOMServer, static_files, html_base, tools) var entry = route.entry || "boot"; try { - var initial_da...
Refactored statelets to use output pattern for public consumption rather than return value
GrigoryGraborenko_boc
train
50481e76b27c0b4aa230fe86faeda82cd3c97be7
diff --git a/pysoa/server/server.py b/pysoa/server/server.py index <HASH>..<HASH> 100644 --- a/pysoa/server/server.py +++ b/pysoa/server/server.py @@ -634,12 +634,12 @@ class Server(object): try: settings = cls.settings_class(django_settings.SOA_SERVER_SETTINGS) except Attribu...
[MINOR] Improve logging configuration to not conflict with Django If Django `settings.LOGGING` is present, Django will call `logging.config.dictConfig`. This can conflict with PySOA's call to `logging.config.dictConfig` with `settings.SOA_SERVER_SETTINGS['logging']`. This change ensures that the two logging configs ar...
eventbrite_pysoa
train
4024b27084eaf1088cdf748b3b5d76827e9dc1b1
diff --git a/mongorest/__init__.py b/mongorest/__init__.py index <HASH>..<HASH> 100644 --- a/mongorest/__init__.py +++ b/mongorest/__init__.py @@ -1,4 +1,4 @@ # -*- encoding: UTF-8 -*- from __future__ import absolute_import, unicode_literals -__version__ = '2.5.1' +__version__ = '2.5.2' diff --git a/mongorest/resou...
<I> now every resource uses the args as parameters on finding
lvieirajr_mongorest
train
eb676519ba644036f302bb3dc65d7c4d97438385
diff --git a/superset/connectors/druid/models.py b/superset/connectors/druid/models.py index <HASH>..<HASH> 100644 --- a/superset/connectors/druid/models.py +++ b/superset/connectors/druid/models.py @@ -1331,10 +1331,10 @@ class DruidDatasource(Model, BaseDatasource): client=client, query_obj=query_obj, ph...
Moving homogenize_types to after no data exception (#<I>)
apache_incubator-superset
train
f0af4e449a21d7918f00ef0ebc26c793a8276d44
diff --git a/test/integration/test_buildconfigurations_api.py b/test/integration/test_buildconfigurations_api.py index <HASH>..<HASH> 100644 --- a/test/integration/test_buildconfigurations_api.py +++ b/test/integration/test_buildconfigurations_api.py @@ -1,7 +1,9 @@ import pytest +from pnc_cli import products from pn...
fix test_product_version_operations. <I>% coverage of buildconfigurations_api reached
project-ncl_pnc-cli
train
1a21b4c940893a7ed1308c179513dd9b31245822
diff --git a/packages/list-view/tests/list_view_test.js b/packages/list-view/tests/list_view_test.js index <HASH>..<HASH> 100644 --- a/packages/list-view/tests/list_view_test.js +++ b/packages/list-view/tests/list_view_test.js @@ -466,10 +466,12 @@ test("height change", function(){ deepEqual(itemPositions().map(yPos...
add height and width change post scroll test
emberjs_list-view
train
baa66b0babf407d54f2146b61c497621ae8f40e4
diff --git a/examples/fetch.js b/examples/fetch.js index <HASH>..<HASH> 100644 --- a/examples/fetch.js +++ b/examples/fetch.js @@ -4,8 +4,10 @@ var path = require("path"); nodegit.Repository.open(path.resolve(__dirname, "../.git")) .then(function(repo) { return repo.fetch("origin", { - credentials: functi...
Fixed fetch call. Fetch requires the credentials function to be wrapped in the callbacks object (otherwise the promise succeeds even though it has failed silently).
nodegit_nodegit
train
60257238deac86ec6fdd4f506ea80292909205b5
diff --git a/keanu-project/src/main/java/io/improbable/keanu/algorithms/variational/QDistribution.java b/keanu-project/src/main/java/io/improbable/keanu/algorithms/variational/QDistribution.java index <HASH>..<HASH> 100644 --- a/keanu-project/src/main/java/io/improbable/keanu/algorithms/variational/QDistribution.java +...
Remove bad character from java docs
improbable-research_keanu
train
af1d65ac01314cddc8a8142f4b666c2ee7b2acbe
diff --git a/VERSION b/VERSION index <HASH>..<HASH> 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.6.2 +0.6.3 diff --git a/lib/iron_worker_ng/feature/base.rb b/lib/iron_worker_ng/feature/base.rb index <HASH>..<HASH> 100644 --- a/lib/iron_worker_ng/feature/base.rb +++ b/lib/iron_worker_ng/feature/base.rb @@ -6,7 +6,7...
Yet another bundler fix (and version bump).
iron-io_iron_worker_ruby_ng
train
34b81ebace4bb6108f2fc4b57256bcb070683a42
diff --git a/src/unity/python/turicreate/toolkits/activity_classifier/util.py b/src/unity/python/turicreate/toolkits/activity_classifier/util.py index <HASH>..<HASH> 100644 --- a/src/unity/python/turicreate/toolkits/activity_classifier/util.py +++ b/src/unity/python/turicreate/toolkits/activity_classifier/util.py @@ -2...
Fixed another typo in the same documentation.
apple_turicreate
train
9bb75615986862cea97ebc4ca26d22fd9c2fc86e
diff --git a/auto_ml/utils.py b/auto_ml/utils.py index <HASH>..<HASH> 100644 --- a/auto_ml/utils.py +++ b/auto_ml/utils.py @@ -2,11 +2,12 @@ import csv import datetime import os +from keras.models import load_model as keras_load_model from sklearn.datasets import load_boston from sklearn.model_selection import tr...
adds extended keras, which can load a model without fitting it
ClimbsRocks_auto_ml
train
6741518162b8a79f8c554faed0baa03be720fe8b
diff --git a/agent.go b/agent.go index <HASH>..<HASH> 100644 --- a/agent.go +++ b/agent.go @@ -50,7 +50,7 @@ type discoveryS struct { Args []string `json:"args"` Fd string `json:"fd"` Inode string `json:"inode"` - CpuSetFileContent string `json:"cpuSetFileContent"` + ...
rename var in announcement request
instana_go-sensor
train
89480bcffdd393563a31366444a5801431772eda
diff --git a/addon/components/hot-replacement-component.js b/addon/components/hot-replacement-component.js index <HASH>..<HASH> 100644 --- a/addon/components/hot-replacement-component.js +++ b/addon/components/hot-replacement-component.js @@ -99,6 +99,9 @@ const HotReplacementComponent = Component.extend(HotComponentMi...
Fix for Assertion Failed: calling set on destroyed object (clean)
adopted-ember-addons_ember-cli-hot-loader
train
880442553fae2d5ad909c968719848a62c2a104c
diff --git a/openquake/calculators/base.py b/openquake/calculators/base.py index <HASH>..<HASH> 100644 --- a/openquake/calculators/base.py +++ b/openquake/calculators/base.py @@ -739,6 +739,11 @@ def get_gmfs(calculator): def save_gmf_data(dstore, sitecol, gmfs): + """ + :param dstore: a :class:`openquake.ba...
Updated a docstring [skip CI] Former-commit-id: c5aebd1d<I>f<I>ab<I>d<I>e4ba<I>e6ca<I>cb
gem_oq-engine
train
2386ee6de4aa64072c291023b7b494d105c63cda
diff --git a/skink/static/skink.js b/skink/static/skink.js index <HASH>..<HASH> 100644 --- a/skink/static/skink.js +++ b/skink/static/skink.js @@ -76,7 +76,7 @@ setup_skink_websocket = function() { "callback": callback_id, "name": err.name, "description": e...
Fixed missing semicolon in Javascript
oksome_Skink
train
332f4ab2d48686ba563a0452898345ae379f89fb
diff --git a/src/test/java/com/codahale/shamir/tests/SecretSharingTest.java b/src/test/java/com/codahale/shamir/tests/SecretSharingTest.java index <HASH>..<HASH> 100644 --- a/src/test/java/com/codahale/shamir/tests/SecretSharingTest.java +++ b/src/test/java/com/codahale/shamir/tests/SecretSharingTest.java @@ -88,7 +88,...
Use a parallel stream for round trips.
codahale_shamir
train
72c11aa71b539478e7522ae91fd5d6b1e30d5db8
diff --git a/services/master/master.go b/services/master/master.go index <HASH>..<HASH> 100644 --- a/services/master/master.go +++ b/services/master/master.go @@ -27,6 +27,20 @@ func branchParam(r *http.Request) string { return "master" } +func cat(w http.ResponseWriter, name string, fs *btrfs.FS) { + f, err := fs...
First stab at supporting wildcards in the master.
pachyderm_pachyderm
train
55e3acd9fa0bfb9fb008de6e13fb84f135b88923
diff --git a/tests/integration/upload-test.js b/tests/integration/upload-test.js index <HASH>..<HASH> 100644 --- a/tests/integration/upload-test.js +++ b/tests/integration/upload-test.js @@ -28,7 +28,7 @@ module('Integration | upload', function (hooks) { let uploadedPhoto = this.server.db.photos[0]; assert....
test(upload): updated filesize since chrome <I> reports it differently (#<I>)
adopted-ember-addons_ember-file-upload
train
0044724be83f1b9f1623e47547b136f7c85a24da
diff --git a/app/models/chouette/trident_active_record.rb b/app/models/chouette/trident_active_record.rb index <HASH>..<HASH> 100644 --- a/app/models/chouette/trident_active_record.rb +++ b/app/models/chouette/trident_active_record.rb @@ -19,12 +19,13 @@ class Chouette::TridentActiveRecord < Chouette::ActiveRecord ...
protect objectid auto generation from conflicts, Mantis <I>
afimb_ninoxe
train
f731b49b6954dd3006cf9039ed3b37c38d5b86ac
diff --git a/lib/rb/spec/nonblockingserver_spec.rb b/lib/rb/spec/nonblockingserver_spec.rb index <HASH>..<HASH> 100644 --- a/lib/rb/spec/nonblockingserver_spec.rb +++ b/lib/rb/spec/nonblockingserver_spec.rb @@ -142,7 +142,7 @@ class ThriftNonblockingServerSpec < Spec::ExampleGroup when :hello ...
rb: Switch NonblockingServer spec from Queue to sleep Using sleep instead of Queue#pop means the thread is killable under JRuby git-svn-id: <URL>
limingxinleo_thrift
train
8e87b107a98eddf34a9e96802620f0a0e66ec8a5
diff --git a/builtin/providers/ns1/resource_record.go b/builtin/providers/ns1/resource_record.go index <HASH>..<HASH> 100644 --- a/builtin/providers/ns1/resource_record.go +++ b/builtin/providers/ns1/resource_record.go @@ -236,7 +236,7 @@ func resourceDataToRecord(r *dns.Record, d *schema.ResourceData) error { var ...
provider/ns1: No splitting answer on spf records. (#<I>) * provider/ns1: No splitting answer on spf records. * provider/ns1: Adds acctest for SPF records.
hashicorp_terraform
train
ecf85c4b2dce71812db67ed1250db4309bbde207
diff --git a/lib/client.js b/lib/client.js index <HASH>..<HASH> 100644 --- a/lib/client.js +++ b/lib/client.js @@ -5,6 +5,7 @@ var Connection = require('./connection'); var protocol = require('./protocol'); var errors = require('./errors'); var _ = require('lodash'); +var Kafka = require('./index...
Re-map connections on metadata request, retry metadata request when broker information is not yet available
oleksiyk_kafka
train
60daf98c9619eece705d3c61c3ca9c21e1473e2a
diff --git a/grade/report/grader/module.js b/grade/report/grader/module.js index <HASH>..<HASH> 100644 --- a/grade/report/grader/module.js +++ b/grade/report/grader/module.js @@ -323,9 +323,9 @@ M.gradereport_grader.classes.ajax = function(report, cfg) { this.existingfields[userid][itemid] = new M.grad...
MDL-<I> core_grade:switched from hiding the submit button to disabling it if ajax is enabled
moodle_moodle
train
21c7b50a672707adf762460e01cbaf8dda55c5db
diff --git a/pymatgen/core/composition.py b/pymatgen/core/composition.py index <HASH>..<HASH> 100644 --- a/pymatgen/core/composition.py +++ b/pymatgen/core/composition.py @@ -14,7 +14,7 @@ import re import string from functools import total_ordering from itertools import combinations_with_replacement, product -from ...
Do not use Literal types for now
materialsproject_pymatgen
train
a6e4ba4b438851d8669f73337b3b766faa8f60f7
diff --git a/core/src/test/java/org/modelmapper/functional/circular/CircularDependencies1.java b/core/src/test/java/org/modelmapper/functional/circular/CircularDependencies1.java index <HASH>..<HASH> 100644 --- a/core/src/test/java/org/modelmapper/functional/circular/CircularDependencies1.java +++ b/core/src/test/java/...
Updated circular dependency test for skipped properties
modelmapper_modelmapper
train
90928b173dff8e10b533bf5c3b701d5a158228e6
diff --git a/framework/oryx-lambda-serving/src/main/java/com/cloudera/oryx/lambda/serving/ModelManagerListener.java b/framework/oryx-lambda-serving/src/main/java/com/cloudera/oryx/lambda/serving/ModelManagerListener.java index <HASH>..<HASH> 100644 --- a/framework/oryx-lambda-serving/src/main/java/com/cloudera/oryx/lam...
If update consumer fails, try to shut down the serving/speed layer
OryxProject_oryx
train
9043e1b7739d984e449524d6cc5d9b3812dd07a2
diff --git a/package/environments/base.js b/package/environments/base.js index <HASH>..<HASH> 100644 --- a/package/environments/base.js +++ b/package/environments/base.js @@ -30,7 +30,7 @@ const getPluginList = () => { const result = new ConfigList() result.append( 'Environment', - new webpack.Environment...
Fixed no need parsing (#<I>)
rails_webpacker
train
3e7c9f3d5c12e99b76c4dfaccb982f0fcc177281
diff --git a/blinkpy/sync_module.py b/blinkpy/sync_module.py index <HASH>..<HASH> 100644 --- a/blinkpy/sync_module.py +++ b/blinkpy/sync_module.py @@ -189,7 +189,7 @@ class BlinkSyncModule(): clip = entry['media'] timestamp = entry['created_at'] if self.check_new_video...
Mask motion detection with sync module arm status
fronzbot_blinkpy
train
2de7de3bc31c99236d70a31477e66652988ae89d
diff --git a/lib/plucky/options_hash.rb b/lib/plucky/options_hash.rb index <HASH>..<HASH> 100644 --- a/lib/plucky/options_hash.rb +++ b/lib/plucky/options_hash.rb @@ -17,16 +17,24 @@ module Plucky def initialize_copy(source) super @source = @source.dup - each do |key, value| + @source.each ...
Explicit > method missing for options hash
mongomapper_plucky
train
69e8609e2d0934be7838f05eccc14b7dc369fd02
diff --git a/ExpressionBuilderTest.php b/ExpressionBuilderTest.php index <HASH>..<HASH> 100644 --- a/ExpressionBuilderTest.php +++ b/ExpressionBuilderTest.php @@ -20,6 +20,7 @@ class ExpressionBuilderTest extends \PHPUnit_Framework_TestCase public function testAndX() { $expr = $this->builder->andX($t...
[DDC-<I>] Some refactorings.
doctrine_collections
train
24d6e1be38ff9025e35a26509338dbd23bb1d60e
diff --git a/tests/helpers/PahoutHelper.php b/tests/helpers/PahoutHelper.php index <HASH>..<HASH> 100644 --- a/tests/helpers/PahoutHelper.php +++ b/tests/helpers/PahoutHelper.php @@ -3,6 +3,7 @@ namespace Pahout\Test\helper; use Pahout\Pahout; +use Pahout\Config; use Pahout\Tool\Base; use \ast\Node; @@ -18,6 +1...
Fix the problem that the test is failed when running specific test
wata727_pahout
train
350530fd4cf92321a36c13e10284291cce1de212
diff --git a/kubespawner/spawner.py b/kubespawner/spawner.py index <HASH>..<HASH> 100644 --- a/kubespawner/spawner.py +++ b/kubespawner/spawner.py @@ -1360,6 +1360,10 @@ class KubeSpawner(Spawner): if not self.events.stopped(): self.events.stop() self.events = None + + ...
avoid failure to delete pods that don’t exist stopping could raise <I> if it doesn’t exist (e.g. already deleted). Log this as a warning instead of raising.
jupyterhub_kubespawner
train
003a1d411e7dc65e03d871711e692b1b8d85dc18
diff --git a/ratcave/physical.py b/ratcave/physical.py index <HASH>..<HASH> 100644 --- a/ratcave/physical.py +++ b/ratcave/physical.py @@ -141,6 +141,10 @@ class PhysicalGraph(Physical, SceneGraph): self._model_matrix_global = np.identity(4, dtype=np.float32) self._normal_matrix_global = np.identity(4...
PhysicalGraph.on_change() has now calculations of model_matrix_transform in each iteration
ratcave_ratcave
train
6e663f500ced34f6c94e0e65fdfc38315704a612
diff --git a/lib/pkgcloud/amazon/storage/client/files.js b/lib/pkgcloud/amazon/storage/client/files.js index <HASH>..<HASH> 100644 --- a/lib/pkgcloud/amazon/storage/client/files.js +++ b/lib/pkgcloud/amazon/storage/client/files.js @@ -109,7 +109,7 @@ exports.multipartUpload = function (options, callback) { // Wait...
[api] Allow querystring params to be sent on Amazon requests
pkgcloud_pkgcloud
train
92264908208a4abc75410925c3bd35ea8723b5bd
diff --git a/src/Traits/PathTrait.php b/src/Traits/PathTrait.php index <HASH>..<HASH> 100644 --- a/src/Traits/PathTrait.php +++ b/src/Traits/PathTrait.php @@ -277,53 +277,58 @@ trait PathTrait $filename = null; $isAbsolute = false; $aboveBaseLevel = 0; + $i = 0; - // Go throug...
Refactor myParse method in PathTrait
themichaelhall_datatypes
train
b076785c4600ec23dcd37787a1dbd841fae82521
diff --git a/packages/neos-ui-editors/src/Library/LinkInput.js b/packages/neos-ui-editors/src/Library/LinkInput.js index <HASH>..<HASH> 100644 --- a/packages/neos-ui-editors/src/Library/LinkInput.js +++ b/packages/neos-ui-editors/src/Library/LinkInput.js @@ -174,9 +174,13 @@ export default class LinkInput extends PureC...
TASK: Improve visibility of assets sources As we now see more than local assets and documents in the look up search, we also need to group the output. For instance the AssetEditor handles search results in grouped option lists.
neos_neos-ui
train
5a6d99b83030b8da33e1655a97f9fbd45aa21247
diff --git a/lib/sass/css.rb b/lib/sass/css.rb index <HASH>..<HASH> 100644 --- a/lib/sass/css.rb +++ b/lib/sass/css.rb @@ -266,7 +266,7 @@ module Sass rules = OrderedHash.new root.children.select { |c| Tree::RuleNode === c }.each do |child| root.children.delete child - first, rest = child....
css2sass doesn't get confused by CSS rules starting with . or # This caused it to trip up on stuff like .a.b .c { a: b } .a.b .d { a: b }
sass_ruby-sass
train
be5d0e4f610136882b77bd9c96905cc47cfd554e
diff --git a/src/javascript/runtime/silverlight/image/Image.js b/src/javascript/runtime/silverlight/image/Image.js index <HASH>..<HASH> 100644 --- a/src/javascript/runtime/silverlight/image/Image.js +++ b/src/javascript/runtime/silverlight/image/Image.js @@ -15,13 +15,14 @@ define("moxie/runtime/silverlight/image/Imag...
Image, Silverlight: Adapt getInfo() for thumb extraction.
moxiecode_moxie
train
269173940d7353957956425d50eb27071698f960
diff --git a/CHANGES.rst b/CHANGES.rst index <HASH>..<HASH> 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -52,3 +52,7 @@ v1.0.0 v1.0.1 ----------- * Use MEDIA_URL setting in test cases + +v1.0.2[unreleased] +----------- +* Remove ovp_users as dependency diff --git a/ovp_uploads/models.py b/ovp_uploads/models.py inde...
Remove ovp_users as dependency
OpenVolunteeringPlatform_django-ovp-uploads
train
efe9077071ede5b6646b91b697238d790bcb7120
diff --git a/tools/scheduler.py b/tools/scheduler.py index <HASH>..<HASH> 100644 --- a/tools/scheduler.py +++ b/tools/scheduler.py @@ -494,10 +494,14 @@ class MPIScheduler(BaseScheduler): cpus, mem = self.getResource(offer) logger.debug('got resource offer %s: cpus:%s, mem:%s at %s', ...
reject offer temporarily when resources are still pending.
douban_dpark
train
8b37e36e72cba24c4fc9a52f9a577293fa067e66
diff --git a/test/second-test.js b/test/second-test.js index <HASH>..<HASH> 100644 --- a/test/second-test.js +++ b/test/second-test.js @@ -31,6 +31,21 @@ vows.describe("Test 2").addBatch({ assert.equal(4, topic.iact[3]); assert.equal(1, topic.iact[4]); assert.equal(13, topic.iact[...
Add Lagrange test for second-test.
albertosantini_node-quadprog
train
e1f478633e1e6e86da29b1f4d58e0af3a6b0641f
diff --git a/src/server/worker/master.go b/src/server/worker/master.go index <HASH>..<HASH> 100644 --- a/src/server/worker/master.go +++ b/src/server/worker/master.go @@ -409,11 +409,14 @@ func (a *APIServer) runJob(ctx context.Context, jobInfo *pps.JobInfo, pool *pool } tree := hashtree.NewHashTree() var stat...
Update worker master to write skipped state
pachyderm_pachyderm
train
33ab5db81ae175032c725f4c3e1bf379b519a1fc
diff --git a/livereload/__init__.py b/livereload/__init__.py index <HASH>..<HASH> 100644 --- a/livereload/__init__.py +++ b/livereload/__init__.py @@ -1,5 +1,5 @@ """django-livereload""" -__version__ = '1.3' +__version__ = '1.4' __license__ = 'BSD License' __author__ = 'Fantomas42'
Bumping to version <I>
Fantomas42_django-livereload
train
e7850bb3d98f43ec110c5a9f1381b93c0ec6ccd4
diff --git a/tests/db_loader_unittest.py b/tests/db_loader_unittest.py index <HASH>..<HASH> 100644 --- a/tests/db_loader_unittest.py +++ b/tests/db_loader_unittest.py @@ -467,6 +467,7 @@ class CsvLoaderTestCase(unittest.TestCase): self.assertEqual(csv_headers, expected_headers) # Skip the end-to-end tes...
will move end_to_end tests to db_tests/ folder after CI is setup to run db_tests Former-commit-id: a<I>c<I>b<I>d<I>b4c<I>d6f<I>ae<I>
gem_oq-engine
train
8055323fb622604c7ce633b59097ae270f93661f
diff --git a/lib/kat/search.rb b/lib/kat/search.rb index <HASH>..<HASH> 100644 --- a/lib/kat/search.rb +++ b/lib/kat/search.rb @@ -130,10 +130,6 @@ module Kat build_query end - def sort? - sorts.any? { |k, v| @options[:sort] && k == @options[:sort].intern } - end - # # Perform the sea...
Removed busted 'sort is not functioning' message
fissionxuiptz_kat
train
82c37742811c3fc7a0fd2abd9a5ffc9de2aa69fb
diff --git a/src/main/java/com/relayrides/pushy/apns/FeedbackServiceConnection.java b/src/main/java/com/relayrides/pushy/apns/FeedbackServiceConnection.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/relayrides/pushy/apns/FeedbackServiceConnection.java +++ b/src/main/java/com/relayrides/pushy/apns/FeedbackServ...
Publicized FeedbackServiceConnetion and de-horrible-ized its docs.
relayrides_pushy
train
5a210c15620d30b9cd00dda08c8efd079e4d0aa5
diff --git a/spec/httparty/request_spec.rb b/spec/httparty/request_spec.rb index <HASH>..<HASH> 100644 --- a/spec/httparty/request_spec.rb +++ b/spec/httparty/request_spec.rb @@ -1,14 +1,18 @@ require File.join(File.dirname(__FILE__), '..', 'spec_helper') describe HTTParty::Request do - def stub_response(body, typ...
I lied, more refactoring of request_spec to slim it down.
jnunemaker_httparty
train
e779d771fab3fe19bcb852aa71c1d86226e02c24
diff --git a/PhpAmqpLib/Channel/AMQPChannel.php b/PhpAmqpLib/Channel/AMQPChannel.php index <HASH>..<HASH> 100644 --- a/PhpAmqpLib/Channel/AMQPChannel.php +++ b/PhpAmqpLib/Channel/AMQPChannel.php @@ -35,6 +35,17 @@ class AMQPChannel extends AbstractChannel "90,21" => "tx_commit_ok", "90,31" => "tx_roll...
Added basic_return message handling. New function AMQPChannel.set_return_listener. In case the the callback is not set, it will sent the debug message.
php-amqplib_php-amqplib
train
f69ad08cb985972e66af4782f5d08ed06eca94de
diff --git a/aeron-system-tests/src/test/java/io/aeron/archive/ReplayMergeTest.java b/aeron-system-tests/src/test/java/io/aeron/archive/ReplayMergeTest.java index <HASH>..<HASH> 100644 --- a/aeron-system-tests/src/test/java/io/aeron/archive/ReplayMergeTest.java +++ b/aeron-system-tests/src/test/java/io/aeron/archive/Re...
[Java] Make sure we don't timeout unnecessarily.
real-logic_aeron
train
fa680bded718653a64ba747887c71a956e044223
diff --git a/command/agent/http.go b/command/agent/http.go index <HASH>..<HASH> 100644 --- a/command/agent/http.go +++ b/command/agent/http.go @@ -393,7 +393,7 @@ func (s *HTTPServer) wrap(handler func(resp http.ResponseWriter, req *http.Reque // marshalJSON marshals the object into JSON, respecting the user's pretty-...
Defaults to pretty JSON in dev mode.
hashicorp_consul
train
974946c730a4a5004243cdfd9a1f96710c4b7c51
diff --git a/object/src/main/java/com/orientechnologies/orient/object/db/ODatabasePojoAbstract.java b/object/src/main/java/com/orientechnologies/orient/object/db/ODatabasePojoAbstract.java index <HASH>..<HASH> 100644 --- a/object/src/main/java/com/orientechnologies/orient/object/db/ODatabasePojoAbstract.java +++ b/obje...
Fix by Enrico Risa about the handling of ENUMs as parameter of a query
orientechnologies_orientdb
train
c6a68ef904ccfd51a0d57292d848f2ecf42f1d8d
diff --git a/test/StoragelessSessionTest/Session/DataTest.php b/test/StoragelessSessionTest/Session/DataTest.php index <HASH>..<HASH> 100644 --- a/test/StoragelessSessionTest/Session/DataTest.php +++ b/test/StoragelessSessionTest/Session/DataTest.php @@ -61,4 +61,13 @@ final class DataTest extends PHPUnit_Framework_Tes...
Containers are empty if data is removed from it
psr7-sessions_storageless
train
7195c5dca5fd52d89b471659ae865ed00082efd3
diff --git a/sramongo/xml_helpers.py b/sramongo/xml_helpers.py index <HASH>..<HASH> 100644 --- a/sramongo/xml_helpers.py +++ b/sramongo/xml_helpers.py @@ -17,7 +17,7 @@ def valid_path(func): def new_func(*args, **kwargs): # If the current path is present if args[1] is None: - logger.wa...
Changes warnging to debug message.
jfear_sramongo
train
0d92860e23c0b7843dd5fe8dbe20ee314b9ce6ce
diff --git a/src/RemoteProcessor.php b/src/RemoteProcessor.php index <HASH>..<HASH> 100644 --- a/src/RemoteProcessor.php +++ b/src/RemoteProcessor.php @@ -24,16 +24,25 @@ abstract class RemoteProcessor { { $target = $this->getConfiguredServer($host) ?: $host; - $script = 'set -e'.PHP_EOL.$task->script; + // He...
Added ability to run scripts locally without SSH.
laravel_envoy
train
cb77cf12621ab7d3eddb4ccbe60f23716b5cc47c
diff --git a/course/lib.php b/course/lib.php index <HASH>..<HASH> 100644 --- a/course/lib.php +++ b/course/lib.php @@ -1227,9 +1227,9 @@ function print_section_add_menus($course, $section, $modnames, $vertical=false, } // we need to loop through the forms and check to see if we can add them. - foreach (...
fixed problem in restricted modules - mods were accessed using strtolower(translated module name) instead of directory name as usual, it partially worked for English; merged from MOODLE_<I>_STABLE
moodle_moodle
train
bdf65de6ff948df1f44b0c983df87ff9d89ab688
diff --git a/spec/buster.js b/spec/buster.js index <HASH>..<HASH> 100644 --- a/spec/buster.js +++ b/spec/buster.js @@ -6,6 +6,7 @@ config["Converter"] = { , sources: [ "../vendor/marked.js" , "../src/remark/namespace.js" + , "../src/remark/config.js" , "../src/remark/converter.js" ] , tes...
Add support for highlightLanguage configuation option.
gnab_remark
train
9b9c1a7a91ba6c0c9f48241571dcaf54e5a61406
diff --git a/plaso/output/l2t_csv.py b/plaso/output/l2t_csv.py index <HASH>..<HASH> 100644 --- a/plaso/output/l2t_csv.py +++ b/plaso/output/l2t_csv.py @@ -137,10 +137,6 @@ class L2TCSVFieldFormattingHelper(formatting_helper.FieldFormattingHelper): NoFormatterFound: if no event formatter can be found to match the...
Changed l2tcsv output module to include event data stream in extra field #<I> (#<I>)
log2timeline_plaso
train
f091ec7edf2b9e83770268a60e10f64389ae9c9e
diff --git a/optlang/glpk_interface.py b/optlang/glpk_interface.py index <HASH>..<HASH> 100644 --- a/optlang/glpk_interface.py +++ b/optlang/glpk_interface.py @@ -152,9 +152,7 @@ class Constraint(interface.Constraint): ia = intArray(col_num + 1) da = doubleArray(col_num + 1) nnz =...
fix: avoid infinite recursion in model.update() by replacing problem.variables with problem._variables
biosustain_optlang
train
079b1a1595db2eb640636bda3a2eccb5f03d506b
diff --git a/authority/tests.py b/authority/tests.py index <HASH>..<HASH> 100644 --- a/authority/tests.py +++ b/authority/tests.py @@ -150,10 +150,9 @@ class AssignExceptionsTest(TestCase): self.fail() -class PerformanceTest(TestCase): +class SmartCacheingTestCase(TestCase): """ - Tests that permis...
refs #4: made a base test case for smart caching
jazzband_django-authority
train
0383e3f464df5c7fae84474c744bb6bbe08bcb59
diff --git a/ladybug/epw.py b/ladybug/epw.py index <HASH>..<HASH> 100644 --- a/ladybug/epw.py +++ b/ladybug/epw.py @@ -427,7 +427,8 @@ class EPW(object): # parse typical and extreme periods into analysis periods. week_data = header_lines[2].split(',') - num_weeks = int(week_data[1]) if len(we...
fix(epw): Ensure header parsing does not block EPW import
ladybug-tools_ladybug
train
e7ea0baebde4f612d4c1c1065d76d01f2a5e6f58
diff --git a/packages/utils-applications/pm2.js b/packages/utils-applications/pm2.js index <HASH>..<HASH> 100644 --- a/packages/utils-applications/pm2.js +++ b/packages/utils-applications/pm2.js @@ -21,13 +21,12 @@ const hiddenKeys = [ const visibleKeys = [ 'env', 'env_production', - 'error_file', 'exec_mode...
PM2 v3 ecosystem upgrade [Phobos<I>]
CactusTechnologies_cactus-utils
train
ed9fa0bd5b71e82732ede0173e05b37bae00971c
diff --git a/lib/api/2011-02-01/search.js b/lib/api/2011-02-01/search.js index <HASH>..<HASH> 100644 --- a/lib/api/2011-02-01/search.js +++ b/lib/api/2011-02-01/search.js @@ -59,7 +59,7 @@ exports.createHandler = function(context) { if (!query && booleanQuery) { var translator = new BooleanQueryTranslator...
BqTranslator: use "translate" as public method Supporting only bq format used by Tinia is internal information. It should be capsuled in BqTranslator.
groonga_gcs
train
b89e0de75065677f5d8b6b751d44bafabd8c6ce0
diff --git a/upload/catalog/controller/extension/openbay/ebay.php b/upload/catalog/controller/extension/openbay/ebay.php index <HASH>..<HASH> 100644 --- a/upload/catalog/controller/extension/openbay/ebay.php +++ b/upload/catalog/controller/extension/openbay/ebay.php @@ -94,6 +94,17 @@ class ControllerExtensionOpenbayEb...
Added back the store memory and limit check but behind auth process.
opencart_opencart
train
7c9b474f171e4e729b3e0fb0b00a67543687cd4f
diff --git a/pyinfra/api/util.py b/pyinfra/api/util.py index <HASH>..<HASH> 100644 --- a/pyinfra/api/util.py +++ b/pyinfra/api/util.py @@ -229,6 +229,9 @@ def get_file_sha1(filename_or_io): buff = file_io.read(BLOCKSIZE) while len(buff) > 0: + if isinstance(buff, six.text_type): + ...
Encode unicode data before hashing.
Fizzadar_pyinfra
train
ad6fd5767773622780685683b41c41e331fb3d29
diff --git a/lib/marty/monkey.rb b/lib/marty/monkey.rb index <HASH>..<HASH> 100644 --- a/lib/marty/monkey.rb +++ b/lib/marty/monkey.rb @@ -67,7 +67,7 @@ module ActiveRecord super end - def type_cast_for_database(value) + def deserialize(value) super en...
Use deserialize instead of type_cast_for_database
arman000_marty
train
e4958f975748b1f22d2ac36269ef36a73ce8f3d2
diff --git a/posix-utils.go b/posix-utils.go index <HASH>..<HASH> 100644 --- a/posix-utils.go +++ b/posix-utils.go @@ -17,19 +17,15 @@ package main import ( - "regexp" "runtime" "strings" "unicode/utf8" ) -// validVolname regexp. -var validVolname = regexp.MustCompile(`^.{3,63}$`) - // isValidVolname veri...
Removing regexp check and adding string based check, regexp check was unnecessary here (#<I>)
minio_minio
train
9368820245467df40b5f01b42dedd8057c577ce9
diff --git a/spec/lib/wechat/responder_corp_spec.rb b/spec/lib/wechat/responder_corp_spec.rb index <HASH>..<HASH> 100644 --- a/spec/lib/wechat/responder_corp_spec.rb +++ b/spec/lib/wechat/responder_corp_spec.rb @@ -40,8 +40,8 @@ RSpec.describe WechatCorpController, type: :controller do { timestamp: timestamp, nonc...
Add test case for issue #<I>
Eric-Guo_wechat
train
81b47225a828fd20cd7c83471a8e79305751c3b5
diff --git a/src/js/bootstrap-datetimepicker.js b/src/js/bootstrap-datetimepicker.js index <HASH>..<HASH> 100644 --- a/src/js/bootstrap-datetimepicker.js +++ b/src/js/bootstrap-datetimepicker.js @@ -1048,7 +1048,14 @@ THE SOFTWARE. } }; } - picker.widget.sho...
Changed picker.show to hide when already open With this change it is possible to close the datetimepicker on the button it is opened when it's already open. Short called this is normal toggle behaviour
Eonasdan_bootstrap-datetimepicker
train
6dfaacd8e0d664a032efc75a1c6b89e7b6328af5
diff --git a/activejdbc/src/main/java/org/javalite/activejdbc/StatementCache.java b/activejdbc/src/main/java/org/javalite/activejdbc/StatementCache.java index <HASH>..<HASH> 100644 --- a/activejdbc/src/main/java/org/javalite/activejdbc/StatementCache.java +++ b/activejdbc/src/main/java/org/javalite/activejdbc/Statement...
Closing statement cache prepared statements on cleanStatementCache. This will close database cursors when using a connection pool. See problem description at <URL>
javalite_activejdbc
train
bf3f0b15046bcf00ac9f2fcdbe137302e12d5a46
diff --git a/net/backend.go b/net/backend.go index <HASH>..<HASH> 100644 --- a/net/backend.go +++ b/net/backend.go @@ -31,6 +31,7 @@ type Config struct { RetryAfterMin time.Duration RetryAfterMax time.Duration FlushTimeout time.Duration + WriteTimeout time.Duration Dial func(string, string) (net.Conn...
support timeout on write operations in network backends
segmentio_stats
train
0f8f5f2b5d6939b0ba9f01a85a1eb67c13861ab7
diff --git a/lib/ardes/resources_controller/request_path_introspection.rb b/lib/ardes/resources_controller/request_path_introspection.rb index <HASH>..<HASH> 100644 --- a/lib/ardes/resources_controller/request_path_introspection.rb +++ b/lib/ardes/resources_controller/request_path_introspection.rb @@ -19,9 +19,15 @@ mo...
Make namespace_segments persist in a request, so it can be tweaked for non-standard controllers
ianwhite_resources_controller
train
5e7771e528545dafa15f4e3517025a027bd4c2f4
diff --git a/Server.php b/Server.php index <HASH>..<HASH> 100644 --- a/Server.php +++ b/Server.php @@ -21,7 +21,7 @@ class Server extends EventEmitter implements ServerInterface $server = $this; - $this->io->on('connect', function ($conn) use ($server) { + $this->io->on('connection', function...
[Socket] Rename connect event to connection This is consistent with the nodejs naming.
reactphp_http
train