hash
stringlengths
40
40
diff
stringlengths
131
114k
message
stringlengths
7
980
project
stringlengths
5
67
split
stringclasses
1 value
bf67737f56e0bf6f528a4fbe7a4553b236f3f063
diff --git a/nomad/state/state_store.go b/nomad/state/state_store.go index <HASH>..<HASH> 100644 --- a/nomad/state/state_store.go +++ b/nomad/state/state_store.go @@ -1158,7 +1158,9 @@ func deleteNodeCSIPlugins(txn *memdb.Txn, node *structs.Node, index uint64) erro return fmt.Errorf("csi_plugins lookup error %s: %v...
csi: missing plugins during node delete are not an error (#<I>) When deregistering a client, CSI plugins running on that client may not get a chance to fingerprint before being stopped. Account for the case where a plugin allocation is the last instance of the plugin and has been deleted from the state store to avo...
hashicorp_nomad
train
a712e535bec3b196219188236d4063ecc1153ba4
diff --git a/workflow/metrics/util.go b/workflow/metrics/util.go index <HASH>..<HASH> 100644 --- a/workflow/metrics/util.go +++ b/workflow/metrics/util.go @@ -14,6 +14,7 @@ import ( var ( invalidMetricNameError = "metric name is invalid: names may only contain alphanumeric characters, '_', or ':'" + invalidMetricL...
fix: Validate metric key names (#<I>)
argoproj_argo
train
da61d4db4c441d55a6891f8ba82019e257c147e1
diff --git a/graphene_django_optimizer/query.py b/graphene_django_optimizer/query.py index <HASH>..<HASH> 100644 --- a/graphene_django_optimizer/query.py +++ b/graphene_django_optimizer/query.py @@ -273,8 +273,9 @@ class QueryOptimizer(object): resolver_fn = resolver if resolver_fn.func == Dja...
Compatibility with graphene-django <I>
tfoxy_graphene-django-optimizer
train
f43e87bb638b30608e1773a9afb48a8639feb3cd
diff --git a/lib/puppet/util/monkey_patches.rb b/lib/puppet/util/monkey_patches.rb index <HASH>..<HASH> 100644 --- a/lib/puppet/util/monkey_patches.rb +++ b/lib/puppet/util/monkey_patches.rb @@ -25,7 +25,7 @@ end [Object, Exception, Integer, Struct, Date, Time, Range, Regexp, Hash, Array, Float, String, FalseClass, ...
Fix for #<I> -- rails calling yaml internals Some recent versions of rails have started calling yaml with the internal (and IIRC depricated) signature; this does nothing special in yaml but it breaks with zaml, so we add an ignored parameter to simulate the non-behavior. *sigh* I love rails.
puppetlabs_puppet
train
eec3a87fe6a62404b0ae3cbc565ed845bf98ac5b
diff --git a/panc/src/main/scripts/panlint.py b/panc/src/main/scripts/panlint.py index <HASH>..<HASH> 100755 --- a/panc/src/main/scripts/panlint.py +++ b/panc/src/main/scripts/panlint.py @@ -199,6 +199,73 @@ def filestats_table(problem_stats): return t +def lint_file(filename): + global DEBUG + reports =...
Factor out lint of each file to a function This makes the code easier to test and read.
quattor_pan
train
27ad3151da7ad07501d25d4f2328907b816cd3a6
diff --git a/src/main/java/org/osiam/client/OsiamConnector.java b/src/main/java/org/osiam/client/OsiamConnector.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/osiam/client/OsiamConnector.java +++ b/src/main/java/org/osiam/client/OsiamConnector.java @@ -327,7 +327,7 @@ public class OsiamConnector {// NOSONAR -...
[fix] fixed creation of auth server by retrieving refresh token
osiam_connector4java
train
095db5f3147613e95fff76224d8ee643f277bf9f
diff --git a/src/Service/Leaderboard.php b/src/Service/Leaderboard.php index <HASH>..<HASH> 100644 --- a/src/Service/Leaderboard.php +++ b/src/Service/Leaderboard.php @@ -314,12 +314,22 @@ class Leaderboard * * @return array $$rank */ - public function getRank($userId = false, $filter = '') + publi...
leaderboardtype added to rankwidget
gregorybesson_PlaygroundReward
train
fce16371e3f84d40f40bae0911518af655731931
diff --git a/src/index.js b/src/index.js index <HASH>..<HASH> 100644 --- a/src/index.js +++ b/src/index.js @@ -890,7 +890,7 @@ function handleVisibilityChange() { if (document.hidden) { activeInstances.forEach(ins => ins.pause()); pausedInstances = activeInstances.slice(0); - activeInstances = []; + ...
Update anime.running reference when clearing array on visibilitychange event
juliangarnier_anime
train
6001f5e605082617dc3fd728833a6fcb66366806
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -2,7 +2,7 @@ module.exports = CSSselect; -var CSSwhat = require("CSSwhat"), +var parse = require("CSSwhat"), Rules = require("./lib/general.js"), sortRules = require("./lib/sort.js"), Pseudos = require("./l...
[index] renamed `parse` to `compile` and `CSSwhat` to `parse`
fb55_css-select
train
1e63dd36c059b27796006572303e48e21c91ff5c
diff --git a/src/components/meta/Property/Type.js b/src/components/meta/Property/Type.js index <HASH>..<HASH> 100644 --- a/src/components/meta/Property/Type.js +++ b/src/components/meta/Property/Type.js @@ -139,7 +139,7 @@ meta('Type', { if ('keys' in params) { for (var key in value) { -...
FIX: keys params of object property type
alexpods_ClazzJS
train
4a1f122c1bcf64054ebd716256f599bc36a470b7
diff --git a/networking_arista/l3Plugin/arista_l3_driver.py b/networking_arista/l3Plugin/arista_l3_driver.py index <HASH>..<HASH> 100644 --- a/networking_arista/l3Plugin/arista_l3_driver.py +++ b/networking_arista/l3Plugin/arista_l3_driver.py @@ -380,7 +380,7 @@ class AristaL3Driver(object): LOG.info(_LI('...
Fix a spelling typo in error message occured -> occurred for arista_l3_driver.py Also fixed following spelling typo in comments: authentification -> authentication genric -> generic vaild -> valid infromation -> information Change-Id: Ic4b7c5a<I>a8de<I>a<I>dd<I>ddba<I>a<I>
openstack_networking-arista
train
8180b632d0962e21d8055a14d99cb15bc9a0550d
diff --git a/cluster/kubernetes/policies.go b/cluster/kubernetes/policies.go index <HASH>..<HASH> 100644 --- a/cluster/kubernetes/policies.go +++ b/cluster/kubernetes/policies.go @@ -151,7 +151,7 @@ func (m *Manifests) ServicesWithPolicy(root string, p policy.Policy) (policy.Ser if err != nil { return err } -...
Add service policies to ListServices result
weaveworks_flux
train
9c56cca4f875d0e7a6c61d735eb96613bc7b6693
diff --git a/README.md b/README.md index <HASH>..<HASH> 100644 --- a/README.md +++ b/README.md @@ -15,14 +15,24 @@ which can later be converted to JSON object and used with libraries like Vue, An ## Installing -Just require this package with composer. +#### Laravel before version 9 ``` -composer require kg-bot/...
Laravel 9 uses Filesystem V3 so for backward compatibility version 2 of package is required, all changes for Laravel <9 should be done on V1 of this package, all changes for Laravel >9 should be done on V2 of this package Laravel 9 places language files in root path and not in resources/lang anymore, using lang_path()...
kg-bot_laravel-localization-to-vue
train
87b59a257b5982a99ae4c8d5b490f8e557ff859a
diff --git a/lib/canis/core/include/multibuffer.rb b/lib/canis/core/include/multibuffer.rb index <HASH>..<HASH> 100644 --- a/lib/canis/core/include/multibuffer.rb +++ b/lib/canis/core/include/multibuffer.rb @@ -66,8 +66,14 @@ module Canis l = @_buffers[x] if l if l.is_a? String - arr = F...
if filename is a dir
mare-imbrium_canis
train
f063524fbff6974f8e6aa2f8e3940c093561865c
diff --git a/macroeco/empirical.py b/macroeco/empirical.py index <HASH>..<HASH> 100644 --- a/macroeco/empirical.py +++ b/macroeco/empirical.py @@ -347,19 +347,6 @@ def ssad(patch, cols, splits=''): Notes ----- - The parameter `splits` is used differently in the SSAD than in the other - metrics. Here,...
Remove extraneous splits doc from ssad
jkitzes_macroeco
train
dfec9cf7141a08d8a158f78ea92e6c29b0696b89
diff --git a/workbase/src/renderer/components/Visualiser/store/actions.js b/workbase/src/renderer/components/Visualiser/store/actions.js index <HASH>..<HASH> 100644 --- a/workbase/src/renderer/components/Visualiser/store/actions.js +++ b/workbase/src/renderer/components/Visualiser/store/actions.js @@ -84,7 +84,8 @@ exp...
style nightbour nodes before updating them in the graph (#<I>)
graknlabs_grakn
train
fd5115fae5049e7b229a6142a24f485ec0f6f5cb
diff --git a/docs/src/test/java/docs/security/SecurityConfiguration.java b/docs/src/test/java/docs/security/SecurityConfiguration.java index <HASH>..<HASH> 100644 --- a/docs/src/test/java/docs/security/SecurityConfiguration.java +++ b/docs/src/test/java/docs/security/SecurityConfiguration.java @@ -1,5 +1,5 @@ /* - * C...
Fix Spring Security integration docs sample
spring-projects_spring-session
train
313ad0d416656ab33fe842c6839a3786ae5a109e
diff --git a/pymc3/stats.py b/pymc3/stats.py index <HASH>..<HASH> 100644 --- a/pymc3/stats.py +++ b/pymc3/stats.py @@ -99,17 +99,38 @@ def waic(trace, model=None, n_eff=False): """ Calculate the widely available information criterion and the effective number of parameters of the samples in trace from model. ...
ENH Add warning to WAIC for high values of the log predictive densities variance (#<I>)
pymc-devs_pymc
train
96389466623b5f6d821252f00c523ac7f91b514b
diff --git a/sources/ch/epfl/lamp/util/XHTMLPrinter.java b/sources/ch/epfl/lamp/util/XHTMLPrinter.java index <HASH>..<HASH> 100644 --- a/sources/ch/epfl/lamp/util/XHTMLPrinter.java +++ b/sources/ch/epfl/lamp/util/XHTMLPrinter.java @@ -28,11 +28,26 @@ public class XHTMLPrinter extends HTMLPrinter { * @param title ...
- added new constructor (for 'script' field)
scala_scala
train
a289c8531079e2cba607a7fe94233462112e265c
diff --git a/lib/active_shipping/shipping/carriers/fedex.rb b/lib/active_shipping/shipping/carriers/fedex.rb index <HASH>..<HASH> 100644 --- a/lib/active_shipping/shipping/carriers/fedex.rb +++ b/lib/active_shipping/shipping/carriers/fedex.rb @@ -312,13 +312,21 @@ module ActiveMerchant status_description = t...
Surrounded origin_node with begin block
Shopify_active_shipping
train
a680eb11f2e8046d738450cc816b53ac74758059
diff --git a/test/test_conversions.rb b/test/test_conversions.rb index <HASH>..<HASH> 100644 --- a/test/test_conversions.rb +++ b/test/test_conversions.rb @@ -37,7 +37,7 @@ class TestConversions < Test::Unit::TestCase h[:plain] = %Q|THIS IS A TITLE\n\n\nSome _emphasized text_ and a link| h[:rst] = - ...
Use correct rst string for conversion tests Pandoc [now uses anonymous links for links with inline urls][1]. The expected result string has been updated to reflect this. [1]: <URL>
dalehamel_ruby-pandoc
train
e2cf3f1a404e11d58a286fcdef640263cba510c7
diff --git a/src/Bowerphp/Installer/Installer.php b/src/Bowerphp/Installer/Installer.php index <HASH>..<HASH> 100644 --- a/src/Bowerphp/Installer/Installer.php +++ b/src/Bowerphp/Installer/Installer.php @@ -71,7 +71,6 @@ class Installer implements InstallerInterface // create .bower.json metadata file ...
remove debug commented line :sweat:
Bee-Lab_bowerphp
train
bbdf75bdfa85416319f010332f98d65839e35ee3
diff --git a/public/app/core/settings.js b/public/app/core/settings.js index <HASH>..<HASH> 100644 --- a/public/app/core/settings.js +++ b/public/app/core/settings.js @@ -15,7 +15,7 @@ function (_) { 'text': { path: 'app/panels/text', name: 'Text' }, 'dashlist': { path: 'app/panels/dashl...
feat(dashboard): Automatically go into panel edit mode after adding a new panel to the dashboard
grafana_grafana
train
0763e8dc1e1b01568266bbd3063aba18d575d460
diff --git a/tests/unit/controllers/login-test.js b/tests/unit/controllers/login-test.js index <HASH>..<HASH> 100644 --- a/tests/unit/controllers/login-test.js +++ b/tests/unit/controllers/login-test.js @@ -34,8 +34,12 @@ test('authenticated action on success loadUser should be called', function() { var user = Ember...
sinon stub should return Promise
amkirwan_ember-token-auth
train
0c0006eb54eca6613400e2c0786c7ad8b4eb59c8
diff --git a/app/services/origin_validator.rb b/app/services/origin_validator.rb index <HASH>..<HASH> 100644 --- a/app/services/origin_validator.rb +++ b/app/services/origin_validator.rb @@ -13,7 +13,8 @@ class OriginValidator end def is_valid? - return true if Rails.env.development? + + return true i...
origin validator specs on empty , nils, port (single & multiple)
michelson_chaskiq
train
3e9d02f5dabf5c32b0c21fbc18fdf8aaf1480596
diff --git a/mixbox/entities.py b/mixbox/entities.py index <HASH>..<HASH> 100644 --- a/mixbox/entities.py +++ b/mixbox/entities.py @@ -5,6 +5,7 @@ import collections import inspect import json +from . import idgen from .binding_utils import save_encoding from .fields import TypedField from .namespaces import Nam...
Make sure ID namespace is added.
CybOXProject_mixbox
train
325c965fdc503a06f8c4b7cca3b4b3d177e25fc5
diff --git a/examples/src/main/java/io/grpc/examples/routeguide/RouteGuideServer.java b/examples/src/main/java/io/grpc/examples/routeguide/RouteGuideServer.java index <HASH>..<HASH> 100644 --- a/examples/src/main/java/io/grpc/examples/routeguide/RouteGuideServer.java +++ b/examples/src/main/java/io/grpc/examples/routeg...
example: really fix the loss of precision error (#<I>)
grpc_grpc-java
train
5fa0ebdc4b12fb7a301eb07ca0f0efd8257d0dc1
diff --git a/django_rq/queues.py b/django_rq/queues.py index <HASH>..<HASH> 100644 --- a/django_rq/queues.py +++ b/django_rq/queues.py @@ -28,7 +28,9 @@ def get_queues(*queue_names): All instances must use the same Redis connection. """ from .settings import QUEUES - if len(queue_names) > 0: + if l...
fixed get_queues that now checks if all connections are equals
rq_django-rq
train
b3197c0f4ac6a383f3cfc931bb3e1b74294cc3bb
diff --git a/v3/src/test/java/com/baidu/bjf/remoting/protobuf/enumeration/EnumAttrPOJO.java b/v3/src/test/java/com/baidu/bjf/remoting/protobuf/enumeration/EnumAttrPOJO.java index <HASH>..<HASH> 100644 --- a/v3/src/test/java/com/baidu/bjf/remoting/protobuf/enumeration/EnumAttrPOJO.java +++ b/v3/src/test/java/com/baidu/b...
check enum test for value begin with 0
jhunters_jprotobuf
train
57e38b59e9411664d3d5bbc84dbb7665bb88ab1d
diff --git a/assembly.go b/assembly.go index <HASH>..<HASH> 100644 --- a/assembly.go +++ b/assembly.go @@ -1,7 +1,6 @@ package transloadit import ( - "encoding/json" "fmt" "io" "mime/multipart" @@ -49,30 +48,18 @@ type AssemblyList struct { } type AssemblyListItem struct { - AssemblyId string `j...
Unmarshal nullable time string into pointer
transloadit_go-sdk
train
75a8627432f191722f08e49bdda9386af3cdb09f
diff --git a/pyspreadsheet/Spreadsheet.py b/pyspreadsheet/Spreadsheet.py index <HASH>..<HASH> 100644 --- a/pyspreadsheet/Spreadsheet.py +++ b/pyspreadsheet/Spreadsheet.py @@ -317,6 +317,5 @@ class Spreadsheet: }, replace=False ) print('table %s created' % table_nam...
new way to show spreadsheet info when exception raised
dacker-team_pyspreadsheet
train
16c63d4e122ab298d83767125cdeb77be9612f84
diff --git a/eccodes_grib/dataset.py b/eccodes_grib/dataset.py index <HASH>..<HASH> 100644 --- a/eccodes_grib/dataset.py +++ b/eccodes_grib/dataset.py @@ -42,7 +42,7 @@ GLOBAL_ATTRIBUTES_KEYS = ['edition', 'centre', 'centreDescription'] # NOTE: 'dataType' may have multiple values for the same variable, i.e. ['an', 'fc...
Let topLevel + typeOfLevel represent hybrid coordinates (and mossibly other).
ecmwf_cfgrib
train
1277f9926238309bb7a2ee5543cecab7917919f5
diff --git a/impl/src/main/java/org/jboss/seam/faces/security/SecurityPhaseListener.java b/impl/src/main/java/org/jboss/seam/faces/security/SecurityPhaseListener.java index <HASH>..<HASH> 100644 --- a/impl/src/main/java/org/jboss/seam/faces/security/SecurityPhaseListener.java +++ b/impl/src/main/java/org/jboss/seam/fac...
Fixing SEAMFACES-<I> If authorization errors out the Seam Security NotAuthorizedEvent is fired.
seam_faces
train
a3e1ff11d30110f5898a42a08c42e77a43d19a6b
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -97,13 +97,13 @@ function normalizePaths(options, paths) { * @param {Function(?String, Object)} callback * @return {Null} */ -function requireGlob(globs, options, callback) { +function requireGlob(patterns, options, call...
Corrected jsdocs.
shannonmoeller_require-glob
train
afff3df2f42e2dd75792d7e092d9d54353d7e351
diff --git a/lib/puppet/ssl/certificate_authority.rb b/lib/puppet/ssl/certificate_authority.rb index <HASH>..<HASH> 100644 --- a/lib/puppet/ssl/certificate_authority.rb +++ b/lib/puppet/ssl/certificate_authority.rb @@ -257,6 +257,7 @@ class Puppet::SSL::CertificateAuthority cert_type = :ca issuer = csr.co...
Allow a master to bootstrap itself with dns_alt_names and autosign When using autosign, a puppet master which is also a CA will attempt to autosign its certificate request via the normal autosign process, rather than its typical bootstrap process. Thus, the puppet master would inadvertently refuse to sign its own cert...
puppetlabs_puppet
train
896f1e24ad9bb25fb91c6c9f85fdc12d83070549
diff --git a/lib/dragonfly/processing/r_magick_processor.rb b/lib/dragonfly/processing/r_magick_processor.rb index <HASH>..<HASH> 100644 --- a/lib/dragonfly/processing/r_magick_processor.rb +++ b/lib/dragonfly/processing/r_magick_processor.rb @@ -5,6 +5,28 @@ module Dragonfly module RMagickProcessor + ...
Added crop to rmagick processor
markevans_dragonfly
train
8a9426bc17e4cd38bddafc5870f2a9c631c50cc7
diff --git a/lib/db/upgrade.php b/lib/db/upgrade.php index <HASH>..<HASH> 100644 --- a/lib/db/upgrade.php +++ b/lib/db/upgrade.php @@ -6917,15 +6917,17 @@ FROM } if ($oldversion < 2011111500.01) { + upgrade_set_timeout(60*20); // this may take a while // Remove duplicate entries from groupin...
MDL-<I> Prevent memory/time problems if there are zillions of combinations
moodle_moodle
train
ff11f7cceea9767d1ba8e0f04bb0237d85a7a61c
diff --git a/modules/activiti-engine/src/test/java/org/activiti/engine/test/api/runtime/ProcessInstanceQueryTest.java b/modules/activiti-engine/src/test/java/org/activiti/engine/test/api/runtime/ProcessInstanceQueryTest.java index <HASH>..<HASH> 100644 --- a/modules/activiti-engine/src/test/java/org/activiti/engine/tes...
Added test cases for querying process instances by float, char and byte variable values, which results in a ActivitiException stating that "Variables of type ByteArray cannot be used to query"
Activiti_Activiti
train
3e3425b949fb89278a454377c863fccc6ba7e527
diff --git a/www/saml2/sp/initSLO.php b/www/saml2/sp/initSLO.php index <HASH>..<HASH> 100644 --- a/www/saml2/sp/initSLO.php +++ b/www/saml2/sp/initSLO.php @@ -18,44 +18,47 @@ if (isset($_REQUEST['RelayState'])) { SimpleSAML_Utilities::fatalError($session->getTrackID(), 'NORELAYSTATE'); } - -if (isset($session) ) ...
sp/initSLO: Use the new SAML2 library.
simplesamlphp_saml2
train
bf7c489a2fa025e7014a5697e9e05e1c83ff148f
diff --git a/lib/peace_love/collection.rb b/lib/peace_love/collection.rb index <HASH>..<HASH> 100644 --- a/lib/peace_love/collection.rb +++ b/lib/peace_love/collection.rb @@ -1,18 +1,11 @@ module PeaceLove class Collection - attr_reader :mongo_collection + attr_reader :mongo_collection, :mixin - def init...
simplify setup of wrappers, thanks to the Db wrapper
lachie_peace_love
train
45a37c92ad68c56f279b159f80c7d67490f94eb0
diff --git a/fsock.go b/fsock.go index <HASH>..<HASH> 100644 --- a/fsock.go +++ b/fsock.go @@ -363,6 +363,7 @@ type FSockPool struct { reconnects int eventHandlers map[string][]func(string) eventFilters map[string]string + readEvents bool // Fork reading events when creating the socket logger...
Including readEvents in pool socket creation
cgrates_fsock
train
1dab0e9ce1df3054a557741b93fb4de8c2ffa92b
diff --git a/assets/src/org/ruboto/ScriptInfo.java b/assets/src/org/ruboto/ScriptInfo.java index <HASH>..<HASH> 100644 --- a/assets/src/org/ruboto/ScriptInfo.java +++ b/assets/src/org/ruboto/ScriptInfo.java @@ -5,6 +5,14 @@ public class ScriptInfo { private String scriptName; private Object rubyInstance; + ...
Added methods for checking the status of the load
ruboto_ruboto
train
943a1951cd8cb8981088ef1e640301f15ebff19f
diff --git a/src/main/java/com/aoindustries/encoding/Doctype.java b/src/main/java/com/aoindustries/encoding/Doctype.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/aoindustries/encoding/Doctype.java +++ b/src/main/java/com/aoindustries/encoding/Doctype.java @@ -56,6 +56,10 @@ public enum Doctype { // Do no...
Added per-Doctype flag if IRI URLs are supported.
aoindustries_ao-encoding
train
9cbf52e32d9c1261305f5d7ca020d22d697a9dc2
diff --git a/core/src/main/java/com/google/errorprone/bugpatterns/InterruptedExceptionSwallowed.java b/core/src/main/java/com/google/errorprone/bugpatterns/InterruptedExceptionSwallowed.java index <HASH>..<HASH> 100644 --- a/core/src/main/java/com/google/errorprone/bugpatterns/InterruptedExceptionSwallowed.java +++ b/c...
InterruptedExceptionSwallowed: don't match in main. ------------- Created by MOE: <URL>
google_error-prone
train
adb4fec74a3cc9d7875ef75aa310afebfe243ced
diff --git a/src/Symfony/Component/Routing/Loader/AnnotationClassLoader.php b/src/Symfony/Component/Routing/Loader/AnnotationClassLoader.php index <HASH>..<HASH> 100644 --- a/src/Symfony/Component/Routing/Loader/AnnotationClassLoader.php +++ b/src/Symfony/Component/Routing/Loader/AnnotationClassLoader.php @@ -368,11 +3...
Fixed typo: "anntotations" => "annotations" Fixed typo: "anntotations" => "annotations"
symfony_symfony
train
0ff09585952b9467bd9abee21ab7cb597d6b9909
diff --git a/salt/loader.py b/salt/loader.py index <HASH>..<HASH> 100644 --- a/salt/loader.py +++ b/salt/loader.py @@ -157,7 +157,7 @@ def grains(opts): salt.config.load_config( pre_opts, opts['conf_file'], 'SALT_MINION_CONFIG' ) - default_include = pre_opts.get('default_include', ...
Fix #<I> Fix error when grains are in minion.d/ If the 'default_include' directive was commented out, any grains existing in the minion.d/*conf files would fail in states. The grains would appear in salt-call -g
saltstack_salt
train
738b18e2f865711b148d6afde4b28105cef7db1e
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -21,16 +21,13 @@ data_files = [] # py.test integration from pytest.org class PyTest(TestCommand): - def __init__(self): - super().__init__(self) - getTestKernels.downloadKernels() - def finalize_optio...
try two of getting downloading kernels to work inside setup.py
AndrewAnnex_SpiceyPy
train
e43ba973a3ac34ad32b08caff99ec306ffe9fdd4
diff --git a/.travis.yml b/.travis.yml index <HASH>..<HASH> 100644 --- a/.travis.yml +++ b/.travis.yml @@ -45,7 +45,7 @@ env: matrix: - "GEM=railties" - "GEM=ap,ac" - - "GEM=am,amo,as,av,aj" + - "GEM=am,amo,as,av,aj,ast" - "GEM=as PRESERVE_TIMEZONES=1" - "GEM=ar:mysql2" - "GEM=ar:sqlit...
Run Active Storage tests in CI (#<I>)
rails_rails
train
bb7d3af2ae92f3d9ef960f56ad01e43f8b09b546
diff --git a/threads/forms.py b/threads/forms.py index <HASH>..<HASH> 100644 --- a/threads/forms.py +++ b/threads/forms.py @@ -4,6 +4,11 @@ Project: Farnsworth Author: Karandeep Singh Nagra ''' +from django import forms + +from managers.models import Manager +from threads.models import UserProfile + class ThreadFo...
Fixed remaining issues in threads.forms/views separation
knagra_farnsworth
train
5556ce437e0c536878a2f2a6847ee93a5ef62ca0
diff --git a/src/main/java/com/imsweb/naaccrxml/sas/SasCsvToXml.java b/src/main/java/com/imsweb/naaccrxml/sas/SasCsvToXml.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/imsweb/naaccrxml/sas/SasCsvToXml.java +++ b/src/main/java/com/imsweb/naaccrxml/sas/SasCsvToXml.java @@ -261,14 +261,17 @@ public class SasCsv...
Tweaked messages (#<I>)
imsweb_naaccr-xml
train
710ec3f093cd2c197ae783bd9969ab86609aeac4
diff --git a/examples/angular-demo/app/js/directives/linechartDirective.js b/examples/angular-demo/app/js/directives/linechartDirective.js index <HASH>..<HASH> 100644 --- a/examples/angular-demo/app/js/directives/linechartDirective.js +++ b/examples/angular-demo/app/js/directives/linechartDirective.js @@ -55,22 +55,20 ...
NEON-<I> Initial cut at adding log messages to new linechart features
NextCenturyCorporation_neon
train
3fc2c567d5e2a99eea0725564c8342955289cade
diff --git a/data/prefs.glade b/data/prefs.glade index <HASH>..<HASH> 100644 --- a/data/prefs.glade +++ b/data/prefs.glade @@ -1927,7 +1927,23 @@ Always</property> <property name="y_options"></property> </packing> </child> - + <child> + <widget class="GtkCheckButton" id="show_resizer"> ...
Add pref. checkbox for toggling 'resizer' visibility
Guake_guake
train
96aaedd4fa9edfae15c5251fbf15659b237e4e37
diff --git a/pyads/ads.py b/pyads/ads.py index <HASH>..<HASH> 100644 --- a/pyads/ads.py +++ b/pyads/ads.py @@ -1041,7 +1041,7 @@ class Connection(object): # read only until null-termination character value = bytearray(data).split(b"\0", 1)[0].decode("utf-8") - ...
Fix notification decorator when type is None The default value of the type argument is None, so this value should also be supported in the actual conversion. issubclass() throws a TypeError when the argument is None. Also, this offers a simple option to just get the raw value as byte array.
stlehmann_pyads
train
561fa1f9ea7b36c2aa42583a5cf77b0585fe1cc5
diff --git a/lib/models/user.js b/lib/models/user.js index <HASH>..<HASH> 100644 --- a/lib/models/user.js +++ b/lib/models/user.js @@ -24,6 +24,9 @@ module.exports.create = function (store) { store.updateUserKey(id, hash, fn); }); }, + getBins: function (id, fn) { + store.getBinsByUser(id, ...
User model now has .getBins() method
jsbin_jsbin
train
322efcbd0577dbdc500eef26bf3af4db5480c0e8
diff --git a/anyconfig/backend/xml.py b/anyconfig/backend/xml.py index <HASH>..<HASH> 100644 --- a/anyconfig/backend/xml.py +++ b/anyconfig/backend/xml.py @@ -162,6 +162,7 @@ def _sum_dicts(dics, to_container=dict): """ :param dics: [<dict/-like object must not have same keys each other>] :param to_conta...
refactor: remove an extra and unnecessary node check in .backend.xml.elem_to_container
ssato_python-anyconfig
train
df8306feab385a7238e6801a37204a8d656541ab
diff --git a/fmtstr/events.py b/fmtstr/events.py index <HASH>..<HASH> 100644 --- a/fmtstr/events.py +++ b/fmtstr/events.py @@ -44,8 +44,6 @@ def get_key(chars, keynames='curses'): return None else: chars = ''.join(chars) - if len(chars) == 1 and 0x80 <= ord(chars) <= 0xff: - ...
Removed "Meta" because they were not UTF-8 compatable.
bpython_curtsies
train
c173d089902245e7ba59ade0dd04142162815a2d
diff --git a/src/discoursegraphs/readwrite/rst.py b/src/discoursegraphs/readwrite/rst.py index <HASH>..<HASH> 100755 --- a/src/discoursegraphs/readwrite/rst.py +++ b/src/discoursegraphs/readwrite/rst.py @@ -18,7 +18,6 @@ from discoursegraphs.readwrite.generic import generic_converter_cli class RSTGraph(DiscourseDo...
closes #7: changed RST edge relations/labels to be linguistically more plausible
arne-cl_discoursegraphs
train
d48af430271d1b4b9ba9d42e4eac3b747feecabd
diff --git a/core/Piwik.php b/core/Piwik.php index <HASH>..<HASH> 100644 --- a/core/Piwik.php +++ b/core/Piwik.php @@ -671,7 +671,7 @@ class Piwik $messages[] = true; // ignore dev environments - if(file_exists(PIWIK_INCLUDE_PATH . '/.svn')) + if(file_exists(PIWIK_INCLUDE_PATH . '/.git')) { $messages[]...
Properly recognize the development environment. refs #<I>
matomo-org_matomo
train
69bb6fd5c6dcc743e790521fd2bd50e0a286a493
diff --git a/angr/project.py b/angr/project.py index <HASH>..<HASH> 100644 --- a/angr/project.py +++ b/angr/project.py @@ -243,10 +243,10 @@ class Project(object): for func in unresolved: l.info("[U] %s", func.name) - self.set_sim_procedure(obj, func.name, - ...
use the noreturnunconstrained simproc if it's a good idea
angr_angr
train
7d572e3771103d6337fae7ccddc86f363f75be11
diff --git a/project.go b/project.go index <HASH>..<HASH> 100644 --- a/project.go +++ b/project.go @@ -23,6 +23,7 @@ type ProjectList []struct { AvatarUrls AvatarUrls `json:"avatarUrls" structs:"avatarUrls"` ProjectTypeKey string `json:"projectTypeKey" structs:"projectTypeKey"` ProjectCategory...
add IssueTypes field to ProjectList
andygrunwald_go-jira
train
232b8d0f622b80f8f81606eb68569c6f1f4e65a4
diff --git a/lib/acyclic.js b/lib/acyclic.js index <HASH>..<HASH> 100644 --- a/lib/acyclic.js +++ b/lib/acyclic.js @@ -1,7 +1,9 @@ +var util = require("./util"); + module.exports = acyclic; module.exports.undo = undo; -function acyclic(g, debugLevel) { +function acyclic(g) { var onStack = {}, visited = {}...
Use util.log for logging in acyclic phase
dagrejs_dagre
train
12ef411f7ee9c143708c3424c25270308acd3f77
diff --git a/src/View/Helper/CrudViewHelper.php b/src/View/Helper/CrudViewHelper.php index <HASH>..<HASH> 100644 --- a/src/View/Helper/CrudViewHelper.php +++ b/src/View/Helper/CrudViewHelper.php @@ -55,7 +55,7 @@ class CrudViewHelper extends Helper * Process a single field into an output * * @param st...
Update CrudViewHelper.php
FriendsOfCake_crud-view
train
202ee210e29e2737e60bb842245b5b95c8d58831
diff --git a/src/org/kocakosm/pitaya/collection/Iterators.java b/src/org/kocakosm/pitaya/collection/Iterators.java index <HASH>..<HASH> 100644 --- a/src/org/kocakosm/pitaya/collection/Iterators.java +++ b/src/org/kocakosm/pitaya/collection/Iterators.java @@ -21,8 +21,8 @@ import org.kocakosm.pitaya.util.XObjects; im...
[#<I>] Iterators#toSet now returns a Set having the same iteration order as the source Iterator
kocakosm_pitaya
train
a54e97f60feb5a3e7cbba3af17f9a617dc401d3a
diff --git a/template/app/view/HoverMenuButton.js b/template/app/view/HoverMenuButton.js index <HASH>..<HASH> 100644 --- a/template/app/view/HoverMenuButton.js +++ b/template/app/view/HoverMenuButton.js @@ -44,11 +44,6 @@ Ext.define('Docs.view.HoverMenuButton', { }, this); } - this.menu =...
Defer HoverMenu creation until it's actually needed. Previously the when menu buttons were created the menus were also created right away. Ext JS <I> didn't like that and placed the menus somewhere at the top and refused to hide them initially. Didn't really managed to find out why, but doing it this way is probably...
senchalabs_jsduck
train
d046fedefb6cb5f0598f742ff68dd73f3d2ff9a1
diff --git a/src/Symfony/Component/HttpFoundation/Tests/FileBagTest.php b/src/Symfony/Component/HttpFoundation/Tests/FileBagTest.php index <HASH>..<HASH> 100644 --- a/src/Symfony/Component/HttpFoundation/Tests/FileBagTest.php +++ b/src/Symfony/Component/HttpFoundation/Tests/FileBagTest.php @@ -129,6 +129,20 @@ class Fi...
[HttpFoundation] Remove temporary files after tests run
symfony_symfony
train
3701a08c81c51d1adaa480176f913fa4497053da
diff --git a/mt940/__about__.py b/mt940/__about__.py index <HASH>..<HASH> 100644 --- a/mt940/__about__.py +++ b/mt940/__about__.py @@ -6,7 +6,7 @@ A library to parse MT940 files and returns smart Python collections for statistics and manipulation. '''.strip().split()) __email__ = 'wolph@wol.ph' -__version__ = '4.9.0...
Incrementing version to <I>
WoLpH_mt940
train
ff0d2740935c25df40d22c3b2a0b03039a9d0899
diff --git a/lib/contentful_model/manageable.rb b/lib/contentful_model/manageable.rb index <HASH>..<HASH> 100644 --- a/lib/contentful_model/manageable.rb +++ b/lib/contentful_model/manageable.rb @@ -3,6 +3,7 @@ module ContentfulModel attr_reader :dirty def initialize(*args) + super @dirty = fals...
super so @fields is not nil during #define_setters
contentful_contentful_model
train
168acc9b6ee66c095129a5a06867fe1c74a0b812
diff --git a/src/cr/cube/subtotal.py b/src/cr/cube/subtotal.py index <HASH>..<HASH> 100644 --- a/src/cr/cube/subtotal.py +++ b/src/cr/cube/subtotal.py @@ -21,7 +21,10 @@ class Subtotal(object): required_keys = {'anchor', 'args', 'function', 'name'} has_keys = set(self._data.keys()) == required...
[#<I>]: More refactoring (purge obsolete validation method)
Crunch-io_crunch-cube
train
51a70a17723dfe7035e4df5902a3f5f842dbe2ee
diff --git a/CHANGELOG.md b/CHANGELOG.md index <HASH>..<HASH> 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -43,6 +43,10 @@ master (unreleased) * Fix whitespace control around nested tags/variables/comments. Thanks Ouyang Yadong. Merge of [#631](https://github.com/mozilla/nunjucks/pull/631). +* [Breaking Change...
Prevent macros from seeing or affecting their calling scope.
mozilla_nunjucks
train
5f2fc868c2d0841565778edda0e0ea2843a49431
diff --git a/link_linux.go b/link_linux.go index <HASH>..<HASH> 100644 --- a/link_linux.go +++ b/link_linux.go @@ -247,6 +247,16 @@ func (h *Handle) BridgeSetMcastSnoop(link Link, on bool) error { return h.linkModify(bridge, unix.NLM_F_ACK) } +func BridgeSetVlanFiltering(link Link, on bool) error { + return pkgHan...
Add BridgeSetVlanFiltering to change VlanFiltering on an existing bridge
vishvananda_netlink
train
226231c6bec05f69ec83cfaa2a80923c359caf17
diff --git a/server/webapp/WEB-INF/rails.new/vendor/bundle/jruby/1.9/gems/actionpack-4.0.4/lib/action_dispatch/http/mime_type.rb b/server/webapp/WEB-INF/rails.new/vendor/bundle/jruby/1.9/gems/actionpack-4.0.4/lib/action_dispatch/http/mime_type.rb index <HASH>..<HASH> 100644 --- a/server/webapp/WEB-INF/rails.new/vendor/...
Applied patch for CVE-<I>-<I> - Possible Object Leak and Denial of Service attack in Action Pack
gocd_gocd
train
4a5a7cc01d509a81a02b683dbb2a3e3a7a7ad379
diff --git a/properties/base.py b/properties/base.py index <HASH>..<HASH> 100644 --- a/properties/base.py +++ b/properties/base.py @@ -37,8 +37,10 @@ class PropertyMetaclass(type): ) } - # get pointers to all inherited properties + # get pointers to all inherited properties, observ...
Clean up metaclass and add docstring creation
seequent_properties
train
7a8e7c4057a2f6ae69b5ab9ebd54fd889dda7782
diff --git a/metaseq/results_table.py b/metaseq/results_table.py index <HASH>..<HASH> 100644 --- a/metaseq/results_table.py +++ b/metaseq/results_table.py @@ -8,7 +8,7 @@ be used. import sys import tempfile -from matplotlib.mlab import csv2rec +from matplotlib.mlab import csv2rec, rec2csv import pybedtools import...
new ResultsTable.to_file method
daler_metaseq
train
b096b63894eece450de8ea6774eecc0dd59b9977
diff --git a/src/Form.js b/src/Form.js index <HASH>..<HASH> 100644 --- a/src/Form.js +++ b/src/Form.js @@ -124,6 +124,18 @@ class Form extends React.Component<Props, State> { /** * public APIs */ + cleanErrorForFiled(fieldName: string, callback: () => void) { + this.setState( + { + formError:...
Support `cleanErrorForFiled` in Form (#<I>)
rsuite_rsuite
train
13987080e58fd290824c39c967635281bf103739
diff --git a/algorithms/lstar/src/main/java/de/learnlib/algorithms/angluin/ObservationTable.java b/algorithms/lstar/src/main/java/de/learnlib/algorithms/angluin/ObservationTable.java index <HASH>..<HASH> 100644 --- a/algorithms/lstar/src/main/java/de/learnlib/algorithms/angluin/ObservationTable.java +++ b/algorithms/ls...
Return rowData as unmodifiable list
LearnLib_learnlib
train
b0e83c2692cfc36f3034c33d5564cd2af1ce542b
diff --git a/powerline-shell.py b/powerline-shell.py index <HASH>..<HASH> 100755 --- a/powerline-shell.py +++ b/powerline-shell.py @@ -140,12 +140,10 @@ class Segment: def add_hostname_segment(powerline): hostname = socket.gethostname() user = os.getenv("USER") - #powerline.append(Segment(powerline, ' %s@...
fixed somethings, added LC_MESSAGES to git to work on newer ubuntus.
b-ryan_powerline-shell
train
16c6b876058075a64286b66d34352d260177d936
diff --git a/core/src/main/java/com/orientechnologies/orient/core/storage/impl/local/OAbstractPaginatedStorage.java b/core/src/main/java/com/orientechnologies/orient/core/storage/impl/local/OAbstractPaginatedStorage.java index <HASH>..<HASH> 100755 --- a/core/src/main/java/com/orientechnologies/orient/core/storage/impl...
Issue #<I>, NPE during data restore was fixed.
orientechnologies_orientdb
train
67a5c2077b31413e1b6db3f03768b264e787fe77
diff --git a/map.js b/map.js index <HASH>..<HASH> 100644 --- a/map.js +++ b/map.js @@ -83,7 +83,7 @@ module.exports = { 'KRW': '₩', 'KWD': 'KD', 'KYD': '$', - 'KZT': 'лв', + 'KZT': '₸', 'LAK': '₭', 'LBP': '£', 'LKR': '₨',
Fix currency symbol for KZT (Kazakhstani Tenge) (#<I>) The currency symbol for Kazakhstani tenge is incorrect
bengourley_currency-symbol-map
train
2bb78ac2c189e1f15e3047d81cf7dbecba32139f
diff --git a/scheduler/generic_sched_test.go b/scheduler/generic_sched_test.go index <HASH>..<HASH> 100644 --- a/scheduler/generic_sched_test.go +++ b/scheduler/generic_sched_test.go @@ -5343,6 +5343,74 @@ func TestServiceSched_Preemption(t *testing.T) { require.Equal(expectedPreemptedAllocs, actualPreemptedAllocs) ...
test for rescheduling non-canaries
hashicorp_nomad
train
f070574fd271f01356a956b2ba2ad6939ab1b725
diff --git a/flask_bower/__init__.py b/flask_bower/__init__.py index <HASH>..<HASH> 100644 --- a/flask_bower/__init__.py +++ b/flask_bower/__init__.py @@ -16,7 +16,7 @@ def serve(component, filename): root = current_app.config['BOWER_COMPONENTS_ROOT'] - return send_file('/'.join([root, component, filename])...
use conditional switch on send_file to ensure <I> responses are emitted
lobeck_flask-bower
train
be6ec6da04f8ab62c7ea2811d04263730be6f127
diff --git a/src/main/java/org/vafer/jdependency/asm/DependenciesClassAdapter.java b/src/main/java/org/vafer/jdependency/asm/DependenciesClassAdapter.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/vafer/jdependency/asm/DependenciesClassAdapter.java +++ b/src/main/java/org/vafer/jdependency/asm/DependenciesCla...
Use ASM9 Opcodes, add missing non-void overrides This fixes support for Records; would previously throw `java.lang.UnsupportedOperationException: Records requires ASM8`
tcurdt_jdependency
train
0a446b4cff98132b4ae8af1a8600b9d688f08936
diff --git a/tests/e2e/kubetest2-kops/deployer/up.go b/tests/e2e/kubetest2-kops/deployer/up.go index <HASH>..<HASH> 100644 --- a/tests/e2e/kubetest2-kops/deployer/up.go +++ b/tests/e2e/kubetest2-kops/deployer/up.go @@ -21,6 +21,7 @@ import ( "fmt" osexec "os/exec" "strings" + "time" "github.com/google/shlex" ...
Kubetest2 - add more validation time for --target terraform Some of the "beforeSuite" tests are failing because the e2e.test binary isn't resolving the API DNS. This extends the validation time and also adds a sleep to wait for any negative TTLs to expire.
kubernetes_kops
train
9a0353c0d4bceb4f47bb16afc586df08eb54239a
diff --git a/lang/pt_br/calendar.php b/lang/pt_br/calendar.php index <HASH>..<HASH> 100644 --- a/lang/pt_br/calendar.php +++ b/lang/pt_br/calendar.php @@ -36,7 +36,7 @@ $string['eventtime'] = 'Ora'; $string['eventview'] = 'Detalhes do evento'; $string['expired'] = 'Terminado'; $string['february'] = 'Fevereiro'; -$st...
Shorter vrsions of days
moodle_moodle
train
ef8f084cc6dea48a45f4efea94f6adcdfda40507
diff --git a/grade/report/grader/lib.php b/grade/report/grader/lib.php index <HASH>..<HASH> 100644 --- a/grade/report/grader/lib.php +++ b/grade/report/grader/lib.php @@ -333,24 +333,33 @@ class grade_report_grader extends grade_report { public function load_users() { global $CFG, $DB; - list($us...
gradebook MDL-<I> fixed the loading of users in the grader report
moodle_moodle
train
f042a1842a3dcea8d4ec0fc81e1139b662a742d5
diff --git a/tests/test_client.py b/tests/test_client.py index <HASH>..<HASH> 100644 --- a/tests/test_client.py +++ b/tests/test_client.py @@ -1,6 +1,6 @@ from unittest import TestCase import threading -import re +import time from pymicroservice.client.remote_service import RemoteService from pymicroservice impor...
added 1 sec delay in test init
vladcalin_gemstone
train
546155d4c490da702b77792af73b81a8537d0462
diff --git a/engine/src/main/java/org/camunda/bpm/engine/impl/persistence/entity/HistoricTaskInstanceManager.java b/engine/src/main/java/org/camunda/bpm/engine/impl/persistence/entity/HistoricTaskInstanceManager.java index <HASH>..<HASH> 100644 --- a/engine/src/main/java/org/camunda/bpm/engine/impl/persistence/entity/H...
feat(engine): historic auth is removed when deleting hist task related to CAM-<I>
camunda_camunda-bpm-platform
train
b045fb90300986ff5a9af94089b1e8842016853f
diff --git a/src/jdk.compiler/share/classes/com/sun/tools/javac/file/Locations.java b/src/jdk.compiler/share/classes/com/sun/tools/javac/file/Locations.java index <HASH>..<HASH> 100644 --- a/src/jdk.compiler/share/classes/com/sun/tools/javac/file/Locations.java +++ b/src/jdk.compiler/share/classes/com/sun/tools/javac/f...
<I>: Compiler does not allow non-existent module path entry Reviewed-by: jlahoda
google_error-prone-javac
train
bb0a1987ee6aecf4b70b24c4ab5141c54f9ebb65
diff --git a/version.go b/version.go index <HASH>..<HASH> 100644 --- a/version.go +++ b/version.go @@ -23,7 +23,7 @@ import ( ) // Version is the FDK version -const Version = "0.0.16" +const Version = "0.0.17" var versionHeader = fmt.Sprintf("fdk-go/%s", Version) var runtimeHeader = fmt.Sprintf("go/%s", strings...
Releasing version <I>
fnproject_fdk-go
train
ec160166d416c406e72d3365b94c958d2651be7d
diff --git a/js/src/miscellaneous.js b/js/src/miscellaneous.js index <HASH>..<HASH> 100644 --- a/js/src/miscellaneous.js +++ b/js/src/miscellaneous.js @@ -11,6 +11,7 @@ chai.use(dirtyChai) module.exports = (common) => { describe('.miscellaneous', () => { let ipfs + let withGo before(function (done) {...
fix: don't error to specific When stopping an IPFS node it returns an error. The error message depends on the environment. In Browsers it might also return `Failed to fetch` or `XHR error`. Hence removing the specific error check as it would fail for Browsers. Instead check if the node is an go-ipfs one.
ipfs_interface-js-ipfs-core
train
37ef8309283848fa60e9871547604faae897ea29
diff --git a/internal/services/compute/windows_virtual_machine_scale_set_other_resource_test.go b/internal/services/compute/windows_virtual_machine_scale_set_other_resource_test.go index <HASH>..<HASH> 100644 --- a/internal/services/compute/windows_virtual_machine_scale_set_other_resource_test.go +++ b/internal/service...
Update internal/services/compute/windows_virtual_machine_scale_set_other_resource_test.go removed update acceptance test - unnecessary with ForceNew
terraform-providers_terraform-provider-azurerm
train
895d70e79fb27c8a098aebfa86c88f4cc7668c42
diff --git a/lnwallet/channel.go b/lnwallet/channel.go index <HASH>..<HASH> 100644 --- a/lnwallet/channel.go +++ b/lnwallet/channel.go @@ -46,6 +46,7 @@ type LightningChannel struct { theirPendingCommitTx *wire.MsgTx fundingTxIn *wire.TxIn + fundingP2SH []byte // TODO(roasbeef): create and embed 'Service' int...
lnwallet: add funding tx p2sh output to lnchannel * Allows for quick access to the pkScript when signing new commitment transactions.
lightningnetwork_lnd
train
59d5ab2f7556cbf76a4722111f7311e44b4287ab
diff --git a/src/test/java/com/jayway/maven/plugins/android/AbstractAndroidMojoTest.java b/src/test/java/com/jayway/maven/plugins/android/AbstractAndroidMojoTest.java index <HASH>..<HASH> 100644 --- a/src/test/java/com/jayway/maven/plugins/android/AbstractAndroidMojoTest.java +++ b/src/test/java/com/jayway/maven/plugin...
Incremental step towards getting Travis CI to pass unit tests
simpligility_android-maven-plugin
train
bb611324a9597307df6c226673913820538de48e
diff --git a/lib/fog/rackspace/authentication.rb b/lib/fog/rackspace/authentication.rb index <HASH>..<HASH> 100644 --- a/lib/fog/rackspace/authentication.rb +++ b/lib/fog/rackspace/authentication.rb @@ -20,11 +20,11 @@ module Fog @identity_service != nil end - def authenticate_v2(options) + ...
[rackspace] renaming variables in the interest of clarification
fog_fog
train
e0ba763f64e2f564b3b61ee35c253037d40cd16f
diff --git a/core/peer/deliverevents.go b/core/peer/deliverevents.go index <HASH>..<HASH> 100644 --- a/core/peer/deliverevents.go +++ b/core/peer/deliverevents.go @@ -17,6 +17,7 @@ package peer import ( "runtime/debug" + "time" "github.com/golang/protobuf/proto" "github.com/hyperledger/fabric/common/deliver"...
[FAB-<I>] Deliver req. unexpectedly fails Deliver requests unexpectedly fail when the authentication timewindow is not set. This CR adds a default value of <I> minutes for the time window to ensure that the deliver server does not default to 0 seconds. Change-Id: I<I>f2df8a<I>f7e7ea<I>de<I>ce6c<I>efe<I>
hyperledger_fabric
train
50b5c6845ed1645cf25613024ef04187385f8dcd
diff --git a/actionpack/lib/action_view/helpers/url_helper.rb b/actionpack/lib/action_view/helpers/url_helper.rb index <HASH>..<HASH> 100644 --- a/actionpack/lib/action_view/helpers/url_helper.rb +++ b/actionpack/lib/action_view/helpers/url_helper.rb @@ -466,7 +466,7 @@ module ActionView email_address_obfuscat...
Ensure mail_to label is obfuscated for javascript encoding. [#<I> state:resolved]
rails_rails
train
d546849795915c3ccd34a55039c53fc833bf471b
diff --git a/src/db/provider_clients/ProviderInterface.js b/src/db/provider_clients/ProviderInterface.js index <HASH>..<HASH> 100644 --- a/src/db/provider_clients/ProviderInterface.js +++ b/src/db/provider_clients/ProviderInterface.js @@ -151,7 +151,10 @@ export interface ProviderInterface { table: string, ke...
Removed unneccessary comments. Updated flow defs. Updated tests to reflect new insert() method signatures
falcon-client_falcon-core
train
e6445c5bd9c888518c11368f4e4c3474ee11e78b
diff --git a/badges/classes/assertion.php b/badges/classes/assertion.php index <HASH>..<HASH> 100644 --- a/badges/classes/assertion.php +++ b/badges/classes/assertion.php @@ -127,7 +127,12 @@ class core_badges_assertion { $hash = $this->_data->uniquehash; $email = empty($this->_data->backpacke...
MDL-<I> badges: Update the class and issuer OB<I> url
moodle_moodle
train
ff8dc92b8a3d4012f1ad9009650aa5391a5b7622
diff --git a/core/src/main/java/com/google/errorprone/bugpatterns/BoxedPrimitiveEquality.java b/core/src/main/java/com/google/errorprone/bugpatterns/BoxedPrimitiveEquality.java index <HASH>..<HASH> 100644 --- a/core/src/main/java/com/google/errorprone/bugpatterns/BoxedPrimitiveEquality.java +++ b/core/src/main/java/com...
Flag the checking of Number in BoxedPrimitiveEquality. I missed that NumericEquality was _disabled_ by default! Wild. PiperOrigin-RevId: <I>
google_error-prone
train
78f05a72fbcc1b8d6ceaae6250250843abbf04dd
diff --git a/packages/data-point/lib/reducer-types/reducer-function/factory.js b/packages/data-point/lib/reducer-types/reducer-function/factory.js index <HASH>..<HASH> 100644 --- a/packages/data-point/lib/reducer-types/reducer-function/factory.js +++ b/packages/data-point/lib/reducer-types/reducer-function/factory.js @...
refactor(data-point/reducer-function): Use Promise.promisify for node style reducer functions (#<I>) closes #<I>
ViacomInc_data-point
train
362781d1eef77ebc5d1e85cda09f9ae32060325b
diff --git a/docs/__about__.py b/docs/__about__.py index <HASH>..<HASH> 100644 --- a/docs/__about__.py +++ b/docs/__about__.py @@ -2,7 +2,7 @@ from __future__ import absolute_import, print_function, division -__version__ = '0.0.9' +__version__ = '0.1.0' __title__ = 'Kharon' __summary__ = 'Your personal ferryman ...
Add reqs for pypi in setup.py
NonnagHcaz_Kharon
train