hash
stringlengths
40
40
diff
stringlengths
131
114k
message
stringlengths
7
980
project
stringlengths
5
67
split
stringclasses
1 value
122660fc8c25a51c50e1cf28099ae06f7986664c
diff --git a/etcdutil/config.go b/etcdutil/config.go index <HASH>..<HASH> 100644 --- a/etcdutil/config.go +++ b/etcdutil/config.go @@ -109,6 +109,11 @@ func NewEtcdConfig(cfg *etcd.Config) (*etcd.Config, error) { cfg.TLS.InsecureSkipVerify = true } + // Enable TLS with no additional configuration + if os.Getenv(...
Added support for ETCD3_ENABLE_TLS
mailgun_holster
train
bd9b37c6f8c435a5d2bcc3c20bfbc4425fb4711f
diff --git a/src/feat/database/conflicts.py b/src/feat/database/conflicts.py index <HASH>..<HASH> 100644 --- a/src/feat/database/conflicts.py +++ b/src/feat/database/conflicts.py @@ -431,13 +431,22 @@ def cleanup_logs(connection, rconnection): continue in_conflict, raw_doc = yield _check_conflict(...
Fix condition on when can we cleanup the update logs imported from the external database.
f3at_feat
train
9ac7e6497bda717bb17828276a46dbae5292bccc
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100755 --- a/setup.py +++ b/setup.py @@ -10,9 +10,6 @@ if version < "2.2.3": from pyrax.version import version -doc_files = [fname.replace("docs/", "") for fname in glob.glob("docs/*md")] -data_files = [("docs", doc_files)] - setup( name = "pyrax", ...
Removed the doc files from setup.py's data_files.
pycontribs_pyrax
train
93de721c2a8f10ca50ded96f89f882f644522def
diff --git a/errors.go b/errors.go index <HASH>..<HASH> 100644 --- a/errors.go +++ b/errors.go @@ -152,10 +152,21 @@ func (e *constraintNotAllowedFailure) traceString() string { ) } +// versionNotAllowedFailure describes a failure where an atom is rejected +// because its version is not allowed by current constrai...
Spruce up versionNotAllowedFailure Add docs to the struct declaration itself, and impl one of the test fixtures that results in that kind of error.
sdboyer_gps
train
b1d2e113ca00a2a58798be3902b903c014ce843f
diff --git a/src/Presenters/FrontendPresenter.php b/src/Presenters/FrontendPresenter.php index <HASH>..<HASH> 100644 --- a/src/Presenters/FrontendPresenter.php +++ b/src/Presenters/FrontendPresenter.php @@ -143,49 +143,27 @@ class FrontendPresenter extends BasePresenter $this->rtmSession = $this->getSession('r...
Fix sourcing of RTM params to session from cookies Originally the CRM used RTM params found in the URLs query parameters. This was not the intention and sufficient, because the tracking attribution might come from the cookie-based rtm_params which are set by remplib.js. This change attempts to read RTM params from UR...
remp2020_crm-application-module
train
60026f70b710f61d105de6dcead94839c15e63cb
diff --git a/p2p/peer.py b/p2p/peer.py index <HASH>..<HASH> 100644 --- a/p2p/peer.py +++ b/p2p/peer.py @@ -243,8 +243,8 @@ class BasePeer: try: return await wait_with_token( self.reader.readexactly(n), token=self.cancel_token, timeout=self.conn_idle_timeout) - except (async...
p2p: Handle BrokenPipeErrors when reading from remote peer (#<I>) That is another error that can be raised by reader.readexactly(), and it wasn't being handled before
ethereum_py-evm
train
305ef3c4bf36e81d1d982efd37fdfb60279d5d5c
diff --git a/drivers/i2c/mma7660_driver.go b/drivers/i2c/mma7660_driver.go index <HASH>..<HASH> 100644 --- a/drivers/i2c/mma7660_driver.go +++ b/drivers/i2c/mma7660_driver.go @@ -1,6 +1,8 @@ package i2c -import "gobot.io/x/gobot" +import ( + "gobot.io/x/gobot" +) const mma7660Address = 0x4c diff --git a/drivers...
i2c: increase test coverage for mma<I> and mpu<I>
hybridgroup_gobot
train
3f9f8abc8277bf8aab9d5f663600eafb58afd257
diff --git a/README.rdoc b/README.rdoc index <HASH>..<HASH> 100644 --- a/README.rdoc +++ b/README.rdoc @@ -39,7 +39,7 @@ If you do not care about your RAM usage, just include them all at once by adding ==== Accessing a Worksheet workbook.worksheets[0] # Returns first worksheet workbook[0] # Returns fi...
Issue #<I>, other minor changes
weshatheleopard_rubyXL
train
4a60d6362f76df8853760f9b48c931d81e999ef0
diff --git a/test/multipart-attach-body.test.js b/test/multipart-attach-body.test.js index <HASH>..<HASH> 100644 --- a/test/multipart-attach-body.test.js +++ b/test/multipart-attach-body.test.js @@ -9,11 +9,12 @@ const http = require('http') const path = require('path') const fs = require('fs') const stream = requir...
refactored multipart attach body test (#<I>)
fastify_fastify-multipart
train
fe6d18fdf2388d8485753203def53868529ddc12
diff --git a/gen_open_api/api/config.go b/gen_open_api/api/config.go index <HASH>..<HASH> 100644 --- a/gen_open_api/api/config.go +++ b/gen_open_api/api/config.go @@ -164,7 +164,13 @@ func (config *Config) setOperation(match, namespaceRep string, ot *OperationType, oc *OperationCategory, definition *Definition) { ...
Fix issue with api operations generation that caused operations to be tied to unfortunately named inner fields - e.g. status operations tied to DeploymentStatus instead of Deployment.
kubernetes-incubator_reference-docs
train
39f5c801f734920e09f3dd0df48204696f4bb154
diff --git a/src/scripts/components/application/application.js b/src/scripts/components/application/application.js index <HASH>..<HASH> 100644 --- a/src/scripts/components/application/application.js +++ b/src/scripts/components/application/application.js @@ -29,6 +29,17 @@ export class Application { const containe...
Added minimize and mazimize methods to application component
glorious-codes_glorious-demo
train
3571d657837925cef694bd8e8b7d37efa439ec10
diff --git a/qunit/qunit.js b/qunit/qunit.js index <HASH>..<HASH> 100644 --- a/qunit/qunit.js +++ b/qunit/qunit.js @@ -571,8 +571,8 @@ extend(QUnit, { */ reset: function() { if ( window.jQuery ) { - jQuery( "#qunit-fixture" ).replaceWith( config.fixture.outerHTML ); - } else { + jQuery( "#qunit-fixture"...
Can't rely on outerHTML for Firefox < <I>. Use cloneNode instead.
JamesMGreene_qunit-assert-html
train
57bbe23f6b84fa124742cf71991acf0a7fea72dd
diff --git a/src/commonworks/file.py b/src/commonworks/file.py index <HASH>..<HASH> 100644 --- a/src/commonworks/file.py +++ b/src/commonworks/file.py @@ -87,3 +87,192 @@ class FileTag(object): return self._version +class HDR(object): + """ + Represents a CWR file Transmission Header (HDR). + + Th...
Added file level validation fields to the model.
weso_CWR-DataApi
train
900dc872bdf5a1ba6291a1b0ce5157ebc678b34e
diff --git a/closure/goog/i18n/currency.js b/closure/goog/i18n/currency.js index <HASH>..<HASH> 100644 --- a/closure/goog/i18n/currency.js +++ b/closure/goog/i18n/currency.js @@ -397,6 +397,7 @@ goog.i18n.currency.CurrencyInfoTier2 = { 'BWP': [2, 'P', 'pula'], 'BYR': [48, 'p.', 'BYR'], 'BZD': [2, '$', 'BZ$'], ...
RELNOTES: Add Offshore Chinese Yuan (CNH) to the tier 2 Closure currencies. ------------- Created by MOE: <URL>
google_closure-library
train
e2c109eb62f4e8c2afbf65761572b123efba422b
diff --git a/tasks/clean.js b/tasks/clean.js index <HASH>..<HASH> 100644 --- a/tasks/clean.js +++ b/tasks/clean.js @@ -17,8 +17,7 @@ module.exports = function(grunt) { grunt.verbose.writeflags(options, 'Options'); // Clean specified files / dirs. - var files = grunt.file.expand(this.file.src); - files...
remove expandFiles, grunt does it for us now
gruntjs_grunt-contrib-clean
train
753fb518820cda2c7d402f4118f6f1d892c05a31
diff --git a/src/test/java/net/finmath/marketdata/model/volatilities/CapletVolatilitiesParametricCalibrationTest.java b/src/test/java/net/finmath/marketdata/model/volatilities/CapletVolatilitiesParametricCalibrationTest.java index <HASH>..<HASH> 100755 --- a/src/test/java/net/finmath/marketdata/model/volatilities/Caple...
Changed to non-static version of createDateFromDateAndOffsetCode.
finmath_finmath-lib
train
b46feb11a42d9c9a3c864028760f72f50b954a60
diff --git a/packages/tests/e2e/cli/instance.test-e2e.js b/packages/tests/e2e/cli/instance.test-e2e.js index <HASH>..<HASH> 100644 --- a/packages/tests/e2e/cli/instance.test-e2e.js +++ b/packages/tests/e2e/cli/instance.test-e2e.js @@ -24,7 +24,7 @@ describe('CLI Instance', function () { .end(done) }) - it(...
chore(tests): skip broken test
Syncano_syncano-node
train
5ed47180e659fae11a13cb50afa5886af4db08ab
diff --git a/internal/provider/provider.go b/internal/provider/provider.go index <HASH>..<HASH> 100644 --- a/internal/provider/provider.go +++ b/internal/provider/provider.go @@ -27,7 +27,7 @@ func New() *schema.Provider { } } -func DeleteContext(_ context.Context, d *schema.ResourceData, _ interface{}) diag.Diagn...
Renaming DeleteContext func to RemoveResourceFromState (#<I>)
terraform-providers_terraform-provider-random
train
3e27f0f9fdf9502771cc128d297b21e4ed37e8cb
diff --git a/src/Bridges/NetteDI/TranslationExtension.php b/src/Bridges/NetteDI/TranslationExtension.php index <HASH>..<HASH> 100644 --- a/src/Bridges/NetteDI/TranslationExtension.php +++ b/src/Bridges/NetteDI/TranslationExtension.php @@ -6,13 +6,14 @@ use Nette\DI\CompilerExtension, Nexendrie\Translation\Resolver...
removed methods getFolders() and setFolders() from ILoader
nexendrie_translation
train
acd028e986a9505cc0f01471758c84260f39c312
diff --git a/goble.go b/goble.go index <HASH>..<HASH> 100644 --- a/goble.go +++ b/goble.go @@ -151,7 +151,12 @@ func (ble *BLE) HandleXpcEvent(event dict, err error) { // send a message to Blued func (ble *BLE) sendCBMsg(id int, args dict) { - C.XpcSendMessage(ble.conn, goToXpc(dict{"kCBMsgId": id, "kCBMsgArgs": ar...
what do you know ? StartAdvertising requires a list of strings, not UUIDs :(
raff_goble
train
c0f5d7c236d1e41cf927274efac50fb1f71007b6
diff --git a/lib/header/index.js b/lib/header/index.js index <HASH>..<HASH> 100644 --- a/lib/header/index.js +++ b/lib/header/index.js @@ -15,7 +15,6 @@ module.exports = (function() { this.branch( 'list', - 'content', 'x' );
Removed 'content' from default branching in lib/header/index.js
jhermsmeier_node-envelope
train
9e8f1a3a02f09ceaa972f2f02d868287fc4f2133
diff --git a/lib/draper/base.rb b/lib/draper/base.rb index <HASH>..<HASH> 100644 --- a/lib/draper/base.rb +++ b/lib/draper/base.rb @@ -5,6 +5,7 @@ module Draper attr_accessor :model DEFAULT_DENIED = Object.new.methods + FORCED_PROXY = [:to_param] self.denied = DEFAULT_DENIED def initializ...
Implement forced proxy for to_param
drapergem_draper
train
05cb220b40bc4b71c23777d93aece8bd290624e8
diff --git a/openquake/engine/calculators/hazard/general.py b/openquake/engine/calculators/hazard/general.py index <HASH>..<HASH> 100644 --- a/openquake/engine/calculators/hazard/general.py +++ b/openquake/engine/calculators/hazard/general.py @@ -41,7 +41,6 @@ from openquake.engine.input import exposure from openquake...
Replaced average with mean_curve Former-commit-id: <I>dccd6feee<I>f<I>b7cffd<I>c<I>bc4b<I>
gem_oq-engine
train
726763cfcd768cb365fe603ec18a717a85e9c5c4
diff --git a/addon/models/i-i-s-caseberry-logging-objects-application-log.js b/addon/models/i-i-s-caseberry-logging-objects-application-log.js index <HASH>..<HASH> 100644 --- a/addon/models/i-i-s-caseberry-logging-objects-application-log.js +++ b/addon/models/i-i-s-caseberry-logging-objects-application-log.js @@ -80,6 ...
Add initial support Assertion logging
Flexberry_ember-flexberry
train
1d24a15c845aa3288c94c9a07683656e8f9c844e
diff --git a/lib/runnable.js b/lib/runnable.js index <HASH>..<HASH> 100644 --- a/lib/runnable.js +++ b/lib/runnable.js @@ -142,6 +142,16 @@ Runnable.prototype.resetTimeout = function(){ }; /** + * Whitelist these globals for this test run + * + * @api private + */ +Runnable.prototype.globals = function(arr){ + var...
add Runnable.globals(arr) method for per test global whitelist Instead of suite wide whitelisting of global leaks, this allows for individual tests to whitelist globals. This allows for keeping global detection for tests which are not expected to set globals while allowing for certain globals if the author expects a t...
mochajs_mocha
train
b79df4965bf336143ec82f7531100c97421385db
diff --git a/examples/iti_21/server.py b/examples/iti_21/server.py index <HASH>..<HASH> 100644 --- a/examples/iti_21/server.py +++ b/examples/iti_21/server.py @@ -85,14 +85,16 @@ class PDQSupplier(AbstractHandler): def reply(self): print('Received a message') - query_params = dict((self.FIELD_NAM...
Changed to send a response with results
crs4_hl7apy
train
9245e51390ff5b592578c9836609c527d6a0a021
diff --git a/library/WT/Person.php b/library/WT/Person.php index <HASH>..<HASH> 100644 --- a/library/WT/Person.php +++ b/library/WT/Person.php @@ -427,8 +427,8 @@ class WT_Person extends WT_GedcomRecord { return /* I18N: A range of years, e.g. "1870–", "1870–1920", "–1920" */ WT_I18N::translate( '%1$s–%2$s'...
HTML validation. Block-level elements (such as <p>) may not be placed inside inline-elements (such as <span>).
fisharebest_webtrees
train
ed0938ab023f48e2e30a782152fe4ea64c93eb83
diff --git a/lib/validation_reflection.rb b/lib/validation_reflection.rb index <HASH>..<HASH> 100644 --- a/lib/validation_reflection.rb +++ b/lib/validation_reflection.rb @@ -55,7 +55,6 @@ module ValidationReflection # :nodoc: }, __FILE__, __LINE__ end end - alias :reload :install module ClassMetho...
Remove alias to reload that breaks stuff Conflicts: lib/validation_reflection.rb
redinger_validation_reflection
train
593a832c98fb57b1e854f6cc7feea183955c929b
diff --git a/webpack.dist.config.js b/webpack.dist.config.js index <HASH>..<HASH> 100644 --- a/webpack.dist.config.js +++ b/webpack.dist.config.js @@ -61,7 +61,8 @@ module.exports = { } }), new webpack.optimize.OccurenceOrderPlugin(), - new webpack.optimize.AggressiveMergingPlugin() + new webpack...
Extract scss file to css
patw0929_react-smartbanner
train
b3f434ffacb4b4e8609ee569399f7e4aba68c37e
diff --git a/lib/invisible_captcha/controller_ext.rb b/lib/invisible_captcha/controller_ext.rb index <HASH>..<HASH> 100644 --- a/lib/invisible_captcha/controller_ext.rb +++ b/lib/invisible_captcha/controller_ext.rb @@ -37,11 +37,18 @@ module InvisibleCaptcha end def invisible_captcha_timestamp?(options = {}...
consider as spam if timestamp not in session closes #<I>
markets_invisible_captcha
train
23bf6bbf7eb971fdd9a44d41fbd2bb9614d339b6
diff --git a/DependencyInjection/Factory/Payment/OmnipayPaymentFactory.php b/DependencyInjection/Factory/Payment/OmnipayPaymentFactory.php index <HASH>..<HASH> 100644 --- a/DependencyInjection/Factory/Payment/OmnipayPaymentFactory.php +++ b/DependencyInjection/Factory/Payment/OmnipayPaymentFactory.php @@ -55,7 +55,7 @@...
#<I> allow externally registered plugins for omnipay
Payum_PayumBundle
train
9c307a5093ff28c7a8636483f6887de3bacbb2ee
diff --git a/lib/sass/scss/parser.rb b/lib/sass/scss/parser.rb index <HASH>..<HASH> 100644 --- a/lib/sass/scss/parser.rb +++ b/lib/sass/scss/parser.rb @@ -408,10 +408,10 @@ module Sass end def declaration - # The tok(/\*/) allows the "*prop: val" hack - if tok(/\*/) + # This allows ...
[Sass] [SCSS] Allow for the ':name: val' property hack.
sass_ruby-sass
train
88089fa331b6e438205e80b2ce9a1276633f9a43
diff --git a/planet/clients/orders.py b/planet/clients/orders.py index <HASH>..<HASH> 100644 --- a/planet/clients/orders.py +++ b/planet/clients/orders.py @@ -297,12 +297,11 @@ class OrdersClient(): Raises: planet.exceptions.APIException: On API error. """ - req = self._request(l...
Moved directory declaration back from download_order() to download_asset()
planetlabs_planet-client-python
train
70a65aa8042a5f2740ef5293cb53c2012db876b8
diff --git a/api/app.go b/api/app.go index <HASH>..<HASH> 100644 --- a/api/app.go +++ b/api/app.go @@ -163,7 +163,7 @@ func appList(w http.ResponseWriter, r *http.Request, t auth.Token) error { owner := r.URL.Query().Get("owner") pool := r.URL.Query().Get("pool") description := r.URL.Query().Get("description") - ...
api: add support to filter apps by multiple status
tsuru_tsuru
train
5c892bf36184b70455bccf7098d63708ecceac43
diff --git a/pyphi/compute.py b/pyphi/compute.py index <HASH>..<HASH> 100644 --- a/pyphi/compute.py +++ b/pyphi/compute.py @@ -632,14 +632,14 @@ def main_complex(network, state): raise ValueError( """Input must be a Network (perhaps you passed a Subsystem instead?)""") - log.info("...
Don't log str(network) Even when logging is disabled, log strings are built, and the string representation of a network is somewhat expensive to build if the TPM is large. This caused performance problems when main complexes were computed in a hot loop.
wmayner_pyphi
train
a0d5cf13d3e003a198b3fd24f5adabc64a0cf137
diff --git a/webmonitor/static/javascripts/webmonitor.js b/webmonitor/static/javascripts/webmonitor.js index <HASH>..<HASH> 100644 --- a/webmonitor/static/javascripts/webmonitor.js +++ b/webmonitor/static/javascripts/webmonitor.js @@ -58,13 +58,13 @@ var WebMonitor = (function($, undefined) { // undefined var d...
Update JS helpers for new d3.plotables.
alexpearce_jobmonitor
train
97b1cd5d6d2048f563b336549a694d1f4a0d2b89
diff --git a/pkg/oc/cli/debug/debug.go b/pkg/oc/cli/debug/debug.go index <HASH>..<HASH> 100644 --- a/pkg/oc/cli/debug/debug.go +++ b/pkg/oc/cli/debug/debug.go @@ -15,6 +15,8 @@ import ( kappsv1beta1 "k8s.io/api/apps/v1beta1" kappsv1beta2 "k8s.io/api/apps/v1beta2" batchv1 "k8s.io/api/batch/v1" + batchv1beta1 "k8s....
Alow cron jobs to be debugged Like all other workload controllers.
openshift_origin
train
455af3046313fe34eb0220faee2ae76dfdab9224
diff --git a/qtpy/tests/test_qtdesigner.py b/qtpy/tests/test_qtdesigner.py index <HASH>..<HASH> 100644 --- a/qtpy/tests/test_qtdesigner.py +++ b/qtpy/tests/test_qtdesigner.py @@ -1,11 +1,11 @@ from __future__ import absolute_import import pytest -from qtpy import PYSIDE2, QtDesigner +from qtpy import PYSIDE2, PYSID...
Fix failing test on pyside, and remove some unused imports.
spyder-ide_qtpy
train
d385ad715745d82a00f065b172d9bfbf6119f59d
diff --git a/src/hamster/client.py b/src/hamster/client.py index <HASH>..<HASH> 100644 --- a/src/hamster/client.py +++ b/src/hamster/client.py @@ -111,7 +111,9 @@ class Storage(gobject.GObject): """returns facts of the current date, respecting hamster midnight hamster midnight is stored in gconf, a...
checking out current day in the trophies
projecthamster_hamster
train
fd17234357129fa78f59d4aa4aa36ea6da1f430b
diff --git a/.storybook/lib/storiesFromMarkdown.js b/.storybook/lib/storiesFromMarkdown.js index <HASH>..<HASH> 100644 --- a/.storybook/lib/storiesFromMarkdown.js +++ b/.storybook/lib/storiesFromMarkdown.js @@ -1,27 +1,51 @@ -import parseCodeBlocks from 'code-blocks/lib/fromString' -import htmlToReact from 'html-to-rea...
fix(storybook): refactor lib/storiesFromMarkdown as webpack loader
primer_css
train
e4a3b5d2427d527880e358b0ca1d4dbade12157b
diff --git a/c7n/resources/account.py b/c7n/resources/account.py index <HASH>..<HASH> 100644 --- a/c7n/resources/account.py +++ b/c7n/resources/account.py @@ -144,7 +144,7 @@ class CloudTrailEnabled(Filter): if self.data.get('multi-region'): trails = [t for t in trails if t.get('IsMultiRegionTrail...
account cloudtrail filter, fix sns notify check (#<I>)
cloud-custodian_cloud-custodian
train
53d74846a2ae2712451dd346903bddeeb749958f
diff --git a/components/app/src/main/java/org/trellisldp/app/config/CORSConfiguration.java b/components/app/src/main/java/org/trellisldp/app/config/CORSConfiguration.java index <HASH>..<HASH> 100644 --- a/components/app/src/main/java/org/trellisldp/app/config/CORSConfiguration.java +++ b/components/app/src/main/java/or...
Dangling references to Want-Digest and Digest headers
trellis-ldp_trellis
train
74b87f2dde437cbf2a745fd71bc2f29dcd3143a9
diff --git a/src/Migration.php b/src/Migration.php index <HASH>..<HASH> 100644 --- a/src/Migration.php +++ b/src/Migration.php @@ -146,8 +146,8 @@ class Migration extends Expression public static function register(string $driverType, string $migrator = null) { // forward to generic Migration::registe...
Refactor usages of call_user_func to direct calls (#<I>)
atk4_schema
train
3167cf31a408d0a08ea58c3bb1b5581a0c3579c6
diff --git a/Test/Unit/ComponentPlugins8Test.php b/Test/Unit/ComponentPlugins8Test.php index <HASH>..<HASH> 100644 --- a/Test/Unit/ComponentPlugins8Test.php +++ b/Test/Unit/ComponentPlugins8Test.php @@ -411,9 +411,12 @@ class ComponentPlugins8Test extends TestBaseComponentGeneration { // Check the config yml fil...
Changed plugin test to use YAML helper.
drupal-code-builder_drupal-code-builder
train
8b49687518fe4679015d76b78c8c119aad5944d7
diff --git a/assets/src/org/ruboto/SplashActivity.java b/assets/src/org/ruboto/SplashActivity.java index <HASH>..<HASH> 100644 --- a/assets/src/org/ruboto/SplashActivity.java +++ b/assets/src/org/ruboto/SplashActivity.java @@ -386,6 +386,7 @@ public class SplashActivity extends Activity { private void startUserAct...
Need to call finish() after starting the user activity.
ruboto_ruboto
train
bd103fde5fadba1924edbc95d926fc4e3d717e00
diff --git a/admin/blocks.php b/admin/blocks.php index <HASH>..<HASH> 100644 --- a/admin/blocks.php +++ b/admin/blocks.php @@ -51,9 +51,10 @@ print_error('blockdoesnotexist', 'error'); } - else { - $blockobject = block_instance($block->name); - $strblockname = $block...
MDL-<I> improving blocks management UI
moodle_moodle
train
7b55cd3f99c261880e297056de554010fb9a7c6e
diff --git a/lib/Widget/Db.php b/lib/Widget/Db.php index <HASH>..<HASH> 100644 --- a/lib/Widget/Db.php +++ b/lib/Widget/Db.php @@ -15,9 +15,7 @@ namespace Widget; */ class Db extends AbstractWidget { - protected $tables = array( - - ); + protected $tables = array(); public function __invoke() {...
added table configuration, ref #<I>
twinh_wei
train
3d473eeed98caaccdf419c7f9d3d3c6e5aadd2c9
diff --git a/lib/Widget/Smarty.php b/lib/Widget/Smarty.php index <HASH>..<HASH> 100644 --- a/lib/Widget/Smarty.php +++ b/lib/Widget/Smarty.php @@ -11,7 +11,7 @@ namespace Widget; use Widget\View\ViewInterface; /** - * Twig + * The smarty widget * * @author Twin Huang <twinh@yahoo.cn> */ @@ -65,7 ...
updated smarty widget's docblock
twinh_wei
train
003616490e327f2b8d695e08d756a40cd8d4cee1
diff --git a/src/main/java/com/feedzai/commons/sql/abstraction/engine/DatabaseEngine.java b/src/main/java/com/feedzai/commons/sql/abstraction/engine/DatabaseEngine.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/feedzai/commons/sql/abstraction/engine/DatabaseEngine.java +++ b/src/main/java/com/feedzai/commons/...
Set new createBatch() method as default to prevent breaking changes
feedzai_pdb
train
09b04ddabfc755d9e2b0ee3b6f44090c06b05c4c
diff --git a/geocoder/base.py b/geocoder/base.py index <HASH>..<HASH> 100644 --- a/geocoder/base.py +++ b/geocoder/base.py @@ -170,7 +170,7 @@ class Base(object): elif sys.version_info.major == 3: if isinstance(value, str): - return value.encode('utf-8') + ...
#<I> Remove encode from Python3
DenisCarriere_geocoder
train
bdcdcc7be38bd2f057f17eb2483ffffb0f1c01a3
diff --git a/framework/src/play/src/main/java/play/libs/WS.java b/framework/src/play/src/main/java/play/libs/WS.java index <HASH>..<HASH> 100644 --- a/framework/src/play/src/main/java/play/libs/WS.java +++ b/framework/src/play/src/main/java/play/libs/WS.java @@ -142,6 +142,19 @@ public class WS { } ...
Default to AuthScheme.BASIC in Java API (already the case in the Scala API).
playframework_playframework
train
521325664b94ccca70fb83de5f017d5717d7b04e
diff --git a/lib/productions/iterable.js b/lib/productions/iterable.js index <HASH>..<HASH> 100644 --- a/lib/productions/iterable.js +++ b/lib/productions/iterable.js @@ -1,5 +1,5 @@ -import { Base } from "./base"; -import { type_with_extended_attributes } from "./helpers"; +import { Base } from "./base.js"; +import { ...
fix: add missing file extensions (#<I>)
w3c_webidl2.js
train
9b9cfab8d39867cf2e97293eda6f9866143163f0
diff --git a/js/gyronorm.js b/js/gyronorm.js index <HASH>..<HASH> 100644 --- a/js/gyronorm.js +++ b/js/gyronorm.js @@ -93,6 +93,7 @@ gn.end = function(){ gn.stop(); window.removeEventListener('deviceorientation',onDeviceOrientationHandler); window.removeEventListener('devicemotion',onDeviceMotionHandler); + w...
Update to gn.end() method Now also removes event listener for the compassNeedsCalibration event.
dorukeker_gyronorm.js
train
7cf2ab7fa893196aecd682554d948d840cd23b6a
diff --git a/lib/codemirror.js b/lib/codemirror.js index <HASH>..<HASH> 100644 --- a/lib/codemirror.js +++ b/lib/codemirror.js @@ -531,7 +531,7 @@ var CodeMirror = (function() { handled = lookupKey("Shift-" + name, options.extraKeys, options.keyMap, function(b) {return doHandleBind...
Change default binding of Tab Tab now inserts a tab. Shift-Tab resets indentation to 'right' size Ctrl/Cmd-[ decreases indentation Ctrl/Cmd-] increases it (by an indentUnit) Issue #<I>
codemirror_CodeMirror
train
95a2c622f5d8c3f5775d7523a59f95bfb57441c8
diff --git a/app/controllers/web_console/console_sessions_controller.rb b/app/controllers/web_console/console_sessions_controller.rb index <HASH>..<HASH> 100644 --- a/app/controllers/web_console/console_sessions_controller.rb +++ b/app/controllers/web_console/console_sessions_controller.rb @@ -37,7 +37,7 @@ module WebC...
Add id to permitted parameters.
gsamokovarov_web-console-rails3
train
c4f4c7cde8b15061a4e95036344713644894ff48
diff --git a/src/cmsplugin_filer_folder/cms_plugins.py b/src/cmsplugin_filer_folder/cms_plugins.py index <HASH>..<HASH> 100644 --- a/src/cmsplugin_filer_folder/cms_plugins.py +++ b/src/cmsplugin_filer_folder/cms_plugins.py @@ -32,21 +32,19 @@ class FilerFolderPlugin(CMSPluginBase): def get_children(self, folder): ...
Try PluginMedia still no luck ....
divio_cmsplugin-filer
train
c61a1c45eece9a9eecd892ee41432d73200699cc
diff --git a/test/tools/mongo_config.rb b/test/tools/mongo_config.rb index <HASH>..<HASH> 100644 --- a/test/tools/mongo_config.rb +++ b/test/tools/mongo_config.rb @@ -104,9 +104,9 @@ module Mongo return @pid if running? begin @pid = fork do - STDIN.reopen '/dev/null' - ...
minor: stop swallowing output from mongod
mongodb_mongo-ruby-driver
train
99acd96ac0e4aeab5eb963809d097d1cb5af0881
diff --git a/lib/webinterface_handler.py b/lib/webinterface_handler.py index <HASH>..<HASH> 100644 --- a/lib/webinterface_handler.py +++ b/lib/webinterface_handler.py @@ -65,7 +65,8 @@ DEBUG = False # List of URIs for which the 'ln' argument must not be added # automatically no_lang_recognition_uris = ['/rss', - ...
Deployed complete support for HTTP HEAD with semantic correctness (tm). i.e. doing HEAD of a non existing record URL/file/collection would return <I>, while doing GET would return the usual nice HTML page. Added support for multipart-range based on mod_python having chunked encoding disableable on request.
inveniosoftware_invenio-base
train
18dea79eab94a6422c85c42fc68339c859d690fa
diff --git a/dangerfile.js b/dangerfile.js index <HASH>..<HASH> 100644 --- a/dangerfile.js +++ b/dangerfile.js @@ -126,7 +126,9 @@ async function reportBundleSize() { await git(`fetch ${UPSTREAM_REMOTE}`); const mergeBaseCommit = await git(`merge-base HEAD ${UPSTREAM_REMOTE}/${upstreamRef}`); - const detailedC...
[core] Link to experimental size-comparison page (#<I>)
mui-org_material-ui
train
e00b82ae05539e26a27f9ff318422d75c2071a87
diff --git a/packages/bonde-styleguide/src/layout/Header/Header.js b/packages/bonde-styleguide/src/layout/Header/Header.js index <HASH>..<HASH> 100644 --- a/packages/bonde-styleguide/src/layout/Header/Header.js +++ b/packages/bonde-styleguide/src/layout/Header/Header.js @@ -2,7 +2,7 @@ import styled from 'styled-compon...
feat(styleguide): become minHeight on Header optional
nossas_bonde-client
train
91c26281daab90677c8b7bb90f8d6ce17d220696
diff --git a/communication/controller/src/main/java/org/openbase/jul/communication/controller/AbstractRemoteClient.java b/communication/controller/src/main/java/org/openbase/jul/communication/controller/AbstractRemoteClient.java index <HASH>..<HASH> 100644 --- a/communication/controller/src/main/java/org/openbase/jul/c...
make sure the remotes do not try to reconnect on system shutdown.
openbase_jul
train
51f19d51d694e187cb7972ef7022e20928dfc073
diff --git a/src/frontend/org/voltdb/sysprocs/SnapshotRestore.java b/src/frontend/org/voltdb/sysprocs/SnapshotRestore.java index <HASH>..<HASH> 100644 --- a/src/frontend/org/voltdb/sysprocs/SnapshotRestore.java +++ b/src/frontend/org/voltdb/sysprocs/SnapshotRestore.java @@ -241,11 +241,7 @@ public class SnapshotRestore...
Refactor: prefer isLowestSiteId() to sitetracker.
VoltDB_voltdb
train
495a597a95f6091a0dda70d5d97ce94988dd25a3
diff --git a/heman/api/__init__.py b/heman/api/__init__.py index <HASH>..<HASH> 100644 --- a/heman/api/__init__.py +++ b/heman/api/__init__.py @@ -25,7 +25,7 @@ class AuthorizedResource(BaseResource): class ApiCatchall(BaseResource): def get(self, path): - return {'status': 404, 'message': 'Not Found'}, ...
Create building if it doesn't exist
gisce_heman
train
936297c64cd4e1355f196df48d01f946467631f5
diff --git a/test/e2e/framework/util.go b/test/e2e/framework/util.go index <HASH>..<HASH> 100644 --- a/test/e2e/framework/util.go +++ b/test/e2e/framework/util.go @@ -2623,7 +2623,7 @@ func GetReadySchedulableNodesOrDie(c *client.Client) (nodes *api.NodeList) { } func WaitForAllNodesSchedulable(c *client.Client) er...
Networking e2es: Wait for all nodes to be schedulable in kubeproxy and networking tests Now that GCE routes take an extremely long time to come up and there's a variance in "Ready" and "Schedulable", start cherry-picking tests where we really want to have all nodes routable/schedulable for testing. Adding logging. Thi...
kubernetes_kubernetes
train
51eec4488ec86e3a5e2cecb95c091e2549fd8a3e
diff --git a/zengine/views/crud.py b/zengine/views/crud.py index <HASH>..<HASH> 100644 --- a/zengine/views/crud.py +++ b/zengine/views/crud.py @@ -649,8 +649,11 @@ class CrudView(BaseView): self.object.get_choices_for(field_name)] else: - f['values'] = [{'na...
Applied list filters echo back from backend to client rref #<I>
zetaops_zengine
train
04ab0d3caff895b293011f6e5c4e739db650d9f8
diff --git a/packages/cli/bilt-cli/scripts/run-bilt-cli.js b/packages/cli/bilt-cli/scripts/run-bilt-cli.js index <HASH>..<HASH> 100644 --- a/packages/cli/bilt-cli/scripts/run-bilt-cli.js +++ b/packages/cli/bilt-cli/scripts/run-bilt-cli.js @@ -8,7 +8,6 @@ process.on('unhandledRejection', err => { }) const argv = yar...
bc: connected yargs to bilthere (not running yet)
giltayar_bilt
train
b855bdbd3a14bf851cafccb70fa1be5b00fd026b
diff --git a/lib/vmc/cli/user/base.rb b/lib/vmc/cli/user/base.rb index <HASH>..<HASH> 100644 --- a/lib/vmc/cli/user/base.rb +++ b/lib/vmc/cli/user/base.rb @@ -19,7 +19,7 @@ module VMC end def validate_password_strength!(password) - strength = client.base.uaa.password_score(password) + stre...
use cfoundry client's password score instead of digging up uaa client's [fixes #<I>]
cloudfoundry-attic_cf
train
273e44c04f2d2f1433f25024c1ab788fdd38d9d4
diff --git a/lib/chef/application/apply.rb b/lib/chef/application/apply.rb index <HASH>..<HASH> 100644 --- a/lib/chef/application/apply.rb +++ b/lib/chef/application/apply.rb @@ -29,7 +29,7 @@ require 'chef/resources' class Chef::Application::Apply < Chef::Application - banner "Usage: chef-apply [RECIPE_FILE] [-e...
Fix chef-apply usage banner The chef-apply option flags should trail the recipe or recipe text that is being applied. This updates the chef-apply banner to show the correct usage. Fixes #<I>
chef_chef
train
9276ae51f22b46ad405ac0783762ca833e9e8d6e
diff --git a/lib/hammer_cli_katello/repository.rb b/lib/hammer_cli_katello/repository.rb index <HASH>..<HASH> 100644 --- a/lib/hammer_cli_katello/repository.rb +++ b/lib/hammer_cli_katello/repository.rb @@ -382,12 +382,12 @@ module HammerCLIKatello private def upload_file(file, opts = {}) - uploa...
Fixes #<I> - Support pulp3 content uploads
Katello_hammer-cli-katello
train
5776f74ca6ab0b856e9b2bb3d5aa350a07f39785
diff --git a/hazelcast/src/main/java/com/hazelcast/scheduledexecutor/impl/ScheduledTaskDescriptor.java b/hazelcast/src/main/java/com/hazelcast/scheduledexecutor/impl/ScheduledTaskDescriptor.java index <HASH>..<HASH> 100644 --- a/hazelcast/src/main/java/com/hazelcast/scheduledexecutor/impl/ScheduledTaskDescriptor.java +...
Fix NPE on ScheduledExecutor when handling multiple migration requests on the same source. (#<I>) (cherry picked from commit <I>dd5c<I>dbc<I>c0a<I>bcbb<I>aa<I>)
hazelcast_hazelcast
train
b612d44cea91efff7341f732f7179179a8868bc4
diff --git a/lib/smartguard/applications/smartkiosk.rb b/lib/smartguard/applications/smartkiosk.rb index <HASH>..<HASH> 100644 --- a/lib/smartguard/applications/smartkiosk.rb +++ b/lib/smartguard/applications/smartkiosk.rb @@ -64,6 +64,15 @@ module Smartguard FileUtils.mkdir_p "#{release}/tmp/pids" ...
Symlinking should happen before migration
smartkiosk_smartguard
train
1a6c6a06ac88b97fd6c454490b77e49ec89afffe
diff --git a/src/Analyser/NodeScopeResolver.php b/src/Analyser/NodeScopeResolver.php index <HASH>..<HASH> 100644 --- a/src/Analyser/NodeScopeResolver.php +++ b/src/Analyser/NodeScopeResolver.php @@ -942,15 +942,18 @@ class NodeScopeResolver $elseIfScope = $scope->filterByFalseyValue($node->cond); $elseIfStateme...
Looking for assigns after series of conditions didn't filter elseif conditions by truthy value
phpstan_phpstan
train
24dea66bba5b0f939cc34af5a8e6ff6f4d3cb4f9
diff --git a/lib/graphql/static_validation/rules/variables_are_input_types.rb b/lib/graphql/static_validation/rules/variables_are_input_types.rb index <HASH>..<HASH> 100644 --- a/lib/graphql/static_validation/rules/variables_are_input_types.rb +++ b/lib/graphql/static_validation/rules/variables_are_input_types.rb @@ -1...
fix(StaticValidation) handle unknown variable types
rmosolgo_graphql-ruby
train
355dc8d7b5cc4ffbd69299313880dfdbfd220177
diff --git a/src/test/java/com/suse/saltstack/netapi/event/TyrusWebSocketEventsTest.java b/src/test/java/com/suse/saltstack/netapi/event/TyrusWebSocketEventsTest.java index <HASH>..<HASH> 100644 --- a/src/test/java/com/suse/saltstack/netapi/event/TyrusWebSocketEventsTest.java +++ b/src/test/java/com/suse/saltstack/neta...
Change tests content sequence to assert at the right time
SUSE_salt-netapi-client
train
3a721d84dbc1a525a7c21c92aa614e05f9de15b5
diff --git a/closure/goog/ui/registry.js b/closure/goog/ui/registry.js index <HASH>..<HASH> 100644 --- a/closure/goog/ui/registry.js +++ b/closure/goog/ui/registry.js @@ -35,7 +35,7 @@ goog.ui.registry.getDefaultRenderer = function(componentCtor) { // Locate the default renderer based on the constructor's unique ID....
Fix a bad @constructor annotation. Pointed out by Jay Young on closure-library-discuss R=pupius DELTA=1 (0 added, 0 deleted, 1 changed) Revision created by MOE tool push_codebase. MOE_MIGRATION=<I> git-svn-id: <URL>
google_closure-library
train
bd362263f71caf0901a89867e010f7fd583a598a
diff --git a/bin/rdpy-rdpmitm.py b/bin/rdpy-rdpmitm.py index <HASH>..<HASH> 100755 --- a/bin/rdpy-rdpmitm.py +++ b/bin/rdpy-rdpmitm.py @@ -271,7 +271,7 @@ if __name__ == '__main__': clientSecurity = rdp.SecurityLevel.RDP_LEVEL_SSL try: - opts, args = getopt.getopt(sys.argv[1:], "hl:k:c:o:r") + ...
Correct bug from cssp security layer
citronneur_rdpy
train
4ee8ef5d4167afa00b21889a5fca3d39350ec2ef
diff --git a/version.php b/version.php index <HASH>..<HASH> 100644 --- a/version.php +++ b/version.php @@ -29,11 +29,11 @@ defined('MOODLE_INTERNAL') || die(); -$version = 2016052300.01; // YYYYMMDD = weekly release date of this DEV branch. +$version = 2016052300.02; // YYYYMMDD ...
weekly on-sync release <I>dev
moodle_moodle
train
8300a08303a53c7fa730231ef5d2d0a1040eee12
diff --git a/src/flapjack/testing.py b/src/flapjack/testing.py index <HASH>..<HASH> 100644 --- a/src/flapjack/testing.py +++ b/src/flapjack/testing.py @@ -71,8 +71,13 @@ class FlapjackUnitTest(unittest.TestCase): self.assertOKResponse(response) def assertResponse(self, response, expected): - ...
AssertResponse() can now compare response to a list of acceptable values, instead of just one value
armet_python-armet
train
5910b9e39fe99cae5dd5248fdce36ab5417fbacb
diff --git a/spec/gen.go b/spec/gen.go index <HASH>..<HASH> 100644 --- a/spec/gen.go +++ b/spec/gen.go @@ -3,6 +3,8 @@ // license that can be found in the LICENSE file. // Source code and contact info at http://github.com/streadway/amqp +// +build ignore + package main import (
Ignore the specification compiler during builds
streadway_amqp
train
12224e23ce8d282625645e41cdc94cdf492072dd
diff --git a/dataswim/data/transform.py b/dataswim/data/transform.py index <HASH>..<HASH> 100644 --- a/dataswim/data/transform.py +++ b/dataswim/data/transform.py @@ -492,6 +492,19 @@ class Transform(): if self.autoprint is True: self.ok("Diff column " + name + " added to the dataframe") + de...
Add a gsum_ method for groupsum
synw_dataswim
train
a0c666a634084df7a561ea198b1c094ecf101bdf
diff --git a/pydevd.py b/pydevd.py index <HASH>..<HASH> 100644 --- a/pydevd.py +++ b/pydevd.py @@ -847,21 +847,16 @@ class PyDB: else: #Note: this else should be removed after PyCharm migrates to setting #breakpoints by id (and ideally also provides...
Fix passing function name for breakpoint.
fabioz_PyDev.Debugger
train
3da7e2a8a8cd7039f5d1bbd21f046b0b861bfbcc
diff --git a/openxc/tools/diagnostics.py b/openxc/tools/diagnostics.py index <HASH>..<HASH> 100644 --- a/openxc/tools/diagnostics.py +++ b/openxc/tools/diagnostics.py @@ -74,5 +74,7 @@ def main(): controller = controller_class(**controller_kwargs) controller.start() + import time + time.sleep(.1) ...
Hack in some sleep before diag requests to fix control command.
openxc_openxc-python
train
586e3345d1eb517a86f18099e5ae61fd41022c07
diff --git a/lib/actions/set.js b/lib/actions/set.js index <HASH>..<HASH> 100644 --- a/lib/actions/set.js +++ b/lib/actions/set.js @@ -12,14 +12,11 @@ const cast = (datatypes, useDefaults, items) => Array.isArray(items) const mapFromSource = (source, useDefaults, items, type) => source.mapFromSource(items, {useDefault...
Don't use id from payload in SET
integreat-io_integreat
train
89001c4b258c5ca39a7a038769c45ea34c389e68
diff --git a/app/view/js/src/init.js b/app/view/js/src/init.js index <HASH>..<HASH> 100644 --- a/app/view/js/src/init.js +++ b/app/view/js/src/init.js @@ -285,11 +285,9 @@ var init = { }; // Parse override settings from config.yml - if ($.isArray(set.ck)) { - for (k...
$.isArray() didn't work as expected
bolt_bolt
train
36ce30f8bdf52f4fbd43e9ff18607d7d25d04e14
diff --git a/src/eZ/Publish/Composer/LegacyKernelInstaller.php b/src/eZ/Publish/Composer/LegacyKernelInstaller.php index <HASH>..<HASH> 100644 --- a/src/eZ/Publish/Composer/LegacyKernelInstaller.php +++ b/src/eZ/Publish/Composer/LegacyKernelInstaller.php @@ -78,7 +78,7 @@ class LegacyKernelInstaller extends LegacyInsta...
Update LegacyKernelInstaller for installBinaries changes in composer <I>-beta2
ezsystems_ezpublish-legacy-installer
train
bb00503e786a0ade52df2acd412f2962fde5cfed
diff --git a/pymc3/step_methods/nuts.py b/pymc3/step_methods/nuts.py index <HASH>..<HASH> 100644 --- a/pymc3/step_methods/nuts.py +++ b/pymc3/step_methods/nuts.py @@ -87,7 +87,7 @@ class NUTS(ArrayStepShared): self.Hbar = 0 self.u = log(self.step_size*10) - self.m = 0 + self.m = 1
Fixes bug in initialization of m
pymc-devs_pymc
train
5d666ad0336073587ce077e130c8ff2fae436790
diff --git a/reorder_python_imports.py b/reorder_python_imports.py index <HASH>..<HASH> 100644 --- a/reorder_python_imports.py +++ b/reorder_python_imports.py @@ -47,7 +47,9 @@ def _partitions_to_src(partitions: Iterable[CodePartition]) -> str: def partition_source(src: str) -> list[CodePartition]: - lines = sr...
use io to handle newline translation
asottile_reorder_python_imports
train
00c223a888822afd2b16dfa3a040ed5356c7367e
diff --git a/parse_this/core.py b/parse_this/core.py index <HASH>..<HASH> 100644 --- a/parse_this/core.py +++ b/parse_this/core.py @@ -254,6 +254,18 @@ def _get_parser_call_method(parser, func): return inner_call +def _get_args_name_from_parser(parser): + """Retrieve the name of the function argument linked...
Retrieve a method argument names from its associated parser. This functionality will be useful for other methods. Tests: python setup.py nosetests
bertrandvidal_parse_this
train
2be3164aa4a446927a092bc0780108466189bf04
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100755 --- a/setup.py +++ b/setup.py @@ -47,7 +47,7 @@ import hmmlearn VERSION = hmmlearn.__version__ -install_requires = ["sklearn>=0.16"] +install_requires = ["scikit-learn>=0.16"] tests_require = install_requires + ["pytest"] docs_require = install_require...
MAINT pass ``install_requires`` to ``setup`` closes #<I>
hmmlearn_hmmlearn
train
a82ec239c3781fbee55455cf0efd33d12372ec02
diff --git a/vertex/ptcp.py b/vertex/ptcp.py index <HASH>..<HASH> 100644 --- a/vertex/ptcp.py +++ b/vertex/ptcp.py @@ -5,6 +5,7 @@ import struct, zlib import random from twisted.internet import protocol, error, reactor, defer +from twisted.internet.main import CONNECTION_DONE from twisted.python import log, util ...
CONNECTION_DONE, please
twisted_vertex
train
d1e949eeb30c670bb55f311fcc335c5ce7c553d5
diff --git a/src/index.js b/src/index.js index <HASH>..<HASH> 100644 --- a/src/index.js +++ b/src/index.js @@ -142,7 +142,7 @@ export class Map extends React.Component { center: center, zoom: this.props.zoom, maxZoom: this.props.maxZoom, - minZoom: this.props.maxZoom, + ...
Revert change from PR #<I> to fix (again) #<I>
fullstackreact_google-maps-react
train
d8ab2f8579c9c7a9ec4cef1db0d34a003afac1fb
diff --git a/test/minimal_app_test.rb b/test/minimal_app_test.rb index <HASH>..<HASH> 100644 --- a/test/minimal_app_test.rb +++ b/test/minimal_app_test.rb @@ -5,7 +5,7 @@ if RubotoTest::RUBOTO_PLATFORM == 'STANDALONE' class MinimalAppTest < Test::Unit::TestCase def setup - generate_app :ruby_version => (...
Moved default ruby versions into test_helper
ruboto_ruboto
train
d29a8b4b10f91ed7b825af60ffc561ee3a4cc85b
diff --git a/exchangelib/services.py b/exchangelib/services.py index <HASH>..<HASH> 100644 --- a/exchangelib/services.py +++ b/exchangelib/services.py @@ -1741,7 +1741,7 @@ class GetAttachment(EWSAccountService): @classmethod def _get_soap_payload(cls, response, **parse_opts): if not parse_opts.get('...
Fix linter warning: pass parse_opts on to parent method
ecederstrand_exchangelib
train
c612ed26950396789ae85d1ee1ce2a509f8b74ea
diff --git a/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/client/RestTemplateBuilder.java b/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/client/RestTemplateBuilder.java index <HASH>..<HASH> 100644 --- a/spring-boot-project/spring-boot/src/main/java/org/springf...
Polish "RestTemplateCustomizers should be applied at the end" Closes gh-<I>
spring-projects_spring-boot
train
ccca17c51b5068ef25641a81b26f962739c1de6e
diff --git a/views/js/runner/plugins/navigation/next/nextItemWarning.js b/views/js/runner/plugins/navigation/next/nextItemWarning.js index <HASH>..<HASH> 100644 --- a/views/js/runner/plugins/navigation/next/nextItemWarning.js +++ b/views/js/runner/plugins/navigation/next/nextItemWarning.js @@ -129,16 +129,24 @@ define(...
Add logic to prevent double warnings between items
oat-sa_extension-tao-testqti
train
73200606bcd81668680dd2f6dd0d4fce95bbdee1
diff --git a/modules/system/assets/js/framework.js b/modules/system/assets/js/framework.js index <HASH>..<HASH> 100644 --- a/modules/system/assets/js/framework.js +++ b/modules/system/assets/js/framework.js @@ -202,15 +202,18 @@ if (window.jQuery === undefined) * Focus fields with errors ...
Pass isFirstField attrib, allow prevent of default focus()
octobercms_october
train
6b2a8278d9a068b71ae110f37626d053bdbcec1d
diff --git a/peewee.py b/peewee.py index <HASH>..<HASH> 100644 --- a/peewee.py +++ b/peewee.py @@ -1429,8 +1429,10 @@ class SelectQuery(BaseQuery): order_by = [] for piece in self._order_by: model, field, ordering = piece - if self.use_aliases() and field in model._meta.fields:...
Adding quoting in some places I missed
coleifer_peewee
train
d54970c8b116cf5e6bc81dd72896a2254fe735ea
diff --git a/src/bosh/system/exec_cmd_runner.go b/src/bosh/system/exec_cmd_runner.go index <HASH>..<HASH> 100644 --- a/src/bosh/system/exec_cmd_runner.go +++ b/src/bosh/system/exec_cmd_runner.go @@ -7,7 +7,6 @@ import ( "fmt" "os" "os/exec" - "path/filepath" "strings" ) @@ -43,8 +42,7 @@ func (run execCmdRun...
Avoid command name doubling in logs and errors.
cloudfoundry_bosh-agent
train
46e1c350efeb9efd5f542384c296aa09bce51ac0
diff --git a/flask_passwordless/delivery_methods.py b/flask_passwordless/delivery_methods.py index <HASH>..<HASH> 100644 --- a/flask_passwordless/delivery_methods.py +++ b/flask_passwordless/delivery_methods.py @@ -107,6 +107,11 @@ class DeliverBySMTP(DeliveryMethod): print "wat" +class DeliverBySES(De...
cleanup/bugfix redis token store and add stub for AWS SES delivery
kevinjqiu_flask-passwordless
train
f59392d9f5aba4a7e5f4cbc663b428becf53db61
diff --git a/codec-http/src/main/java/io/netty/handler/codec/http/cors/CorsConfigBuilder.java b/codec-http/src/main/java/io/netty/handler/codec/http/cors/CorsConfigBuilder.java index <HASH>..<HASH> 100644 --- a/codec-http/src/main/java/io/netty/handler/codec/http/cors/CorsConfigBuilder.java +++ b/codec-http/src/main/ja...
Make "CorsConfigBuilder.allowNullOrigin()" public Motivation: "CorsConfigBuilder.allowNullOrigin()" should be public otherwise people can not set it. See #<I> Modifications: Make "CorsConfigBuilder.allowNullOrigin()" public. Result: The user can call "CorsConfigBuilder.allowNullOrigin()" now.
netty_netty
train