hash
stringlengths
40
40
diff
stringlengths
131
114k
message
stringlengths
7
980
project
stringlengths
5
67
split
stringclasses
1 value
b3bf8ac358238fb33edba164b65b4bef4067b034
diff --git a/stories/breadcrumb.stories.js b/stories/breadcrumb.stories.js index <HASH>..<HASH> 100644 --- a/stories/breadcrumb.stories.js +++ b/stories/breadcrumb.stories.js @@ -135,7 +135,6 @@ storiesOf('Breadcrumb', module) search.addWidget( instantsearch.widgets.breadcrumb({ container: br...
fix(storybook): fix Hierarchical menu separator in Breadcrumb story (#<I>) If a separator is chosen which isn't the same as the corresponding hierarchical menu on the page, it will cause a conflict between those, and it will no longer be split correctly.
algolia_instantsearch.js
train
87641dc8e7e72755f1b8f39dfc9b3bfbdf41c923
diff --git a/starlette/testclient.py b/starlette/testclient.py index <HASH>..<HASH> 100644 --- a/starlette/testclient.py +++ b/starlette/testclient.py @@ -162,6 +162,7 @@ class _ASGIAdapter(requests.adapters.HTTPAdapter): scope = { "type": "websocket", "path": unquote(path...
Add `raw_path` to `TestClient` scope (#<I>) * Add "raw_path" to TestClient request scope * Return raw_path as byte string According to ASGI spec [0], connection scope's `raw_path` should be a byte string. [0] <URL>
encode_starlette
train
4b701c53a6842fd0ac071767e192c51d427afda0
diff --git a/sampler.go b/sampler.go index <HASH>..<HASH> 100644 --- a/sampler.go +++ b/sampler.go @@ -361,7 +361,14 @@ func (s *adaptiveSampler) update(strategies *sampling.PerOperationSamplingStrate } } s.lowerBound = strategies.DefaultLowerBoundTracesPerSecond - s.defaultSamplingProbability = strategies.Defau...
Fix adaptive sampler update bug (#<I>)
jaegertracing_jaeger-client-go
train
29cc58ba880f136b70f3967e896efe3eca2e6865
diff --git a/packages/ember-metal/lib/run_loop.js b/packages/ember-metal/lib/run_loop.js index <HASH>..<HASH> 100644 --- a/packages/ember-metal/lib/run_loop.js +++ b/packages/ember-metal/lib/run_loop.js @@ -5,7 +5,8 @@ var Backburner = requireModule('backburner').Backburner, sync: { before: Ember.beginP...
Set actions as the default run loop queue
emberjs_ember.js
train
d1b146b2a5db0837c4c03999c715b886f00a368e
diff --git a/testdata/javascript/soy_usegoog_lib.js b/testdata/javascript/soy_usegoog_lib.js index <HASH>..<HASH> 100644 --- a/testdata/javascript/soy_usegoog_lib.js +++ b/testdata/javascript/soy_usegoog_lib.js @@ -27,8 +27,8 @@ /** - * @define {boolean} Overridden to true by the compiler when --closure_pass - * ...
Adding support to af_soy_library to allow for compiling Soy -> Incremental DOM in addition to Soy -> JS. ------------- Created by MOE: <URL>
google_closure-templates
train
cb05687f8858f0d417a64bea36688ba10cacae99
diff --git a/includes/functions-auth.php b/includes/functions-auth.php index <HASH>..<HASH> 100644 --- a/includes/functions-auth.php +++ b/includes/functions-auth.php @@ -161,10 +161,11 @@ function yourls_auth_signature( $username = false ) { return ( $username ? substr( yourls_salt( $username ), 0, 10 ) : 'Cannot ge...
Allow auth with timestamp from the future or the past. Fixes issue <I>. git-svn-id: <URL>
YOURLS_YOURLS
train
f2ede774b06d2006c02cc6fb0148f719be560038
diff --git a/pretrainedmodels/models/xception.py b/pretrainedmodels/models/xception.py index <HASH>..<HASH> 100644 --- a/pretrainedmodels/models/xception.py +++ b/pretrainedmodels/models/xception.py @@ -202,7 +202,7 @@ class Xception(nn.Module): x = F.adaptive_avg_pool2d(x, (1, 1)) x = x.view(x.size...
Fix last_linear of xception
Cadene_pretrained-models.pytorch
train
28021361d157a6ea5413182d46c5fab1459d2566
diff --git a/routing/notifications.go b/routing/notifications.go index <HASH>..<HASH> 100644 --- a/routing/notifications.go +++ b/routing/notifications.go @@ -2,6 +2,7 @@ package routing import ( "fmt" + "image/color" "net" "sync" "sync/atomic" @@ -246,6 +247,9 @@ type NetworkNodeUpdate struct { // Alias...
routing: add color to node update
lightningnetwork_lnd
train
45c1139cf3730fd1663a5856c1dd8124da8b24e5
diff --git a/grunt.js b/grunt.js index <HASH>..<HASH> 100644 --- a/grunt.js +++ b/grunt.js @@ -2,35 +2,16 @@ module.exports = function (grunt) { grunt.initConfig({ pkg : "<json:package.json>", meta : { - banner : "/*! <%= pkg.name %> <%= pkg.version %> - <%= pkg.homepage %> */" - }, - test : { - files : [...
Customizing grunt.js with build steps
avoidwork_abaaso
train
d4ef1b1bbc97d18fd22e2959f5fa319ca532cbfc
diff --git a/src/resources/views/password/reset.blade.php b/src/resources/views/password/reset.blade.php index <HASH>..<HASH> 100644 --- a/src/resources/views/password/reset.blade.php +++ b/src/resources/views/password/reset.blade.php @@ -23,12 +23,10 @@ @section('scripts') <script type="text/javascript"> - ...
Refactory to use react form & add token
honey-comb_core
train
5344f3d8267656ecc8c01c5fa0583f7febf68bb9
diff --git a/gtk/combo_box.go b/gtk/combo_box.go index <HASH>..<HASH> 100644 --- a/gtk/combo_box.go +++ b/gtk/combo_box.go @@ -147,7 +147,11 @@ func (v *ComboBox) GetModel() (*TreeModel, error) { // SetModel is a wrapper around gtk_combo_box_set_model(). func (v *ComboBox) SetModel(model ITreeModel) { - C.gtk_combo...
Fix for issue <I> - Can't set an iconview model to nil - segv in IconView.SetModel Fix is to check that the model parameter is not nil before trying to call its toTreeModel().
gotk3_gotk3
train
b84604e03cfa5f7d1df7900e9148fbf45c38c97b
diff --git a/lib/azure/service_bus/service_bus_service.rb b/lib/azure/service_bus/service_bus_service.rb index <HASH>..<HASH> 100644 --- a/lib/azure/service_bus/service_bus_service.rb +++ b/lib/azure/service_bus/service_bus_service.rb @@ -43,15 +43,10 @@ module Azure # ==== Attributes # # * +queue+...
<I>: SB: create_subscription and create_rule are broken, they don't accept all message information
Azure_azure-sdk-for-ruby
train
7fd2444c6878dd61f8b5ceba535732b9eb8cf923
diff --git a/ipdata/cli.py b/ipdata/cli.py index <HASH>..<HASH> 100644 --- a/ipdata/cli.py +++ b/ipdata/cli.py @@ -132,12 +132,13 @@ def me(ctx, fields): @click.argument('ip-list', required=True, type=click.File(mode='r', encoding='utf-8')) @click.option('--output', required=False, default=stdout, type=click.File(mod...
1. Fixed case sensitive of option format 2. Fixed bugs in commands related to fields filtering.
ipdata_python
train
c4a6abab631a34f7da067ed04357b408f3ceb483
diff --git a/lib/jspath.js b/lib/jspath.js index <HASH>..<HASH> 100644 --- a/lib/jspath.js +++ b/lib/jspath.js @@ -705,15 +705,17 @@ var translate = (function() { 'if(', curCtx, '!= null) {'); if(sel.prop === '*') { body.push( - 'if(isArr(', curC...
'.*' should not unfold strings (#<I>)
dfilatov_jspath
train
bc54074a8ba6e21e6c4ba85f19cf34191f78c551
diff --git a/Controller/Badge/ProfileController.php b/Controller/Badge/ProfileController.php index <HASH>..<HASH> 100644 --- a/Controller/Badge/ProfileController.php +++ b/Controller/Badge/ProfileController.php @@ -33,7 +33,7 @@ class ProfileController extends Controller { $badgeClaim = new BadgeClaim(); ...
[CoreBundle] Adding extra datas to simple autocomplete field is possible
claroline_Distribution
train
dae2be06ee5eff6df24e7d5744ebb8fc98af8342
diff --git a/lib/multirepo/commands/init-command.rb b/lib/multirepo/commands/init-command.rb index <HASH>..<HASH> 100644 --- a/lib/multirepo/commands/init-command.rb +++ b/lib/multirepo/commands/init-command.rb @@ -55,15 +55,10 @@ module MultiRepo Console.log_substep("Creating new multirepo config...") ...
Handling unborn HEADs and missing origin remote URLs in InitCommand.
fortinmike_git-multirepo
train
a87df963a08054ad7a652f0218e70ddb7f9cc8bd
diff --git a/datasette/app.py b/datasette/app.py index <HASH>..<HASH> 100644 --- a/datasette/app.py +++ b/datasette/app.py @@ -45,6 +45,10 @@ HASH_LENGTH = 7 connections = threading.local() +class DatasetteError(Exception): + pass + + class RenderMixin(HTTPMethodView): def render(self, templates, **contex...
Error handling for ?_sort and ?_sort_desc Verifies that they match an existing column, and only one or the other option is provided - refs #<I> Eses a new DatasetteError exception that closes #<I>
simonw_datasette
train
b75bca5a788d5206f2d2367706328a9d4620cf42
diff --git a/lib/sfn/command_module/stack.rb b/lib/sfn/command_module/stack.rb index <HASH>..<HASH> 100644 --- a/lib/sfn/command_module/stack.rb +++ b/lib/sfn/command_module/stack.rb @@ -257,7 +257,7 @@ module Sfn else current_value = c_value end - if(current_value && current...
Compare values as String when checking for unexpected diff (#<I>)
sparkleformation_sfn
train
ae33fe328bb3bbd6b9ee694479d6667a7f3ea037
diff --git a/src/ContainerBuilder.php b/src/ContainerBuilder.php index <HASH>..<HASH> 100644 --- a/src/ContainerBuilder.php +++ b/src/ContainerBuilder.php @@ -56,7 +56,7 @@ class ContainerBuilder public function newInstance( array $services = array(), array $config_classes = array(), - $au...
auto-resolution is OFF by default
auraphp_Aura.Di
train
322b11796b4b467b5642a3524906ac19049d3d1d
diff --git a/tester.js b/tester.js index <HASH>..<HASH> 100644 --- a/tester.js +++ b/tester.js @@ -34,7 +34,8 @@ exports.benchmark = function (name, opts, cb) { } var startTime = new Date().getTime(); for (var i = 0; i < opts.numItems; i++) { - queue.push(i); + if (!opts['taskCreator']) queue.p...
Adds a hook to customize items pushed to the test queue
diamondio_better-queue-store-test
train
6108bf747e69c738f6cd6a70156dc59404e3af5d
diff --git a/src/Symfony/Component/HttpKernel/Kernel.php b/src/Symfony/Component/HttpKernel/Kernel.php index <HASH>..<HASH> 100644 --- a/src/Symfony/Component/HttpKernel/Kernel.php +++ b/src/Symfony/Component/HttpKernel/Kernel.php @@ -78,12 +78,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface...
Update VERSION for <I>
symfony_symfony
train
3b87153c4a17798723c6f9f04fad6ca13e84d80a
diff --git a/vprof/profiler.py b/vprof/profiler.py index <HASH>..<HASH> 100644 --- a/vprof/profiler.py +++ b/vprof/profiler.py @@ -42,7 +42,7 @@ class Profiler(base_profile.BaseProfile): records = [] for info, params in prof.stats.items(): filename, lineno, funcname = info - cu...
Fix lint warnings.
nvdv_vprof
train
c3c9d86c3d328743d70b43f6681ec873cd0bbfe4
diff --git a/bin/publish.js b/bin/publish.js index <HASH>..<HASH> 100755 --- a/bin/publish.js +++ b/bin/publish.js @@ -9,7 +9,7 @@ const semver = require('semver'); const Project = require('../build/utils/project'); -const DIST_PATH = path.resolve(__dirname, '../dist/node_modules'); +const DIST_PATH = path.resolve...
Fix `DIST_PATH` in publish script.
glimmerjs_glimmer-vm
train
ea061d03653932b08d85f8316459dafc093f6215
diff --git a/src/Traits/StringTrait.php b/src/Traits/StringTrait.php index <HASH>..<HASH> 100644 --- a/src/Traits/StringTrait.php +++ b/src/Traits/StringTrait.php @@ -96,6 +96,17 @@ trait StringTrait return preg_replace('/\s+/', '', $str); } + + /** + * @param string $str + * @param str...
Added method to split the camelCase words with a delimiter
mindlahus_symfony-assets
train
002b0be1a83be30e09ae9ac42dbb07e7f23aeb4e
diff --git a/src/server/pachyderm_test.go b/src/server/pachyderm_test.go index <HASH>..<HASH> 100644 --- a/src/server/pachyderm_test.go +++ b/src/server/pachyderm_test.go @@ -5420,6 +5420,99 @@ func TestPipelineWithGithubInputPrivateGHRepo(t *testing.T) { require.Equal(t, fmt.Sprintf("unable to clone private github r...
Add failing tests for duplicate github inputs on a single pipeline
pachyderm_pachyderm
train
a7ff21e39db47556e23f6fc989cd7c02fbf8f6b7
diff --git a/django_auth_ldap/backend.py b/django_auth_ldap/backend.py index <HASH>..<HASH> 100644 --- a/django_auth_ldap/backend.py +++ b/django_auth_ldap/backend.py @@ -52,6 +52,7 @@ from functools import reduce import ldap import operator import pprint +import re import sys import traceback import warnings @@ ...
Fix #<I>: Better cache key sanitizing.
django-auth-ldap_django-auth-ldap
train
b305383e587045cfe9238b2f487ac9ccf391d1d3
diff --git a/packages/evergreen-combobox/src/components/Combobox.js b/packages/evergreen-combobox/src/components/Combobox.js index <HASH>..<HASH> 100644 --- a/packages/evergreen-combobox/src/components/Combobox.js +++ b/packages/evergreen-combobox/src/components/Combobox.js @@ -23,6 +23,7 @@ export default class Combob...
fix width and position (#<I>)
segmentio_evergreen
train
f3b708bfa73aea0f3639312792c0d66ff46c7cb5
diff --git a/src/equations.js b/src/equations.js index <HASH>..<HASH> 100644 --- a/src/equations.js +++ b/src/equations.js @@ -78,4 +78,12 @@ Equation.prototype._onlyHasVariable = function(variable) { return this.lhs._onlyHasVariable(variable) && this.rhs._onlyHasVariable(variable); }; +Equation.prototype._isLi...
Add Equation._isLinear and Equation._isQuadratic
nicolewhite_algebra.js
train
4fc6f54045d739c1f5e56158bc5398958dcf6f91
diff --git a/components/list/list.js b/components/list/list.js index <HASH>..<HASH> 100644 --- a/components/list/list.js +++ b/components/list/list.js @@ -115,7 +115,8 @@ export default class List extends Component { renderOptimization: PropTypes.bool, disableMoveOverflow: PropTypes.bool, disableMoveDown...
[publish] Select: allow opting out from scrolling to active item, see TW-<I>
JetBrains_ring-ui
train
70780d139a52f24a87ad4ea79b63411a59c051de
diff --git a/distributed/src/main/java/com/orientechnologies/orient/server/distributed/impl/coordinator/transaction/OTransactionSecondPhaseResponseHandler.java b/distributed/src/main/java/com/orientechnologies/orient/server/distributed/impl/coordinator/transaction/OTransactionSecondPhaseResponseHandler.java index <HASH...
fixed lock management for index keys in the coordinator
orientechnologies_orientdb
train
a56e2ca00d89958558c216674c9410290cc01efc
diff --git a/revmgo.go b/revmgo.go index <HASH>..<HASH> 100644 --- a/revmgo.go +++ b/revmgo.go @@ -37,7 +37,7 @@ func AppInit() { var err error // Read configuration. Dial = revel.Config.StringDefault("revmgo.dial", "localhost") - Method = revel.Config.StringDefault("db.spec", "clone") + Method = revel.Config.Str...
Fixed error with wrong config name. Fixes #6
jgraham909_revmgo
train
f216e8ad3c3d7d6371f4653ec5d6513b8e77a428
diff --git a/lib/gcli/types/node.js b/lib/gcli/types/node.js index <HASH>..<HASH> 100644 --- a/lib/gcli/types/node.js +++ b/lib/gcli/types/node.js @@ -56,7 +56,9 @@ exports.getWindowHolder = function() { * NodeListType to allow terminal to tell us which nodes should be highlighted */ function onEnter(assignment) {...
runat-<I>: Remove onEnter/onLeave/onChange notification The idea was that we could highlight nodes when command line cursor was 'inside' the relevant argument. But it's not working for several reasons: * It needs remoting (and this could be a perf issue) * We've not hooked it up to the new multiple node highlighter * ...
joewalker_gcli
train
2b780b4a7fb3a4a06eb341184933d7c5691f4dda
diff --git a/sqlite3_opt_vtable.go b/sqlite3_opt_vtable.go index <HASH>..<HASH> 100644 --- a/sqlite3_opt_vtable.go +++ b/sqlite3_opt_vtable.go @@ -472,10 +472,21 @@ func goVBestIndex(pVTab unsafe.Pointer, icp unsafe.Pointer) *C.char { } info.idxNum = C.int(res.IdxNum) - idxStr := C.CString(res.IdxStr) - defer C.f...
fix idxStr freeing issue (#<I>) uses snippet suggested by @rittneje <URL>
mattn_go-sqlite3
train
8b6287c5c3ccae9cf5778fbe22994922355cf1a0
diff --git a/paxtools-core/src/main/java/org/biopax/paxtools/fixer/FeatureResolver.java b/paxtools-core/src/main/java/org/biopax/paxtools/fixer/FeatureResolver.java index <HASH>..<HASH> 100644 --- a/paxtools-core/src/main/java/org/biopax/paxtools/fixer/FeatureResolver.java +++ b/paxtools-core/src/main/java/org/biopax/p...
added constant names for new search fields: organism, datasource; comments..
BioPAX_Paxtools
train
ffcbeb5c2e923c3dab01ad12d0b76e8fd749b29f
diff --git a/doc/changelog.rst b/doc/changelog.rst index <HASH>..<HASH> 100644 --- a/doc/changelog.rst +++ b/doc/changelog.rst @@ -13,6 +13,8 @@ This release changes a lot of internal implementation details that should prevent methods from not handling unbounded ranges correctly in the future. - Added validation to...
Fixed .replace with infinite lower bounds
runfalk_spans
train
9f8afb87f1b43c3f7fb44d746ee2acfff7ded068
diff --git a/lib/components/metrics.js b/lib/components/metrics.js index <HASH>..<HASH> 100644 --- a/lib/components/metrics.js +++ b/lib/components/metrics.js @@ -213,11 +213,11 @@ Metrics.prototype.addCollector = function(func) { /** * Adds a new gauge metric. * @param {Object} opts Options - * @param {string} op...
Mark optional arguments as such in JSdoc
matrix-org_matrix-appservice-bridge
train
0627114ab3c9d440d852933a54f63be715dcb748
diff --git a/src/plugin/release/index.js b/src/plugin/release/index.js index <HASH>..<HASH> 100644 --- a/src/plugin/release/index.js +++ b/src/plugin/release/index.js @@ -46,6 +46,12 @@ function action (config, directory, options) { ? config.releaseBranch : 'master' + const { code } = execSync('git checkou...
fix(northbrook): switch to releaseBranch before doing anything
northbrookjs_northbrook
train
f27908e7e3781b4ebed228a27439d9988b13a5c7
diff --git a/training/deepspeech_training/util/audio.py b/training/deepspeech_training/util/audio.py index <HASH>..<HASH> 100644 --- a/training/deepspeech_training/util/audio.py +++ b/training/deepspeech_training/util/audio.py @@ -174,6 +174,10 @@ def convert_audio(src_audio_path, dst_audio_path, file_type=None, audio_...
Fix copying remote AudioFile target to local
mozilla_DeepSpeech
train
a42fdd6ffbda6f72c5419762e43c13b2b1ad696b
diff --git a/lib/identity_cache/query_api.rb b/lib/identity_cache/query_api.rb index <HASH>..<HASH> 100644 --- a/lib/identity_cache/query_api.rb +++ b/lib/identity_cache/query_api.rb @@ -93,8 +93,8 @@ module IdentityCache associations.each do |association, sub_associations| next_level_records = ...
Remove a respond_to? check that hides mistakes in includes hash (#<I>)
Shopify_identity_cache
train
03b8844e2be198c49cb1bd34343487338a6a6eb9
diff --git a/CHANGES.md b/CHANGES.md index <HASH>..<HASH> 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,9 @@ # Changelog +## PENDING + +* Rename `.declare_attribute` back to `.define_accessors_for`. + ## 1.1.0 (2016-10-17) * Add `#subcommand_missing`. diff --git a/lib/clamp/attribute/declaration.rb b/lib/c...
Rename ".declare_attribute" back to ".define_accessors_for". Fixes a regression for power users; refer issue#<I>.
mdub_clamp
train
a1bbefaf7d15498db8e5ea7342c1e57b9a8724f0
diff --git a/src/ZonedDateTime.php b/src/ZonedDateTime.php index <HASH>..<HASH> 100644 --- a/src/ZonedDateTime.php +++ b/src/ZonedDateTime.php @@ -142,7 +142,7 @@ class ZonedDateTime if ($timeZone instanceof TimeZoneOffset) { $timeZoneOffset = $timeZone; } else { - $timeZoneOff...
Simplify ZonedDateTime::ofInstant()
brick_date-time
train
fc797c9bee2323e42feb9a69c85807777a1d647b
diff --git a/lib/motion-bundler/device/core_ext.rb b/lib/motion-bundler/device/core_ext.rb index <HASH>..<HASH> 100644 --- a/lib/motion-bundler/device/core_ext.rb +++ b/lib/motion-bundler/device/core_ext.rb @@ -1,6 +1,15 @@ module Kernel def require(name) end + #require_relative(string) + #load(filename, wrap=...
Added (commented) methods to device/core_ext and simulator/core_ext as todo's for implementation
archan937_motion-bundler
train
fa5db446edabc8668d31e633b30e182f6e60dfeb
diff --git a/guides/bug_report_templates/action_controller_gem.rb b/guides/bug_report_templates/action_controller_gem.rb index <HASH>..<HASH> 100644 --- a/guides/bug_report_templates/action_controller_gem.rb +++ b/guides/bug_report_templates/action_controller_gem.rb @@ -8,7 +8,7 @@ gemfile(true) do git_source(:githu...
Update bug report templates to use Rails <I>
rails_rails
train
00c40f82b1304483d823b9566076db953e7f4573
diff --git a/lib/vagrant/ssh.rb b/lib/vagrant/ssh.rb index <HASH>..<HASH> 100644 --- a/lib/vagrant/ssh.rb +++ b/lib/vagrant/ssh.rb @@ -118,7 +118,7 @@ module Vagrant execute(:timeout => env.config.ssh.timeout, :port => ssh_port) { |ssh| } end - false + true rescue Net::SSH::Authenticati...
Return true on ssh up?
hashicorp_vagrant
train
cf7c2b34bbf8013be0f4e9d0a41884535969652a
diff --git a/src/views/server/monitoringSettings.php b/src/views/server/monitoringSettings.php index <HASH>..<HASH> 100644 --- a/src/views/server/monitoringSettings.php +++ b/src/views/server/monitoringSettings.php @@ -9,9 +9,15 @@ $this->params['breadcrumbs'][] = ['label' => Yii::t('hipanel:server', 'Servers') $this-...
Fixed fields for monitoringSettings view
hiqdev_hipanel-module-server
train
289e52680ad2f978049a32ae9b8bd39531faf4c4
diff --git a/src/containers/views/tests/datafilenew.spec.js b/src/containers/views/tests/datafilenew.spec.js index <HASH>..<HASH> 100644 --- a/src/containers/views/tests/datafilenew.spec.js +++ b/src/containers/views/tests/datafilenew.spec.js @@ -1,9 +1,10 @@ import React from 'react'; import { shallow } from 'enzyme...
update spec file DataFileNew view
jekyll_jekyll-admin
train
d8e032f2d7a5000ece3f875d84af65296f785bcb
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100755 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup -VERSION = '0.2.0' +VERSION = '0.3.0' setup( name = 'hdlcontroller',
update version in 'setup.py' file
SkypLabs_python-hdlc-controller
train
f7f0850a72bd7b76c30c95ecc4973a8f3297c8ef
diff --git a/system/shift.js b/system/shift.js index <HASH>..<HASH> 100644 --- a/system/shift.js +++ b/system/shift.js @@ -47,7 +47,7 @@ class Shift{ } styles += this.resources.styles.objToCallMedia(this.postfix, { - [this.map[i].pro...
delete moron ; in size & shift styles
dmitry-lavrik_smart-grid
train
e10c96775417a9d9a94b04d339f78a179348193c
diff --git a/examples.php b/examples.php index <HASH>..<HASH> 100644 --- a/examples.php +++ b/examples.php @@ -20,22 +20,32 @@ $urlBuilder = new AmazonUrlBuilder( $amazonAPI = new AmazonAPI($urlBuilder); $amazonAPI->SetRetrieveAsArray(); +// Need to avoid triggering Amazon API throttling +$sleepTime = 1.5; + // It...
Slow down examples to avoid throttling
MarcL_AmazonProductAPI
train
2721dd3a630a83c32939bdfddb012eaaa637bb1e
diff --git a/contentbank/contenttype/h5p/classes/form/editor.php b/contentbank/contenttype/h5p/classes/form/editor.php index <HASH>..<HASH> 100644 --- a/contentbank/contenttype/h5p/classes/form/editor.php +++ b/contentbank/contenttype/h5p/classes/form/editor.php @@ -30,6 +30,7 @@ use core_contentbank\form\edit_content;...
MDL-<I> contenttype_h5p: Showing permission errors
moodle_moodle
train
6c7fd1bc11c6a4914d88261684f024b658fe42b5
diff --git a/lib/html2haml/html.rb b/lib/html2haml/html.rb index <HASH>..<HASH> 100644 --- a/lib/html2haml/html.rb +++ b/lib/html2haml/html.rb @@ -153,6 +153,7 @@ module Haml TEXT_REGEXP = /^(\s*).*$/ + # @see Hpricot # @private class ::Nokogiri::XML::Document @@ -326,7 +327,7 @@ module Haml ...
use #to_xhtml to determine which tags can be self closing
haml_html2haml
train
772dc816033870c2860a89e73782f0669960e2cd
diff --git a/codenerix_payments/models.py b/codenerix_payments/models.py index <HASH>..<HASH> 100644 --- a/codenerix_payments/models.py +++ b/codenerix_payments/models.py @@ -762,7 +762,7 @@ class PaymentConfirmation(CodenerixModel): self.error = True self.error_txt = json.dump...
Corrected error when making PaymentError exception
codenerix_django-codenerix-payments
train
d885b7729690808afa533735879d2764380010cb
diff --git a/audit.js b/audit.js index <HASH>..<HASH> 100755 --- a/audit.js +++ b/audit.js @@ -132,7 +132,8 @@ if (!config.get("package")) { // First check for node itself. We use the 'chocolatey' package manager // to hang this query on. - ...
Remove pre-pended v character if present.
OSSIndex_auditjs
train
6fed3a9a19dabc26aed47516b2a7477fdcd31145
diff --git a/scapy.py b/scapy.py index <HASH>..<HASH> 100755 --- a/scapy.py +++ b/scapy.py @@ -3568,8 +3568,13 @@ class Dot11SCField(LEShortField): ## Packet abstract class ## ########################### +class Packet_metaclass(type): + def __getattr__(self, attr): + for k in self.fields_desc: + ...
Added Packet_metclass to add methods to Packet classes
secdev_scapy
train
4f93ed335d4c5350fe1363c6895dea0c9f372fe7
diff --git a/Gemfile.lock b/Gemfile.lock index <HASH>..<HASH> 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - rails-web-console (0.3.2) + rails-web-console (0.4.0) railties (>= 3.1.0) GEM diff --git a/app/controllers/rails_web_console/console_controller.rb b/a...
<I>: rescue from all exceptions including malformed script
rosenfeld_rails-web-console
train
402bee20214b1ac5fbeb6fe31889c6e5a958fb99
diff --git a/lib/neo4j/neo4j.rb b/lib/neo4j/neo4j.rb index <HASH>..<HASH> 100644 --- a/lib/neo4j/neo4j.rb +++ b/lib/neo4j/neo4j.rb @@ -135,10 +135,16 @@ module Neo4j this_db.graph.reference_node end + # Changes the reference node on a threadlocal basis. + # This can be used to achieve multitenancy. ...
Added rdoc, made model_spec test consistent, renamed variable in rule node
neo4jrb_neo4j
train
deac8345ad36ef5d25057a0c11a75520b21418ff
diff --git a/src/main/java/com/authlete/jaxrs/util/CertificateUtils.java b/src/main/java/com/authlete/jaxrs/util/CertificateUtils.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/authlete/jaxrs/util/CertificateUtils.java +++ b/src/main/java/com/authlete/jaxrs/util/CertificateUtils.java @@ -22,7 +22,8 @@ import ...
Updated CertificateUtils to list correct client certificate extractors.
authlete_authlete-java-jaxrs
train
8340b2d704c55e25e74fc87cb9494d700867408d
diff --git a/python/src/nnabla/backward_function/log.py b/python/src/nnabla/backward_function/log.py index <HASH>..<HASH> 100644 --- a/python/src/nnabla/backward_function/log.py +++ b/python/src/nnabla/backward_function/log.py @@ -59,9 +59,9 @@ class LogBackward(BackwardFunction): # Computation if pro...
Fix log double backward (#<I>)
sony_nnabla
train
33431b4758d4023f5375cf5aab9d8479cd5c604f
diff --git a/agent/exec/containerd/adapter.go b/agent/exec/containerd/adapter.go index <HASH>..<HASH> 100644 --- a/agent/exec/containerd/adapter.go +++ b/agent/exec/containerd/adapter.go @@ -98,7 +98,7 @@ func (c *containerAdapter) reattach(ctx context.Context) error { } } - task, err := container.Task(ctx, cio....
Update agent containerd adapter for changes in cio
docker_swarmkit
train
348c350b98686e80aa4babc7dbb92a7433415ed6
diff --git a/lib/db/install.xml b/lib/db/install.xml index <HASH>..<HASH> 100644 --- a/lib/db/install.xml +++ b/lib/db/install.xml @@ -1703,6 +1703,7 @@ <FIELD NAME="data5" TYPE="text" LENGTH="big" NOTNULL="false" SEQUENCE="false" ENUM="false" PREVIOUS="data4" NEXT="timecreated"/> <FIELD NAME="timecre...
MDL-<I>, new field for repository table
moodle_moodle
train
884a529f8a31b324ea8edf2ffc3ed83e69d0306b
diff --git a/templates/default/fulldoc/html/js/full_list.js b/templates/default/fulldoc/html/js/full_list.js index <HASH>..<HASH> 100644 --- a/templates/default/fulldoc/html/js/full_list.js +++ b/templates/default/fulldoc/html/js/full_list.js @@ -42,6 +42,7 @@ function enableLinks() { $('#full_list li').removeClas...
Stop propagation of link clicking when a link is triggered
lsegal_yard
train
b1cb09ba8f9f9489c2785e2f3d7eb10b8e7a5ad1
diff --git a/elasticsearch/client/__init__.py b/elasticsearch/client/__init__.py index <HASH>..<HASH> 100644 --- a/elasticsearch/client/__init__.py +++ b/elasticsearch/client/__init__.py @@ -536,8 +536,10 @@ class Elasticsearch(object): out issues or planning optimizations with routing and shard preferences. ...
Better docstring for search_shards
elastic_elasticsearch-py
train
20371fd93804260f51c13556553780f6d93423e0
diff --git a/lib/pairwise.rb b/lib/pairwise.rb index <HASH>..<HASH> 100644 --- a/lib/pairwise.rb +++ b/lib/pairwise.rb @@ -21,7 +21,14 @@ module Pairwise private def valid?(inputs) - inputs.length >= 2 && !inputs[0].empty? && !inputs[1].empty? + array_of_arrays?(inputs) && + inputs.length >...
Further validation on inputs and some tweaking of var names
josephwilk_pairwise
train
f5d560f2c057f65284a3eb0e51fb7ce1854132c2
diff --git a/multiqc/__init__.py b/multiqc/__init__.py index <HASH>..<HASH> 100644 --- a/multiqc/__init__.py +++ b/multiqc/__init__.py @@ -25,4 +25,4 @@ class BaseMultiqcModule(object): l.append(delim.join([''] + h)) thesefields = [sn] + [ str(d[sn].get(k, '')) for k in h ] l....
More bugfixing after py2/3 changes.
ewels_MultiQC
train
d4d0ad2f6a3298ffbb7ffdf1c0b5f46e86baf57b
diff --git a/ggplot/ggplot.py b/ggplot/ggplot.py index <HASH>..<HASH> 100644 --- a/ggplot/ggplot.py +++ b/ggplot/ggplot.py @@ -25,7 +25,7 @@ from copy import deepcopy if sys.flags.interactive: plt.ion() -# Workaround for matplotlib 1.1.1 not having a rc_context +# Workaround for matplotlib 1.1.1 not having a r...
Preliminary support for xtick updates after xlim()
has2k1_plotnine
train
f89bf5f4a650dbac5018bdb1ee304c0ab5b5cba1
diff --git a/src/lib/substituteVariantsAtRules.js b/src/lib/substituteVariantsAtRules.js index <HASH>..<HASH> 100644 --- a/src/lib/substituteVariantsAtRules.js +++ b/src/lib/substituteVariantsAtRules.js @@ -124,6 +124,7 @@ const defaultVariantGenerators = (config) => ({ hover: generatePseudoClassVariant('hover'), ...
Add :read-only variant (#<I>) * Add :read-only variant * Added read-only variant to defaultConfig.stub
tailwindcss_tailwindcss
train
fb14019dd6f5ea54f7d33187b5965930ae802cdf
diff --git a/test/base_test_helper.rb b/test/base_test_helper.rb index <HASH>..<HASH> 100644 --- a/test/base_test_helper.rb +++ b/test/base_test_helper.rb @@ -1,6 +1,4 @@ if RUBY_PLATFORM == 'java' - require 'java' - JRuby.objectspace = true require 'rubygems' end
Do not tell JRuby to use object space
mvz_gir_ffi
train
b3097e0ed0aaa5827cd10108278667a1757eeeed
diff --git a/src-modules/org/opencms/workplace/tools/accounts/CmsGroupOverviewDialog.java b/src-modules/org/opencms/workplace/tools/accounts/CmsGroupOverviewDialog.java index <HASH>..<HASH> 100644 --- a/src-modules/org/opencms/workplace/tools/accounts/CmsGroupOverviewDialog.java +++ b/src-modules/org/opencms/workplace/...
Fixing issue with no longer existing group properties.
alkacon_opencms-core
train
0f8a9ba0387252b0c2d35874d314f92692712597
diff --git a/spyder/plugins/ipythonconsole/utils/manager.py b/spyder/plugins/ipythonconsole/utils/manager.py index <HASH>..<HASH> 100644 --- a/spyder/plugins/ipythonconsole/utils/manager.py +++ b/spyder/plugins/ipythonconsole/utils/manager.py @@ -56,7 +56,13 @@ class SpyderKernelManager(QtKernelManager): c...
IPython console: Catch an error when trying to restart the kernel
spyder-ide_spyder
train
0d94b11f56bde94c62539ab5c36baeec4eb384da
diff --git a/lib/index.js b/lib/index.js index <HASH>..<HASH> 100644 --- a/lib/index.js +++ b/lib/index.js @@ -30,6 +30,17 @@ } args[name] = value; } + + // + // Undefiend extra parameters are stored into an array + // of the blank key in the return object. + ...
The undefind extra pamrams are saved These will be stored to the blank key array in the returned object.
takamin_hash-arg
train
db7ae316064202c28de4f2229b7fdd93472ba631
diff --git a/CHANGELOG.txt b/CHANGELOG.txt index <HASH>..<HASH> 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,5 +1,8 @@ === (ongoing) === +=== 1.48.1 === + +- Added option to check redirects after post request in views tests === 1.48 === diff --git a/django_libs/__init__.py b/django_libs/__init__.py inde...
Added option to check redirects after post request in views tests
bitlabstudio_django-libs
train
aa2841b7b75fd08c9819ac14a9d27d4f6baa959a
diff --git a/src/selectors/entities/channels.js b/src/selectors/entities/channels.js index <HASH>..<HASH> 100644 --- a/src/selectors/entities/channels.js +++ b/src/selectors/entities/channels.js @@ -197,15 +197,16 @@ export const getChannelsByCategory = createSelector( getCurrentChannelId, getMyChannels, ...
Fixed Teammate Name Display setting not applying to DM list (#<I>)
mattermost_mattermost-redux
train
60fc40ea58de8b6faf98081d659e7f5b232aa25e
diff --git a/activesupport/test/descendants_tracker_test_cases.rb b/activesupport/test/descendants_tracker_test_cases.rb index <HASH>..<HASH> 100644 --- a/activesupport/test/descendants_tracker_test_cases.rb +++ b/activesupport/test/descendants_tracker_test_cases.rb @@ -28,11 +28,23 @@ module DescendantsTrackerTestCase...
Isolate descendants garbage collection test This prevents the test from being affected by Ruby-internal thread locals set by other tests. Example failure: <URL>
rails_rails
train
44dabbb86595a37c9edfa30e431ebf8806607160
diff --git a/core/Object.php b/core/Object.php index <HASH>..<HASH> 100644 --- a/core/Object.php +++ b/core/Object.php @@ -679,7 +679,7 @@ abstract class Object { public function __call($method, $arguments) { // If the method cache was cleared by an an Object::add_extension() / Object::remove_extension() // cal...
Landing pull request 3. BUGFIX: Object::__call() checking the wrong static. Fixes #<I>
silverstripe_silverstripe-framework
train
f67d2e396ac8a02cbdd93343a44c91d3986b9a4a
diff --git a/TYPO3.Fluid/Classes/View/TemplateView.php b/TYPO3.Fluid/Classes/View/TemplateView.php index <HASH>..<HASH> 100644 --- a/TYPO3.Fluid/Classes/View/TemplateView.php +++ b/TYPO3.Fluid/Classes/View/TemplateView.php @@ -218,6 +218,7 @@ class TemplateView extends \F3\FLOW3\MVC\View\AbstractView implements \F3\Flu...
[+BUGFIX] Fluid (View): Fixed the partials render method. Now partials do basically work, however I don't recommend using them yet until tests and further fixes have been written. Original-Commit-Hash: <I>a1d<I>e<I>d<I>fdf<I>af9f<I>f6
neos_flow-development-collection
train
5fed25aa3197a1670cefb065a9cb0b6340f0edfc
diff --git a/private_storage/fields.py b/private_storage/fields.py index <HASH>..<HASH> 100644 --- a/private_storage/fields.py +++ b/private_storage/fields.py @@ -13,7 +13,7 @@ from django.db import models from django.db.models.fields.files import ImageFieldFile, ImageFileDescriptor from django.forms import ImageFiel...
Remove deprecated functions for Django 4 (force_text() and url())
edoburu_django-private-storage
train
ec23b8447b043eb759879ff59eb53e32a48b284c
diff --git a/container/config.py b/container/config.py index <HASH>..<HASH> 100644 --- a/container/config.py +++ b/container/config.py @@ -237,7 +237,8 @@ class AnsibleContainerConductorConfig(Mapping): relax=True) service_defaults.update(role_args, relax=True) ...
Add info about *which* service is being rendered
ansible_ansible-container
train
eda75a328d37ba0ccf610ff8cdea267f3d82bd42
diff --git a/cheroot/test/test_conn.py b/cheroot/test/test_conn.py index <HASH>..<HASH> 100644 --- a/cheroot/test/test_conn.py +++ b/cheroot/test/test_conn.py @@ -17,10 +17,13 @@ import pytest from jaraco.text import trim, unwrap from cheroot.test import helper, webtest -from cheroot._compat import IS_CI, IS_PYPY, ...
Wait more in slow envs broken conn w/ TCP FIN test
cherrypy_cheroot
train
9da81bf6f77a5b0785739db0689418284018a7a6
diff --git a/src/models/StyledComponent.js b/src/models/StyledComponent.js index <HASH>..<HASH> 100644 --- a/src/models/StyledComponent.js +++ b/src/models/StyledComponent.js @@ -178,7 +178,7 @@ class StyledComponent extends Component<*> { } generateAndInjectStyles(theme: any, props: any, styleSheet: ?StyleShee...
ensure warnTooManyClasses is totally DCE'd
styled-components_styled-components
train
b99228522d4f77534b8c6fd5a985d5da50af9c24
diff --git a/lib/bolt/node/winrm.rb b/lib/bolt/node/winrm.rb index <HASH>..<HASH> 100644 --- a/lib/bolt/node/winrm.rb +++ b/lib/bolt/node/winrm.rb @@ -396,6 +396,7 @@ PS end result_output end + private :execute # 10 minutes in seconds DEFAULT_EXECUTION_TIMEOUT = 10 * 60 diff --git a/sp...
(maint) Test WinRM's run_command rather than execute The `execute` method is an implementation detail, make it private and test `run_command` - the thing we actually expect to work - rather than `execute`.
puppetlabs_bolt
train
6675893e7f258b6fedc3c80a021197d52cbb94c5
diff --git a/fireplace/actions.py b/fireplace/actions.py index <HASH>..<HASH> 100644 --- a/fireplace/actions.py +++ b/fireplace/actions.py @@ -250,16 +250,27 @@ class Play(GameAction): source_card.target = target player.game.no_aura_refresh = True player.game._play(card) + + self.broadcast(player, EventListen...
Fix Summon/Play broadcasts with Choose One and Transform cards
jleclanche_fireplace
train
42e2fd35d849684729d53a433eae227486a01be4
diff --git a/cmd/global-heal.go b/cmd/global-heal.go index <HASH>..<HASH> 100644 --- a/cmd/global-heal.go +++ b/cmd/global-heal.go @@ -269,8 +269,11 @@ func (er *erasureObjects) healErasureSet(ctx context.Context, buckets []string, return } + // erasureObjects layer needs object names to be encoded + en...
heal: Include dir markers when healing a fresh disk (#<I>) Directories markers are not healed when healing a new fresh disk. A a proper fix would be moving object names encoding/decoding to erasure object level but it is too late now since the object to set distribution is calculated at a higher level.
minio_minio
train
64a6ae0ad37334939c44a9bf86a37807f8c85fa3
diff --git a/scanpy/plotting/tools.py b/scanpy/plotting/tools.py index <HASH>..<HASH> 100644 --- a/scanpy/plotting/tools.py +++ b/scanpy/plotting/tools.py @@ -121,7 +121,7 @@ def pca_scatter( def pca_loadings(adata, components=None, show=None, save=None): """Rank genes according to contributions to PCs. - +...
fixed bug in aga graph plotting
theislab_scanpy
train
8f520f3f0de6bd26ea7ef2e6985048083a4e0f85
diff --git a/kernel/classes/ezpreferences.php b/kernel/classes/ezpreferences.php index <HASH>..<HASH> 100644 --- a/kernel/classes/ezpreferences.php +++ b/kernel/classes/ezpreferences.php @@ -192,11 +192,9 @@ class eZPreferences } else { - // For the anonymous user we just return al...
- Fixed problem "Warning: session_start(): Cannot send session cookie - headers already sent by" Additional fix for values() function Ref. to issue #<I>
ezsystems_ezpublish-legacy
train
272cd14ce5e30b19a7a05d70767eba57e917f47e
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -2,8 +2,8 @@ from setuptools import setup setup( name = 'autopython', packages = ['autopython'], - version = '0.0.1', - description = 'Autoscripting in python 3', + version = '0.1', + description = 'Autoscripting fo...
Forget to update setup.py
gosella_autopython
train
dd2ad399f357c9e5d35bf920d29021d7ca385fd8
diff --git a/salt/cloud/__init__.py b/salt/cloud/__init__.py index <HASH>..<HASH> 100644 --- a/salt/cloud/__init__.py +++ b/salt/cloud/__init__.py @@ -62,6 +62,11 @@ class CloudClient(object): ''' self.opts['parallel'] = False self.opts['keep_tmp'] = False + self.opts['deploy'] = True ...
set a few more salt cloud default arguments in the api
saltstack_salt
train
08164677aa2ff85978478d2705d918d8d1ada9c4
diff --git a/controller/internal/supervisor/iptablesctrl/iptables.go b/controller/internal/supervisor/iptablesctrl/iptables.go index <HASH>..<HASH> 100644 --- a/controller/internal/supervisor/iptablesctrl/iptables.go +++ b/controller/internal/supervisor/iptablesctrl/iptables.go @@ -11,6 +11,7 @@ import ( "sync" "...
hash the service id of external networks to get the name
aporeto-inc_trireme-lib
train
70d779aaea719e747b242ad88f1489bf19c6795e
diff --git a/actionpack/lib/action_controller/metal/render_options.rb b/actionpack/lib/action_controller/metal/render_options.rb index <HASH>..<HASH> 100644 --- a/actionpack/lib/action_controller/metal/render_options.rb +++ b/actionpack/lib/action_controller/metal/render_options.rb @@ -13,7 +13,7 @@ module ActionContro...
Update _render_options to reflect the fact that they're public
rails_rails
train
5cc7fbb229f92e6497d8e90959c337468ace31bf
diff --git a/src/index.js b/src/index.js index <HASH>..<HASH> 100644 --- a/src/index.js +++ b/src/index.js @@ -11,6 +11,38 @@ const relativeDir = (parent, child) => relative(parse(parent).name, child); const CACHE = {}; +async function walk(base = '', level = 0) { + const dir = join(prefix, base || sep); + const...
move `walk` outside of export
terkelg_tiny-glob
train
d7b80f264feab36b35414ed2f515e038376d2165
diff --git a/st_reg/tests/test_states.py b/st_reg/tests/test_states.py index <HASH>..<HASH> 100644 --- a/st_reg/tests/test_states.py +++ b/st_reg/tests/test_states.py @@ -96,16 +96,16 @@ def test_al_validation_digit_verification(): #AMAZONAS #REFATORAR -#EM VEM DE 'RIGTH', USE 'RIGHT' -def test_am_validation_rigth...
correction of signature and docstring tests
matheuscas_pyIE
train
f72572c231f8fa847c2b7e703b4698a0af919465
diff --git a/src/MetarDecoder/Service/IcaoChunkDecoder.php b/src/MetarDecoder/Service/IcaoChunkDecoder.php index <HASH>..<HASH> 100644 --- a/src/MetarDecoder/Service/IcaoChunkDecoder.php +++ b/src/MetarDecoder/Service/IcaoChunkDecoder.php @@ -2,6 +2,8 @@ namespace MetarDecoder\Service; +use MetarDecoder\Exception\...
Use exception for icao decoding
SafranCassiopee_php-metar-decoder
train
8adaccb3a83cc88e2b8c605fad40eb485140e636
diff --git a/ttlser/test/test_ttlfmt.py b/ttlser/test/test_ttlfmt.py index <HASH>..<HASH> 100644 --- a/ttlser/test/test_ttlfmt.py +++ b/ttlser/test/test_ttlfmt.py @@ -22,4 +22,4 @@ class TestTtlfmt(unittest.TestCase): try: main() except AttributeError as e: - raise AttributeErr...
test ttlser and ttlfmt remove fstrings ttlser also support pathlib in <I> where path objects are not supported in open
tgbugs_pyontutils
train
ecc89db133de7e3c94a44a40454e9b6446b78f9a
diff --git a/lib/kafkaClient.js b/lib/kafkaClient.js index <HASH>..<HASH> 100644 --- a/lib/kafkaClient.js +++ b/lib/kafkaClient.js @@ -326,7 +326,7 @@ KafkaClient.prototype.refreshBrokerMetadata = function (callback) { ); }; -Client.prototype.loadMetadataFrom = function (broker, cb) { +KafkaClient.prototype.loadM...
Change loadMetadataFrom method to KafkaClient instead of Client fixes #<I> (#<I>)
SOHU-Co_kafka-node
train
8e984d4782c09f2e65e1ea20eef3cdf71661756a
diff --git a/lib/benchmark/bigo/chart.rb b/lib/benchmark/bigo/chart.rb index <HASH>..<HASH> 100644 --- a/lib/benchmark/bigo/chart.rb +++ b/lib/benchmark/bigo/chart.rb @@ -4,22 +4,21 @@ module Benchmark class Chart def initialize(report_data, sizes) - @data = report_data - @sizes = sizes + ...
Minor name cleanup. Freeze data sent to chart to prevent unwanted manipulation
davy_benchmark-bigo
train
a06a053c5b6d94f88c32184945d6dad274d94c5c
diff --git a/README.md b/README.md index <HASH>..<HASH> 100644 --- a/README.md +++ b/README.md @@ -29,25 +29,25 @@ Usage _Note:_ in order to use this API you must obtain a Sysdig Monitor/Secure API token. You can get your user's token in the _Sysdig Monitor API_ section of the settings page for [monitor](https://app...
Renaming SdMonClient -> SdMonitorClient (#<I>) For consistency with SdSecureClient
draios_python-sdc-client
train
52841bee81771dbedf6bd210ee701e128e6ce1b6
diff --git a/take/scanner.py b/take/scanner.py index <HASH>..<HASH> 100644 --- a/take/scanner.py +++ b/take/scanner.py @@ -45,8 +45,8 @@ class Token(namedtuple('Token', 'type_ content line line_num start end')): class ScanError(Exception): - @classmethod - def make(cls, scanner, msg, extra=None): + @stati...
misc cleanup, static method, not a class method
tiffon_take
train
b65aa1a650d2e5f73a3cf51534224c95137300d6
diff --git a/lib/model_schema/dumper.rb b/lib/model_schema/dumper.rb index <HASH>..<HASH> 100644 --- a/lib/model_schema/dumper.rb +++ b/lib/model_schema/dumper.rb @@ -44,6 +44,12 @@ module ModelSchema db = Sequel.connect(opts[:connection]) db.extension(:schema_dumper) + if db.is_a?(Sequel::Postgres...
Include postgres type extensions so schema dumps are accurate.
karthikv_model_schema
train
d5ec8efdafaf24661b7d40478ca91dfda9464f93
diff --git a/activerecord/test/cases/adapters/mysql/connection_test.rb b/activerecord/test/cases/adapters/mysql/connection_test.rb index <HASH>..<HASH> 100644 --- a/activerecord/test/cases/adapters/mysql/connection_test.rb +++ b/activerecord/test/cases/adapters/mysql/connection_test.rb @@ -19,6 +19,9 @@ class MysqlConn...
Skip connection url test when the machine is using socket configuration. The connection url parssing don't accept the socket option
rails_rails
train
b046c5ca2e18beff7d582f8a3bf1c6ee3dce70ce
diff --git a/modules/system/lang/de/validation.php b/modules/system/lang/de/validation.php index <HASH>..<HASH> 100644 --- a/modules/system/lang/de/validation.php +++ b/modules/system/lang/de/validation.php @@ -42,14 +42,14 @@ return [ "max" => [ "numeric" => ":attribute darf nicht größer als...
Updated validation message for string.min and string.max The Validation message results in "Filename of :attribute must not be longer than :max characters" for type string.
octobercms_october
train
d79c7513465b2d367ad885dd1127a75bf3e7219f
diff --git a/src/log/SentryTarget.php b/src/log/SentryTarget.php index <HASH>..<HASH> 100644 --- a/src/log/SentryTarget.php +++ b/src/log/SentryTarget.php @@ -36,13 +36,16 @@ { parent::init(); - $this->_use = Yii::$app->settings->get('sentry_use', 0); - if ($this->_use) + if (Yii::$app->has('settings')) ...
#<I> Check if settings component exists in Sentry.
pulsarvp_vps-tools
train