hash stringlengths 40 40 | diff stringlengths 131 114k | message stringlengths 7 980 | project stringlengths 5 67 | split stringclasses 1
value |
|---|---|---|---|---|
649c7e89ce625394b905902ccfb8f350b3fc0bbf | diff --git a/grunt.js b/grunt.js
index <HASH>..<HASH> 100644
--- a/grunt.js
+++ b/grunt.js
@@ -12,8 +12,8 @@ module.exports = function(grunt) {
},
dependencygraph: {
- path: '/Users/auchenberg/Development/example-multipage/www',
- outputPath: './graph/',
+ targetPath: '/Users/auchenberg/Devel... | Proper naming of params. | auchenberg_grunt-dependencygraph | train |
7c7a6d58081b8675ff73042cff0959a6990c20a3 | diff --git a/lib/xdr.js b/lib/xdr.js
index <HASH>..<HASH> 100644
--- a/lib/xdr.js
+++ b/lib/xdr.js
@@ -97,6 +97,15 @@ XDR.prototype.readDouble = function readDouble() {
};
+XDR.prototype.readHyper = function readHyper() {
+ var hi = this.readInt();
+ hi = hi * 4294967296;
+ var lo = this.readInt();
+
+ ... | MANTA-<I> add readHyper and writeHyper | joyent_node-oncrpc | train |
f71e4bc494567eb5e66a5eb0c09c933c8bb1872e | diff --git a/core/src/main/java/com/aspectran/core/context/rule/appender/FileRuleAppender.java b/core/src/main/java/com/aspectran/core/context/rule/appender/FileRuleAppender.java
index <HASH>..<HASH> 100755
--- a/core/src/main/java/com/aspectran/core/context/rule/appender/FileRuleAppender.java
+++ b/core/src/main/java/... | Simplify Debugging Messages | aspectran_aspectran | train |
e36f2945bbc380f7520b44b4db0d0f166b6ae445 | diff --git a/binding/binding.go b/binding/binding.go
index <HASH>..<HASH> 100644
--- a/binding/binding.go
+++ b/binding/binding.go
@@ -169,8 +169,8 @@ func Validate(obj interface{}) error {
for i := 0; i < typ.NumField(); i++ {
field := typ.Field(i)
- // Allow ignored fields in the struct
- if field.Tag.Ge... | Validate should ignore unexported struct fields. | gin-gonic_gin | train |
51f04763ddc9b8e637efdbc578ff07b27a081c4b | diff --git a/kechain2/api.py b/kechain2/api.py
index <HASH>..<HASH> 100644
--- a/kechain2/api.py
+++ b/kechain2/api.py
@@ -1,6 +1,5 @@
from kechain2.client import Client
-
client = Client()
@@ -15,77 +14,3 @@ def parts(*args, **kwargs):
def part(*args, **kwargs):
return client.part(*args, **kwargs)
-
-#... | refactored scope, activity, model and property api calls to client | KE-works_pykechain | train |
f8ec03b057b6337583f9d030e5b0969385079632 | diff --git a/includes/functions/functions_print_facts.php b/includes/functions/functions_print_facts.php
index <HASH>..<HASH> 100644
--- a/includes/functions/functions_print_facts.php
+++ b/includes/functions/functions_print_facts.php
@@ -842,10 +842,10 @@ function print_main_sources($factrec, $level, $pid, $linenum, $... | Fix: error when showing 1 SOUR / 2 RESN | fisharebest_webtrees | train |
ebe394f1c61ea70cda8d73a73cc8418a41c2c8d9 | diff --git a/bf/styles.py b/bf/styles.py
index <HASH>..<HASH> 100644
--- a/bf/styles.py
+++ b/bf/styles.py
@@ -35,7 +35,7 @@ class Styles(Dict):
elif rule.type==cssutils.css.CSSRule.IMPORT_RULE:
if styles.get('@import') is None: styles['@import'] = []
- styles[... | Styles.render():
+ add support for @import directives
+ fixed nested indents | BlackEarth_bf | train |
78870cefca01e0e5acbceb4eb086f15772db130b | diff --git a/OpenPNM/Network/__GenericNetwork__.py b/OpenPNM/Network/__GenericNetwork__.py
index <HASH>..<HASH> 100644
--- a/OpenPNM/Network/__GenericNetwork__.py
+++ b/OpenPNM/Network/__GenericNetwork__.py
@@ -829,7 +829,8 @@ class GenericNetwork(Core):
i = P[c][K][:,0]
j = P[c][K][:,1]
v = ... | Bug fix in stitch, the shape of the adjacency matrix was count wrong | PMEAL_OpenPNM | train |
59cb93f69fbb52eefcf283f137e6f9e14b2571b3 | diff --git a/Joyst_Model.php b/Joyst_Model.php
index <HASH>..<HASH> 100644
--- a/Joyst_Model.php
+++ b/Joyst_Model.php
@@ -486,11 +486,11 @@ class Joyst_Model extends CI_Model {
if (!$this->continue)
return FALSE;
- $this->Trigger('access', $row);
+ $this->Trigger('access', $this->query['where']);
if (!$t... | BUGFIX: Get() now populates the where conditon of access and pull correctly | hash-bang_Joyst | train |
4dc706eb7069b66f9f67155735bca213cee388d3 | diff --git a/project/library/CM/Model/Splittest.php b/project/library/CM/Model/Splittest.php
index <HASH>..<HASH> 100644
--- a/project/library/CM/Model/Splittest.php
+++ b/project/library/CM/Model/Splittest.php
@@ -47,10 +47,11 @@ class CM_Model_Splittest extends CM_Model_Abstract {
/**
* @param CM_Model_User $u... | t<I>: Add possibility to force variation fixture by $variationName | cargomedia_cm | train |
7c7a51ee41382fba0205d0e11595ceb42f0928d0 | diff --git a/lib/util/getRole.js b/lib/util/getRole.js
index <HASH>..<HASH> 100644
--- a/lib/util/getRole.js
+++ b/lib/util/getRole.js
@@ -1,26 +1,32 @@
+// Dependencies
+var entities = require('entities');
+
// Args
-exports.required = ['roles', 'rank'];
+exports.required = ['roles', ['rank', 'name']];
// Define
... | Add support for role name
New dependency `entities` was added for this (to unescape names
correctly), but it could very easily end up being needed for something
else | sentanos_roblox-js | train |
1595f6ee9d28f9d21609c0657dae15545746c336 | diff --git a/valid8/common_syntax.py b/valid8/common_syntax.py
index <HASH>..<HASH> 100644
--- a/valid8/common_syntax.py
+++ b/valid8/common_syntax.py
@@ -28,7 +28,7 @@ try: # python 3.5+
# 3. the syntax to describe several validation functions at once
VFDefinitionElement = Union[str, Type[Validati... | A few minor docstring edits + exception message | smarie_python-valid8 | train |
acbd4b9db810efcfd68ef3ca3801fb2d875c24e1 | diff --git a/src/consumer/__tests__/instrumentationEvents.spec.js b/src/consumer/__tests__/instrumentationEvents.spec.js
index <HASH>..<HASH> 100644
--- a/src/consumer/__tests__/instrumentationEvents.spec.js
+++ b/src/consumer/__tests__/instrumentationEvents.spec.js
@@ -321,7 +321,34 @@ describe('Consumer > Instrumenta... | Include "restart" property in consumer.crash instrumentation event | tulios_kafkajs | train |
2a7d725a093c8d316ccee658f3d9514968821bae | diff --git a/rpcserver.go b/rpcserver.go
index <HASH>..<HASH> 100644
--- a/rpcserver.go
+++ b/rpcserver.go
@@ -174,7 +174,7 @@ func (s *rpcServer) Start() {
jsonRPCRead(w, r, s)
})
- rpcServeMux.HandleFunc("/wallet", func(w http.ResponseWriter, r *http.Request) {
+ rpcServeMux.HandleFunc("/ws", func(w http.Respo... | Move websocket endpoint to /ws.
This commit moves the connection endpoint for websockets to /ws instead of
/wallet. First, the former is more standard, and second the latter
presumes how the websocket is to be used.
Closes #<I>. | btcsuite_btcd | train |
dd2bbe6bb790a2c6ec6260f606ec7d32cbba9962 | diff --git a/lib/theming/paths.js b/lib/theming/paths.js
index <HASH>..<HASH> 100644
--- a/lib/theming/paths.js
+++ b/lib/theming/paths.js
@@ -5,4 +5,5 @@ const { dirname } = require('path');
module.exports = {
'@emotion/core': dirname(require.resolve('@emotion/core/package.json')),
'@emotion/styled': dirname(re... | include emotion-theming in @storybook/theming/paths.js | storybooks_storybook | train |
e4f05bce948f9910be8931c8827b1a5cb37066c8 | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -76,7 +76,7 @@ setup(
],
python_requires='>=2.6',
keywords='cli',
- packages=find_packages(exclude=('tests', 'integration_tests')),
+ packages=find_packages(exclude=('integration*', 'tests*')),
instal... | fixed issue where tests were not properly excluded from distributable (#<I>) | onicagroup_runway | train |
c58e182509499a46f74a1d2c612999b427e6563e | diff --git a/app/controllers/katello/api/v2/content_view_puppet_modules_controller.rb b/app/controllers/katello/api/v2/content_view_puppet_modules_controller.rb
index <HASH>..<HASH> 100644
--- a/app/controllers/katello/api/v2/content_view_puppet_modules_controller.rb
+++ b/app/controllers/katello/api/v2/content_view_pu... | Fixes #<I> - Add uuid param back to CV puppet environment
This param was removed [here](<URL>), rightfully so since it only grabs a single puppet module, which is what the show call is for. However, we should deprecate the param like we have the other one in the POST call | Katello_katello | train |
7007ef9d0a64ec0243869396034dea5450061dc2 | diff --git a/package/src/frontend/VideoPlayer/filterSources.js b/package/src/frontend/VideoPlayer/filterSources.js
index <HASH>..<HASH> 100644
--- a/package/src/frontend/VideoPlayer/filterSources.js
+++ b/package/src/frontend/VideoPlayer/filterSources.js
@@ -1,8 +1,7 @@
import {browser} from '../browser';
-// TODO: ... | Refactor filterSources to vanilla JS | codevise_pageflow | train |
7739ac398fc0309cd94f6efda4e3b8722af814af | diff --git a/loadConn.go b/loadConn.go
index <HASH>..<HASH> 100644
--- a/loadConn.go
+++ b/loadConn.go
@@ -56,7 +56,7 @@ func (c *ClientConn) LoadConn(conn *map[string]IKEConf) error {
msg, err := c.Request("load-conn", *requestMap)
if msg["success"] != "yes" {
- return fmt.Errorf("unsuccessful LoadConn: %v", ms... | Fix error reporting for loadCnn | bronze1man_goStrongswanVici | train |
fd3ceb5cb7d8158493f36a517ce5a9c4857c49c0 | diff --git a/src/mistclient/model.py b/src/mistclient/model.py
index <HASH>..<HASH> 100644
--- a/src/mistclient/model.py
+++ b/src/mistclient/model.py
@@ -348,48 +348,38 @@ class Cloud(object):
print
if job.get('finished_at', 0):
- machine_ready = True
+ ... | Break out of loop in case of an error | mistio_mist.client | train |
a91ea826f97c8682b78558b69a580b48d474fe83 | diff --git a/lib/zfs.js b/lib/zfs.js
index <HASH>..<HASH> 100644
--- a/lib/zfs.js
+++ b/lib/zfs.js
@@ -12,7 +12,7 @@ function findCmd(name) {
for (var i = 0; i < pathLen; i++) {
var sp = path.resolve(paths[i]);
var fname = path.normalize(path.join(sp, name));
- if (path.existsSync(fname)) ... | [fix] path.existsSync was moved to fs.existsSync | calmh_node-zfs | train |
e04c54cecfc9e2ce146f142c30d695110ccdc6f5 | diff --git a/src/Http/Middleware/AuthCheck.php b/src/Http/Middleware/AuthCheck.php
index <HASH>..<HASH> 100644
--- a/src/Http/Middleware/AuthCheck.php
+++ b/src/Http/Middleware/AuthCheck.php
@@ -143,6 +143,9 @@ class AuthCheck
*/
public function handle(Request $request, \Closure $next)
{
+ // Not... | Setting session.use_cookies to 0 explicitely | dreamfactorysoftware_df-core | train |
1c6f7d68b2afa21795deb70a519ab71009b7b4c6 | diff --git a/controller/src/main/java/org/jboss/as/controller/transform/description/AttributeConverter.java b/controller/src/main/java/org/jboss/as/controller/transform/description/AttributeConverter.java
index <HASH>..<HASH> 100644
--- a/controller/src/main/java/org/jboss/as/controller/transform/description/AttributeC... | AS7-<I> Fix messaging ID_CACHE_SIZE and RECONNECT_ATTEMPTS transformation
Temporarily disable operation validation on reverse controller until CLUSTERED transformation is sorted
was: b<I>f<I>fabb<I>f9bad<I>fe4ceb<I>b<I>dca | wildfly_wildfly-core | train |
b61d5ad63bef6739fc6ba591c85bbb8b0ee6471d | diff --git a/fundamentals/__version__.py b/fundamentals/__version__.py
index <HASH>..<HASH> 100644
--- a/fundamentals/__version__.py
+++ b/fundamentals/__version__.py
@@ -1 +1 @@
-__version__ = '1.3.4'
+__version__ = '1.3.5' | sys.exit was breaking docs for other modules that import fundamentals | thespacedoctor_fundamentals | train |
fb505d0495c0729ad1af2a9535fff0a31ec025d4 | diff --git a/querydsl-sql/src/main/java/com/mysema/query/sql/AbstractSQLQuery.java b/querydsl-sql/src/main/java/com/mysema/query/sql/AbstractSQLQuery.java
index <HASH>..<HASH> 100644
--- a/querydsl-sql/src/main/java/com/mysema/query/sql/AbstractSQLQuery.java
+++ b/querydsl-sql/src/main/java/com/mysema/query/sql/Abstrac... | Fix count with empty resultsets | querydsl_querydsl | train |
aa9358904cc0fd6323b0f1809165c52f75879c58 | diff --git a/scriptworker/constants.py b/scriptworker/constants.py
index <HASH>..<HASH> 100644
--- a/scriptworker/constants.py
+++ b/scriptworker/constants.py
@@ -190,6 +190,11 @@ DEFAULT_CONFIG = frozendict({
'project:releng:googleplay:release': 'release',
'project:releng:signing:cert:release... | Add comment explaining why Aurora googleplay scope maps to nightly trees. | mozilla-releng_scriptworker | train |
dcb0b4f80173822c1084efa9185f8a0791df8d6a | diff --git a/trunk/JLanguageTool/src/java/org/languagetool/databroker/DefaultResourceDataBroker.java b/trunk/JLanguageTool/src/java/org/languagetool/databroker/DefaultResourceDataBroker.java
index <HASH>..<HASH> 100644
--- a/trunk/JLanguageTool/src/java/org/languagetool/databroker/DefaultResourceDataBroker.java
+++ b/t... | be really silent about lack of dictionaries (will be true under LO) | languagetool-org_languagetool | train |
ea30b0b5eea8aa32453c3bf5e6f69177f3aa1adc | diff --git a/lib/rscons/cache.rb b/lib/rscons/cache.rb
index <HASH>..<HASH> 100644
--- a/lib/rscons/cache.rb
+++ b/lib/rscons/cache.rb
@@ -181,6 +181,7 @@ module Rscons
def mkdir_p(path)
parts = path.split(/[\\\/]/)
parts.each_index do |i|
+ next if parts[i] == ""
subpath = File.join(... | Fix Cache#mkdir_p to handle absolute paths - fix #5 | holtrop_rscons | train |
3476ff6dcb83fb2cae979e713775cb7dc636cbd6 | diff --git a/src/BugsnagLogger.php b/src/BugsnagLogger.php
index <HASH>..<HASH> 100644
--- a/src/BugsnagLogger.php
+++ b/src/BugsnagLogger.php
@@ -4,7 +4,6 @@ namespace Bugsnag\PsrLogger;
use Bugsnag\Client;
use Exception;
-use Psr\Log\LoggerInterface;
use Throwable;
class BugsnagLogger extends AbstractLogger
d... | Applied fixes from StyleCI (#5) | bugsnag_bugsnag-psr-logger | train |
e89404d6dee834395a106dac955a28ece112197a | diff --git a/harpoon/option_spec/task_objs.py b/harpoon/option_spec/task_objs.py
index <HASH>..<HASH> 100644
--- a/harpoon/option_spec/task_objs.py
+++ b/harpoon/option_spec/task_objs.py
@@ -26,11 +26,12 @@ class Task(dictobj):
images = None
if task_func.needs_images:
images = self.determ... | Fix when we don't need an image | delfick_harpoon | train |
57e4b7122d4f6abf523c218eb6c9a6d068c67cb6 | diff --git a/src/GitHub_Updater/Rest_Update.php b/src/GitHub_Updater/Rest_Update.php
index <HASH>..<HASH> 100644
--- a/src/GitHub_Updater/Rest_Update.php
+++ b/src/GitHub_Updater/Rest_Update.php
@@ -190,7 +190,7 @@ class Rest_Update extends Base {
if ( $tag === $webhook_response['branch'] ) {
$tag = $webhook... | add $webhook_response to error | afragen_github-updater | train |
9205cb66e5e5a3139b55de105be5c18f1420bcc9 | diff --git a/auth/hasher_test.go b/auth/hasher_test.go
index <HASH>..<HASH> 100644
--- a/auth/hasher_test.go
+++ b/auth/hasher_test.go
@@ -9,7 +9,7 @@ func TestRegistry(t *testing.T) {
pbkdf2_sha256, err := GetHasher("pbkdf2_sha256")
if err != nil {
// TODO best way to print an error?
- t.Errorf("Failed to get ... | hashing errors during testing should be fatal | aodin_volta | train |
e19d2e6a562f6ba6bec5cff9d2fae09b958ad4ff | diff --git a/cherrypy/_helper.py b/cherrypy/_helper.py
index <HASH>..<HASH> 100644
--- a/cherrypy/_helper.py
+++ b/cherrypy/_helper.py
@@ -9,7 +9,9 @@ import cherrypy
def expose(func=None, alias=None):
- """Expose the function, optionally providing an alias or set of aliases."""
+ """
+ Expose the functio... | Minor refactor to expose decoratable types. | cherrypy_cheroot | train |
8a62b0d9f61066991a92664491f9748fac02d447 | diff --git a/cmd/integration/integration.go b/cmd/integration/integration.go
index <HASH>..<HASH> 100644
--- a/cmd/integration/integration.go
+++ b/cmd/integration/integration.go
@@ -598,6 +598,10 @@ func runAtomicPutTest(c *client.Client) {
}
func runPatchTest(c *client.Client) {
+ if c.APIVersion() != "v1beta1" {... | Temporarily skip PATCH integration tests for v1beta3 | kubernetes_kubernetes | train |
824e6ae219ef3d1667897d33f14153ff46865e54 | diff --git a/lib/csvlint.rb b/lib/csvlint.rb
index <HASH>..<HASH> 100644
--- a/lib/csvlint.rb
+++ b/lib/csvlint.rb
@@ -41,7 +41,7 @@ module Csvlint
s.each_line(@line_terminator) do |line|
begin
current_line = current_line + 1
- row = CSV.parse(line, @csv_options)[0]
+ ... | Remove line terminator from row ends
These get left in when you provide a delimiter | theodi_csvlint.rb | train |
89a423d5277303ef2ea19036bda662ca86ecec75 | diff --git a/stream.js b/stream.js
index <HASH>..<HASH> 100644
--- a/stream.js
+++ b/stream.js
@@ -31,7 +31,12 @@ module.exports = function (events) {
}
EBTStream.prototype.write = function (data) {
- if(this.peer.logging) console.log("EBT:recv", JSON.stringify(data, null, 2))
+ if(this.peer.logging) {
+ ... | Better logging on send/recv | dominictarr_epidemic-broadcast-trees | train |
85b5be5c0e9a9a8985b2c2babb664ee4819a85ac | diff --git a/src/Storage/Field/Type/TaxonomyType.php b/src/Storage/Field/Type/TaxonomyType.php
index <HASH>..<HASH> 100644
--- a/src/Storage/Field/Type/TaxonomyType.php
+++ b/src/Storage/Field/Type/TaxonomyType.php
@@ -181,11 +181,11 @@ class TaxonomyType extends FieldTypeBase
switch ($platform) {
... | remove distinct select from the db call for taxonomy | bolt_bolt | train |
91beead18e6233ebdfc866dee74e75a3fcb9c77b | diff --git a/drivers/amazonec2/amazonec2.go b/drivers/amazonec2/amazonec2.go
index <HASH>..<HASH> 100644
--- a/drivers/amazonec2/amazonec2.go
+++ b/drivers/amazonec2/amazonec2.go
@@ -490,7 +490,7 @@ func (d *Driver) checkPrereqs() error {
// try to find default
if len(subnets.Subnets) > 1 {
for _, subnet := r... | Added check if subnet.DefaultForAz is not nil
- subnet.DefaultForAz is an optional parameter and can be empty.
- if subnet.DefaultForAz is empty, it is considered as false. | docker_machine | train |
ada75df57991c38406e364760928c42094b38da4 | diff --git a/lib/grouping.js b/lib/grouping.js
index <HASH>..<HASH> 100644
--- a/lib/grouping.js
+++ b/lib/grouping.js
@@ -4,7 +4,7 @@ var _ = require("lodash");
* ALGO PARAMS
*/
var SCORE_THRESHOLD = 0.85;
-var OVERLAP_FRACTION = 0.5; // this replaces the upper one (score threshold); 0.4 also works, we might need... | decreased sensitivity for grouping for now | Ivshti_node-subtitles-grouping | train |
fa28b2a9f4738730bdb62b03bd6dd09e8c7ba152 | diff --git a/test/test_failover_integration.py b/test/test_failover_integration.py
index <HASH>..<HASH> 100644
--- a/test/test_failover_integration.py
+++ b/test/test_failover_integration.py
@@ -214,11 +214,12 @@ class TestFailover(KafkaIntegrationTestCase):
iter_timeout=timeout)
... | Retry on FailedPayloadsError from consumer.pending() in failover tests | dpkp_kafka-python | train |
834b6d4d9e84840e2e9bdd8d85d4b5c2670973e2 | diff --git a/Makefile b/Makefile
index <HASH>..<HASH> 100644
--- a/Makefile
+++ b/Makefile
@@ -2,12 +2,7 @@ GO ?= go
GO_SRC = $(shell find . -name \*.go)
.DEFAULT: build
-build: $(GO_SRC)
- @$(GO) build
-
-#
-# Unit & integration tests.
-#
+all: test lint
.PHONY: test
test:
@@ -17,37 +12,14 @@ test:
bench:
@... | Simplify testing with golangci-lint | mssola_user_agent | train |
5423c5b0a024ec0206c1fe9aa4793fa46efdd1db | diff --git a/test/test_examples.py b/test/test_examples.py
index <HASH>..<HASH> 100644
--- a/test/test_examples.py
+++ b/test/test_examples.py
@@ -19,6 +19,7 @@ import sys
sys.path[0:0] = [""]
+import pymongo
from test import client_context, unittest
@@ -30,6 +31,10 @@ class TestSampleShellCommands(unittest.T... | PYTHON-<I> - Agg, cmd, and index examples for docs | mongodb_mongo-python-driver | train |
d401045d95f681d82acb7e7e9b12975e3fd972ff | diff --git a/testing/src/main/java/org/echocat/jomon/testing/environments/LogbackTemporaryLogAppender.java b/testing/src/main/java/org/echocat/jomon/testing/environments/LogbackTemporaryLogAppender.java
index <HASH>..<HASH> 100644
--- a/testing/src/main/java/org/echocat/jomon/testing/environments/LogbackTemporaryLogApp... | * Fix for non initialize logging environment. Of course logback is not initialized on object construction .... doh. Thus do instance check in before method instead of constructor. | echocat_jomon | train |
f304e5b8f21956daba050170099cc1494be08a1f | diff --git a/generator/classes/propel/engine/builder/om/php5/PHP5BasicObjectBuilder.php b/generator/classes/propel/engine/builder/om/php5/PHP5BasicObjectBuilder.php
index <HASH>..<HASH> 100644
--- a/generator/classes/propel/engine/builder/om/php5/PHP5BasicObjectBuilder.php
+++ b/generator/classes/propel/engine/builder/... | fix #<I>, boolean columns got marked as modified when setting it from for instance true to 1 | propelorm_Propel | train |
af9db3af624f5b77b881713fc7bd3a664849f7c5 | diff --git a/versioner.py b/versioner.py
index <HASH>..<HASH> 100755
--- a/versioner.py
+++ b/versioner.py
@@ -52,13 +52,15 @@ for line in fileinput.input(release_file, inplace=1):
line += "**" + time.strftime("%B %d, %Y") + "**\n\n"
for commit in commit_lines:
try:
+ ## Co... | Fix versioner.py to actually record releasenotes | dereneaton_ipyrad | train |
f35d2f438e0d34ab55fbf953e27db341cffac66c | diff --git a/ui/src/dashboards/containers/DashboardPage.js b/ui/src/dashboards/containers/DashboardPage.js
index <HASH>..<HASH> 100644
--- a/ui/src/dashboards/containers/DashboardPage.js
+++ b/ui/src/dashboards/containers/DashboardPage.js
@@ -78,12 +78,19 @@ class DashboardPage extends Component {
notify,
... | Make ajax request for annotations at autorefresh interval | influxdata_influxdb | train |
64dd957189e7de3d7a1a8cf7a64e4441a0e72a38 | diff --git a/telethon/extensions/tcp_client.py b/telethon/extensions/tcp_client.py
index <HASH>..<HASH> 100644
--- a/telethon/extensions/tcp_client.py
+++ b/telethon/extensions/tcp_client.py
@@ -84,8 +84,9 @@ class TcpClient:
"""Closes the connection."""
if self._socket is not None:
try:
... | Fix None first_query and TcpClient.disconnect() | LonamiWebs_Telethon | train |
3357dd6f224e41ad31c7f16a957a22ef28e5a387 | diff --git a/salt/modules/zypper.py b/salt/modules/zypper.py
index <HASH>..<HASH> 100644
--- a/salt/modules/zypper.py
+++ b/salt/modules/zypper.py
@@ -1875,7 +1875,7 @@ def download(*packages, **kwargs):
def list_downloaded():
'''
- .. versionadded:: Nitrogen
+ .. versionadded:: 2017.7.0
List prefe... | Replace 'Nitrogen' as '<I>' version | saltstack_salt | train |
7a1bb2ff04f8f9ff1ed10c52fc7190244b015f03 | diff --git a/audit/hashstructure.go b/audit/hashstructure.go
index <HASH>..<HASH> 100644
--- a/audit/hashstructure.go
+++ b/audit/hashstructure.go
@@ -65,42 +65,36 @@ func HashRequest(salter *salt.Salt, in *logical.Request, HMACAccessor bool, nonH
req.ClientTokenAccessor = fn(req.ClientTokenAccessor)
}
- data, e... | Ensure that http_raw_body is always passed to the audit redaction system as a string
Before this it was passed as a []byte, which doesn't get HMAC'd. The original non-HMACing behaviour can be obtained by adding "http_raw_body" to audit_non_hmac_response_keys. (#<I>) | hashicorp_vault | train |
7086a22ba695d261aad0a6a0384302b7682cc524 | diff --git a/hazelcast/src/main/java/com/hazelcast/map/impl/eviction/ExpirationManager.java b/hazelcast/src/main/java/com/hazelcast/map/impl/eviction/ExpirationManager.java
index <HASH>..<HASH> 100644
--- a/hazelcast/src/main/java/com/hazelcast/map/impl/eviction/ExpirationManager.java
+++ b/hazelcast/src/main/java/com/... | Added javaDoc for ExpirationManager | hazelcast_hazelcast | train |
444f39c54d098480eee8a9d1878fa0066868c487 | diff --git a/gui/controls/listview.py b/gui/controls/listview.py
index <HASH>..<HASH> 100644
--- a/gui/controls/listview.py
+++ b/gui/controls/listview.py
@@ -58,7 +58,13 @@ class ListView(Control):
# Emulate some listBox methods
def get_count(self):
+ "Get the item (row) count"
return s... | fixed set item count in ListView (sanity checks) | reingart_gui2py | train |
a0895e41e2fd2cab962470acd46f82b30924c966 | diff --git a/lib/docker-sync/config_template.rb b/lib/docker-sync/config_template.rb
index <HASH>..<HASH> 100644
--- a/lib/docker-sync/config_template.rb
+++ b/lib/docker-sync/config_template.rb
@@ -2,13 +2,16 @@ require "yaml"
require 'dotenv'
module ConfigTemplate
- def self.interpolate_config_file(config_path)
... | separate interpolation of config from file interaction | EugenMayer_docker-sync | train |
d7e1add28af9aec2ad61d2779651b17f5e6ab7ac | diff --git a/server/fsm.go b/server/fsm.go
index <HASH>..<HASH> 100644
--- a/server/fsm.go
+++ b/server/fsm.go
@@ -1308,7 +1308,6 @@ func (h *FSMHandler) changeAdminState(s AdminState) error {
fsm.adminState = s
fsm.pConf.State.AdminDown = !fsm.pConf.State.AdminDown
- fsm.pConf.Config.AdminDown = !fsm.pConf.Co... | server: don't modify admin-down config | osrg_gobgp | train |
5eaa2cb93193bff0bbe5319cf7c37c29a93e83fc | diff --git a/src/system/modules/metamodelsfilter_perimetersearch/languages/en/tl_metamodel_filtersetting.php b/src/system/modules/metamodelsfilter_perimetersearch/languages/en/tl_metamodel_filtersetting.php
index <HASH>..<HASH> 100644
--- a/src/system/modules/metamodelsfilter_perimetersearch/languages/en/tl_metamodel_f... | Add a missing "k" in the word "LooUp". See #1 | MetaModels_filter_perimetersearch | train |
aee965206e1c8c31303d03bd080cb2be2a24382c | diff --git a/test/Event/ReadModel/History/HistoryProjectorTest.php b/test/Event/ReadModel/History/HistoryProjectorTest.php
index <HASH>..<HASH> 100644
--- a/test/Event/ReadModel/History/HistoryProjectorTest.php
+++ b/test/Event/ReadModel/History/HistoryProjectorTest.php
@@ -39,22 +39,7 @@ class HistoryProjectorTest ext... | III-<I>: Move initialisation of imported event to setUp() | cultuurnet_udb3-php | train |
a8cc77d903fe0f92303d360b067983509bac835c | diff --git a/pyrogram/__init__.py b/pyrogram/__init__.py
index <HASH>..<HASH> 100644
--- a/pyrogram/__init__.py
+++ b/pyrogram/__init__.py
@@ -16,7 +16,7 @@
# You should have received a copy of the GNU Lesser General Public License
# along with Pyrogram. If not, see <http://www.gnu.org/licenses/>.
-__version__ =... | Update Pyrogram to <I> | pyrogram_pyrogram | train |
6340a16d3ee0118930b4ab3fb01cc9a4186651e3 | diff --git a/src/main/java/com/github/noraui/application/steps/Step.java b/src/main/java/com/github/noraui/application/steps/Step.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/github/noraui/application/steps/Step.java
+++ b/src/main/java/com/github/noraui/application/steps/Step.java
@@ -27,8 +27,6 @@ import ... | fix Cucumber annotaion management for JDK1 | NoraUi_NoraUi | train |
4958b2b47e4b35d63e5105a36ee11eccc106b86b | diff --git a/lib/gearman/index.js b/lib/gearman/index.js
index <HASH>..<HASH> 100644
--- a/lib/gearman/index.js
+++ b/lib/gearman/index.js
@@ -1,2 +1,2 @@
-exports.Worker = require('./multiserver-worker').Worker;
-exports.Client = require('./multiserver-client').Client;
+exports.MultiserverWorker = require('./multiserv... | Fix ./lib/gearman/index.js | meetings_gearsloth | train |
3cd39d4634e24b131d23b786fe35664791781a58 | diff --git a/lib/ghtorrent/adapters/mongo_persister.rb b/lib/ghtorrent/adapters/mongo_persister.rb
index <HASH>..<HASH> 100644
--- a/lib/ghtorrent/adapters/mongo_persister.rb
+++ b/lib/ghtorrent/adapters/mongo_persister.rb
@@ -113,7 +113,7 @@ module GHTorrent
hosts = if replicas.nil? then
["#{ho... | Treat replicas as a YAML array | gousiosg_github-mirror | train |
9682b6aa5f93e4897836e3aae454846bd0647ca6 | diff --git a/tests/lib/URLTest.php b/tests/lib/URLTest.php
index <HASH>..<HASH> 100644
--- a/tests/lib/URLTest.php
+++ b/tests/lib/URLTest.php
@@ -123,12 +123,10 @@ class URLTest extends \PHPUnit_Framework_TestCase
$this->assertNull($returnValue, $message);
}
- for... | Fix the bug lib\URLTest::basicUrlProvider#0 was invalid | esperecyan_url | train |
5293a9c8fa02ca279ea4514a2c9b0c288bae5ffa | diff --git a/composer.json b/composer.json
index <HASH>..<HASH> 100644
--- a/composer.json
+++ b/composer.json
@@ -28,7 +28,7 @@
"extra": {
"installer-name": "elastica",
"branch-alias": {
- "dev-master": "2.1.x-dev"
+ "dev-master": "2.2.x-dev"
}
},
"replace": {
diff --git a/src/SilverStripe/Elastica/... | NEW Allow specification of arbitrary mappings
Allow non-dataobject derived mappings to be specified, and for dataobject
mappings to be explicitly defined outside the data object itself if desired
Updated ReindexTask to allow for clearing out an index in entirety | symbiote-library_silverstripe-elastica | train |
9b419fa3950eb0e62afd9bb91212f5b2f0cbe157 | diff --git a/src/test/java/org/arp/javautil/graph/DirectedGraphTest.java b/src/test/java/org/arp/javautil/graph/DirectedGraphTest.java
index <HASH>..<HASH> 100644
--- a/src/test/java/org/arp/javautil/graph/DirectedGraphTest.java
+++ b/src/test/java/org/arp/javautil/graph/DirectedGraphTest.java
@@ -39,7 +39,7 @@ import ... | reverting Java 7 syntax changes until ready to do so for the whole project | eurekaclinical_javautil | train |
c9aa0943c4f0644911c0002c4a0edc7eacaf43bc | diff --git a/PyKCS11/__init__.py b/PyKCS11/__init__.py
index <HASH>..<HASH> 100644
--- a/PyKCS11/__init__.py
+++ b/PyKCS11/__init__.py
@@ -104,7 +104,7 @@ class CK_SLOT_INFO(object):
def __str__(self):
dico = self.toDict()
lines = list()
- for key in dico.keys():
+ for key in sorted... | Sort the keys in the __str__ methods.
This is particularly usefull for the CK_TOKEN_INFO class since many
fields are related like ulMaxPinLen & ulMinPinLen and should be
displayed together instead of in a random order. | LudovicRousseau_PyKCS11 | train |
9aaf7d3f35a0b9272254cee836fa7110f0b94764 | diff --git a/packages/ra-ui-materialui/src/input/AutocompleteArrayInput.js b/packages/ra-ui-materialui/src/input/AutocompleteArrayInput.js
index <HASH>..<HASH> 100644
--- a/packages/ra-ui-materialui/src/input/AutocompleteArrayInput.js
+++ b/packages/ra-ui-materialui/src/input/AutocompleteArrayInput.js
@@ -374,7 +374,7 ... | Fix popper positioning is sometimes not recalculated properly | marmelab_react-admin | train |
b725df107af32408197fc788a74b8e87cad990a8 | diff --git a/shortcodes/footnotes/class-pb-footnotes.php b/shortcodes/footnotes/class-pb-footnotes.php
index <HASH>..<HASH> 100644
--- a/shortcodes/footnotes/class-pb-footnotes.php
+++ b/shortcodes/footnotes/class-pb-footnotes.php
@@ -242,10 +242,21 @@ class Footnotes {
* [1] => #_ftnref130
* [2] => 130
*... | Fix for Codebase ticket #<I>
Footnote variation not getting caught in our output | pressbooks_pressbooks | train |
a2dd89dad7fdf3a18e902c1a564d13f91613ea21 | diff --git a/test/index.js b/test/index.js
index <HASH>..<HASH> 100644
--- a/test/index.js
+++ b/test/index.js
@@ -95,4 +95,57 @@ describe('window-events', function () {
expect(foo.bar).toHaveBeenCalled()
})
})
+
+ describe('`off` method', function () {
+ var foo
+
+ beforeEach(function () {
+ ... | Tests for `off` method | shaungrady_angular-window-events | train |
8706562206c59d41c38d23741fb04556731cca8a | diff --git a/reilemulator.py b/reilemulator.py
index <HASH>..<HASH> 100644
--- a/reilemulator.py
+++ b/reilemulator.py
@@ -45,18 +45,22 @@ Byte addressable memory based on a dictionary.
"""
+import logging
import random
from barf.core.reil.reil import ReilImmediateOperand
from barf.core.reil.reil import ReilM... | BARF: Fix REIL emulator JCC implemantation. Fix REIL emulator execute method, now end_address parameters works as intended. | programa-stic_barf-project | train |
85a9132c9bb515ed83558bc08997572e6271c48a | diff --git a/lib/Cake/Routing/Router.php b/lib/Cake/Routing/Router.php
index <HASH>..<HASH> 100644
--- a/lib/Cake/Routing/Router.php
+++ b/lib/Cake/Routing/Router.php
@@ -503,6 +503,12 @@ class Router {
), $options);
$prefix = $options['prefix'];
+ if (strpos($prefix, '/') !== 0) {
+ $prefix = '/' . $prefix;... | Append / to the start/end of the mapResources prefix.
This makes the method easier to use and less error prone.
Fixes #<I> | cakephp_cakephp | train |
b4adb51b140859c6c71b115754aa47d35d26d466 | diff --git a/kd/register.go b/kd/register.go
index <HASH>..<HASH> 100644
--- a/kd/register.go
+++ b/kd/register.go
@@ -18,9 +18,10 @@ import (
const KeyLength = 64
-// var AuthServer = "https://koding.com"
+var AuthServer = "https://koding.com"
+
// TODO change this before deploying to production
-var AuthServer ... | kite/kd: make public url and increase version | koding_kite | train |
24cd1d33e6768968cfca34f240022644bb96b574 | diff --git a/vault/barrier.go b/vault/barrier.go
index <HASH>..<HASH> 100644
--- a/vault/barrier.go
+++ b/vault/barrier.go
@@ -61,6 +61,12 @@ type SecurityBarrier interface {
// be unsealed again to perform any further operations.
Seal() error
+ // SecurityBarrier must provide the storage APIs
+ BarrierStorage
+}... | vault: Split SecurityBarrier interface to BarrierStorage | hashicorp_vault | train |
33b99d30bf87194439ceb160338983d5f6b0cfdf | diff --git a/ayrton/expansion.py b/ayrton/expansion.py
index <HASH>..<HASH> 100644
--- a/ayrton/expansion.py
+++ b/ayrton/expansion.py
@@ -248,6 +248,18 @@ def default (parameter, word):
# but tests have shown that it is not so
return ans
+# {parameter:?word} is automatically handled by Python's runtime
+# ... | [+] support for {parameter:+word}. | StyXman_ayrton | train |
cb5c6563abcfd5e3ce117d16707cdb17dc1565eb | diff --git a/src/Command/User/UserRoleCommand.php b/src/Command/User/UserRoleCommand.php
index <HASH>..<HASH> 100644
--- a/src/Command/User/UserRoleCommand.php
+++ b/src/Command/User/UserRoleCommand.php
@@ -117,8 +117,14 @@ class UserRoleCommand extends CommandBase
$projectAccess = $this->api()->loadPr... | Fix user:role `--pipe` option when getting an environment role | platformsh_platformsh-cli | train |
8c86d76a2574d2cdeb53fd4ced269e148fe24ea4 | diff --git a/yotta/install.py b/yotta/install.py
index <HASH>..<HASH> 100644
--- a/yotta/install.py
+++ b/yotta/install.py
@@ -49,9 +49,9 @@ def addOptions(parser):
def execCommand(args, following_args):
if not hasattr(args, 'install_test_deps'):
vars(args)['install_test_deps'] = 'none'
- if args.save... | don't break if tests haven't set args.save/save_target | ARMmbed_yotta | train |
9ba626e45c176a6d2a1f8b9b109a6fddd6dbe733 | diff --git a/lib/arjdbc/sqlite3/adapter.rb b/lib/arjdbc/sqlite3/adapter.rb
index <HASH>..<HASH> 100644
--- a/lib/arjdbc/sqlite3/adapter.rb
+++ b/lib/arjdbc/sqlite3/adapter.rb
@@ -685,14 +685,7 @@ module ActiveRecord::ConnectionAdapters
def begin_isolated_db_transaction(isolation)
raise ActiveRecord::Transac... | Remove already fixed (early in <I>.x) bug in AR source we worked around. | jruby_activerecord-jdbc-adapter | train |
ea2dc16fd25ef9d70a66fad808033b6772ce4bd2 | diff --git a/src/plugins/Entity/Entity.Geometry.js b/src/plugins/Entity/Entity.Geometry.js
index <HASH>..<HASH> 100644
--- a/src/plugins/Entity/Entity.Geometry.js
+++ b/src/plugins/Entity/Entity.Geometry.js
@@ -445,6 +445,10 @@ Entity.Geometry = meta.Class.extend
{
this.drawX = this._x + this._parent.childOffsetX ... | Fixed some mysterious entity parent code. (bandit) | tenjou_meta2d | train |
b051babfffc1128b0406fe901f9add59d8b87814 | diff --git a/pyinfra/api/util.py b/pyinfra/api/util.py
index <HASH>..<HASH> 100644
--- a/pyinfra/api/util.py
+++ b/pyinfra/api/util.py
@@ -342,7 +342,7 @@ def make_command(
# Use sudo (w/user?)
if sudo:
- sudo_bits = ['sudo', '-H']
+ sudo_bits = ['sudo', '-S', '-H']
if preserve_sudo... | Pass `-S` to sudo to read from stdin. | Fizzadar_pyinfra | train |
5f38ba5277dfab875b3987d0f3c172f610c071ed | diff --git a/config/swoole_http.php b/config/swoole_http.php
index <HASH>..<HASH> 100644
--- a/config/swoole_http.php
+++ b/config/swoole_http.php
@@ -59,6 +59,17 @@ return [
/*
|--------------------------------------------------------------------------
+ | Pre-resolved instances here will be resolved wh... | make pre-resolved instances customizable | swooletw_laravel-swoole | train |
911056a16af18390f5b4188460e42c0934f682e5 | diff --git a/configurations/micrometer-core/src/main/java/io/micronaut/configuration/metrics/management/endpoint/MetricsEndpoint.java b/configurations/micrometer-core/src/main/java/io/micronaut/configuration/metrics/management/endpoint/MetricsEndpoint.java
index <HASH>..<HASH> 100644
--- a/configurations/micrometer-cor... | Metrics - cleanup for using Single and object and method names on MetricsEndpoint | micronaut-projects_micronaut-core | train |
e30de086ca87bc7b7787414ba2c0b25a5d85e79b | diff --git a/lib/fog/hp/models/storage/file.rb b/lib/fog/hp/models/storage/file.rb
index <HASH>..<HASH> 100644
--- a/lib/fog/hp/models/storage/file.rb
+++ b/lib/fog/hp/models/storage/file.rb
@@ -68,8 +68,8 @@ module Fog
# @param options [Hash]
# @return [String] url
def url(expires, options =... | refactor: duplicate parsing of the storage_uri, file#url uses service.create_temp_url to be able to pass options now | fog_fog | train |
28f798235946db39fbadeb85baf53c4e746591b9 | diff --git a/lib/pin_payment/refund.rb b/lib/pin_payment/refund.rb
index <HASH>..<HASH> 100644
--- a/lib/pin_payment/refund.rb
+++ b/lib/pin_payment/refund.rb
@@ -8,9 +8,9 @@ module PinPayment
# @param [String, PinPayment::Charge] charge_or_token the charge (or token of the charge) to refund
# @return [PinPay... | Refund isn't always a hash | tigris_pin_payment | train |
58025ef6f177da1e62f70146303a49aec8816ded | diff --git a/flink-runtime/src/main/java/org/apache/flink/runtime/taskexecutor/TaskManagerRunner.java b/flink-runtime/src/main/java/org/apache/flink/runtime/taskexecutor/TaskManagerRunner.java
index <HASH>..<HASH> 100644
--- a/flink-runtime/src/main/java/org/apache/flink/runtime/taskexecutor/TaskManagerRunner.java
+++ ... | [hotfix] Fix import checkstyle violation in TaskManagerRunner
This closes #<I>. | apache_flink | train |
4a3508f0182e327e3cca18f5017f97fbf293782b | diff --git a/messaging-activemq/src/main/java/org/wildfly/extension/messaging/activemq/MessagingSubsystemAdd.java b/messaging-activemq/src/main/java/org/wildfly/extension/messaging/activemq/MessagingSubsystemAdd.java
index <HASH>..<HASH> 100644
--- a/messaging-activemq/src/main/java/org/wildfly/extension/messaging/acti... | [WFLY-<I>] Check system properties for ActiveMQ client thread pool size
* For backwards compatibility, if ActiveMQ system properties are set
*and* the management attributes are not defined, use the value from
the system properties (instead of the management attributes default
values). If the management attribute... | wildfly_wildfly | train |
68f025fd1d19825c06463da0be77c1789d8e6441 | diff --git a/core/server/master/src/main/java/alluxio/master/file/LostFileDetector.java b/core/server/master/src/main/java/alluxio/master/file/LostFileDetector.java
index <HASH>..<HASH> 100644
--- a/core/server/master/src/main/java/alluxio/master/file/LostFileDetector.java
+++ b/core/server/master/src/main/java/alluxio... | Stop iterating lost files when journal is not available
LostFileDetector accesses journal directly, and should back off from
enumeration if the journal becomes unavailable (i.e. closed).
Fixes <URL> | Alluxio_alluxio | train |
6a18ece6a2dd497a5651f6dac009729d359b048c | diff --git a/spring-boot-cli/src/main/java/org/springframework/boot/cli/command/init/ProjectGenerationRequest.java b/spring-boot-cli/src/main/java/org/springframework/boot/cli/command/init/ProjectGenerationRequest.java
index <HASH>..<HASH> 100644
--- a/spring-boot-cli/src/main/java/org/springframework/boot/cli/command/... | Explicit type takes precedence over build and format
Prior to this commit, specifying the --format and/or --build options
alongside --type did not use the explicit type as it should. This commit
ignores the --build and --format options if a type is explicitly set.
Fixes gh-<I> | spring-projects_spring-boot | train |
f702096aba4366d21f7b1457cace652ab6235f8b | diff --git a/spec/unit/indirector/facts/facter.rb b/spec/unit/indirector/facts/facter.rb
index <HASH>..<HASH> 100755
--- a/spec/unit/indirector/facts/facter.rb
+++ b/spec/unit/indirector/facts/facter.rb
@@ -31,49 +31,46 @@ describe Puppet::Node::Facts::Facter do
end
end
-module TestingCodeFacts
- def setup
+... | converting facter indirector specs from setup/teardown to before/after | puppetlabs_puppet | train |
2800b68cb05ef57e0a425c8a0c2a5c941f6a3e8b | diff --git a/lib/ralexa/top_sites.rb b/lib/ralexa/top_sites.rb
index <HASH>..<HASH> 100644
--- a/lib/ralexa/top_sites.rb
+++ b/lib/ralexa/top_sites.rb
@@ -54,7 +54,7 @@ module Ralexa
node.at("DataUrl").text,
node.at("Country/Rank").text.to_i,
node.at("Country/Reach/PerMillion").te... | TopSites::Site has #page_views_per_million not #page_views. | flippa_ralexa | train |
9cf7286bea955354ea8319fca64352b2d25ea674 | diff --git a/builtin_json.go b/builtin_json.go
index <HASH>..<HASH> 100644
--- a/builtin_json.go
+++ b/builtin_json.go
@@ -6,6 +6,7 @@ import (
"fmt"
"io"
"strings"
+ "math"
)
var hex = "0123456789abcdef"
@@ -336,8 +337,14 @@ func (ctx *_builtinJSON_stringifyContext) str(key Value, holder *Object) bool {
}... | Fixed JSON serialisation of NaN and +/-Infinity | dop251_goja | train |
3e568689b9ac1af535a483a32023b5ae5a482927 | diff --git a/lib/wait-on.js b/lib/wait-on.js
index <HASH>..<HASH> 100644
--- a/lib/wait-on.js
+++ b/lib/wait-on.js
@@ -62,10 +62,12 @@ function waitOn(opts, cb) {
console.log.bind() :
function () { };
+ var lastWaitForOutput; // the resources last known to be waiting for
+
var timeoutTimer = null;
... | add pid to log output
when multiple instances are running, helps to keep straight
also logs all resources on successful exit | jeffbski_wait-on | train |
c282fea22a2f6ac7df6286a26340ef1e1fec9576 | diff --git a/CHANGELOG.md b/CHANGELOG.md
index <HASH>..<HASH> 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,5 @@
### 0.1.6-pre
-*
+* Add uncaughtException event handling
### 0.1.5
* Modify configuration loading to support separate application and environment configuration directories
diff --git a/lib/ute... | Add uncaughtException event handling. | cliffano_ute | train |
ab95f19dda85bd8a3f198b662b7a81da17ff717f | diff --git a/fabric-network/lib/impl/wallet/couchdbwallet.js b/fabric-network/lib/impl/wallet/couchdbwallet.js
index <HASH>..<HASH> 100644
--- a/fabric-network/lib/impl/wallet/couchdbwallet.js
+++ b/fabric-network/lib/impl/wallet/couchdbwallet.js
@@ -106,11 +106,20 @@ class CouchDBWalletKeyValueStore extends CouchDBVSt... | [FABN-<I>] Fix CouchDB Wallet delete key
CouchDB Wallet delete function fails because _rev parameter is not provided.
Modified test in unit test and also tested against real CouchDB
Change-Id: Ib<I>adc<I>ed<I>f<I>bcef5b9f<I>da<I>f2f7f0c | hyperledger_fabric-sdk-node | train |
8167506c9b40277729eaddf179d244c4d9716e99 | diff --git a/khard/address_book.py b/khard/address_book.py
index <HASH>..<HASH> 100644
--- a/khard/address_book.py
+++ b/khard/address_book.py
@@ -95,7 +95,7 @@ class AddressBook(metaclass=abc.ABCMeta):
clean_contact_details = re.sub("[^a-zA-Z0-9\n]", "",
... | Make strings with regex escape sequences raw strings | scheibler_khard | train |
b00f1620dc9111b551aa2a1612eb4c5ba995bf25 | diff --git a/ejb3/src/main/java/org/jboss/as/ejb3/security/EjbJaccConfigurator.java b/ejb3/src/main/java/org/jboss/as/ejb3/security/EjbJaccConfigurator.java
index <HASH>..<HASH> 100644
--- a/ejb3/src/main/java/org/jboss/as/ejb3/security/EjbJaccConfigurator.java
+++ b/ejb3/src/main/java/org/jboss/as/ejb3/security/EjbJac... | [WFLY-<I>] Update EjbJaccConfigurator#createPermissions so that the created EJBMethodPermissions are consistent with the ones created by JaccInterceptor | wildfly_wildfly | train |
7ad56d30dec5a1e0992c7e969f5db9ec89614b72 | diff --git a/aldryn_installer/config/__init__.py b/aldryn_installer/config/__init__.py
index <HASH>..<HASH> 100644
--- a/aldryn_installer/config/__init__.py
+++ b/aldryn_installer/config/__init__.py
@@ -47,7 +47,7 @@ def parse(args):
action='store', help='Optional project parent directory')
... | Changed the default for bootstrap template in wizard to no | nephila_djangocms-installer | train |
1d4e357e3250362b3b046c7ddc34eaf8cb1012e2 | diff --git a/jstorm-core/src/main/java/backtype/storm/utils/DisruptorQueueImpl.java b/jstorm-core/src/main/java/backtype/storm/utils/DisruptorQueueImpl.java
index <HASH>..<HASH> 100644
--- a/jstorm-core/src/main/java/backtype/storm/utils/DisruptorQueueImpl.java
+++ b/jstorm-core/src/main/java/backtype/storm/utils/Disru... | fixed possible failures in single thread mode | alibaba_jstorm | train |
a9cbbb53abf8d6dfc12bf28acd0e3a9b05b14eca | diff --git a/tests/test_regex.py b/tests/test_regex.py
index <HASH>..<HASH> 100644
--- a/tests/test_regex.py
+++ b/tests/test_regex.py
@@ -147,15 +147,24 @@ def test_incompatible_uris():
def test_chrome_usage():
- err = _do_test_raw("""var foo = require("bar");""")
- eq_(err.metadata['requires_chrome'], Fals... | Added additional modules that are not SDK; bug <I> | mozilla_amo-validator | train |
30d6c7be91f32ec0c6360695aef985a73af23224 | diff --git a/src/Wave/Framework/Storage/Session.php b/src/Wave/Framework/Storage/Session.php
index <HASH>..<HASH> 100644
--- a/src/Wave/Framework/Storage/Session.php
+++ b/src/Wave/Framework/Storage/Session.php
@@ -49,7 +49,9 @@ class Session extends Decoratable implements \ArrayAccess
public function __set($key... | Fix failing builds. Prevent edition of session id from setters | DaGhostman_codewave | train |
8c5ebff406e83eddf23698abc5167581293e060c | diff --git a/utils.py b/utils.py
index <HASH>..<HASH> 100644
--- a/utils.py
+++ b/utils.py
@@ -239,7 +239,6 @@ class MessagesHandlerMixIn(object):
chkid = msg.msgid[1:3]
if not msg.may_be_emitted():
self._msgs_state[msg.msgid] = False
- continue
sel... | Always register messages even if they may not be emitted.
This avoid several problems:
* error reported because the message is used in enable/disable
* check_message doesn't work properly because message is erroneously considered
as enabled (because check_message_id raise UnknownMessage)
So, put them all in linte... | PyCQA_pylint | train |
6fae0c29bc904eea92e30e36c8273b06ec6fe25c | diff --git a/internal/action/commands.go b/internal/action/commands.go
index <HASH>..<HASH> 100644
--- a/internal/action/commands.go
+++ b/internal/action/commands.go
@@ -914,6 +914,7 @@ func (s *Action) GetCommands() []*cli.Command {
"This command checks for gopass updates at GitHub and automatically " +
"do... | Disable gopass update (#<I>)
The updater is insecure since it doesn't check signature of downloaded
binaries (which aren't signed at the moment). It shouldn't be used this
way to the quickest fix is to disable it for the time being.
RELEASE_NOTES=[BUGFIX] Disable gopass update | gopasspw_gopass | train |
f3560ec7f19004aed951349980cde503a507ad7f | diff --git a/librosa/__init__.py b/librosa/__init__.py
index <HASH>..<HASH> 100644
--- a/librosa/__init__.py
+++ b/librosa/__init__.py
@@ -4,7 +4,6 @@
import warnings
import sys
-import re
from .version import version as __version__
from .version import show_versions
@@ -28,13 +27,9 @@ from .util.exceptions imp... | Removed warning filter, changed py2 deprecation warning to FutureWarning. fixes #<I> | librosa_librosa | train |
eb62016ec8415dd0538f9781eb76a1ab1dd9c877 | diff --git a/raiden/constants.py b/raiden/constants.py
index <HASH>..<HASH> 100644
--- a/raiden/constants.py
+++ b/raiden/constants.py
@@ -3,6 +3,10 @@ from enum import Enum
from eth_utils import keccak, to_checksum_address, to_hex
+LATEST = 'https://api.github.com/repos/raiden-network/raiden/releases/latest'
+REL... | Move "check interval" vars to constants.py | raiden-network_raiden | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.