diff stringlengths 65 26.7k | message stringlengths 7 9.92k |
|---|---|
diff --git a/mapillary_tools/exif_read.py b/mapillary_tools/exif_read.py
index <HASH>..<HASH> 100644
--- a/mapillary_tools/exif_read.py
+++ b/mapillary_tools/exif_read.py
@@ -168,8 +168,7 @@ class ExifRead:
capture_time = format_time(capture_time)
sub_sec = self.extract_subsec()
c... | bugfix: extract_capture_time return a wrong microsecond value
If a jpg file contains a SubSecTimeOriginal field with a value of <I>, the extract_capture_time method returns a microsecond value of <I> instead of 5
this commit correct this bug |
diff --git a/acorn.js b/acorn.js
index <HASH>..<HASH> 100644
--- a/acorn.js
+++ b/acorn.js
@@ -700,7 +700,7 @@
// of the type given by its first argument.
case 47: // '/'
- return readToken_slash(code);
+ return readToken_slash();
case 37: case 42: // '%*'
return readToken_mult_modul... | Minor: Remove unused argument from readToken_slash
Possible dev relic.
readToken_slash currently does not have any arguments and does not appear to look at arguments. All existing tests pass after removal of extraneous argument while calling readToken_slash. |
diff --git a/js/runner.go b/js/runner.go
index <HASH>..<HASH> 100644
--- a/js/runner.go
+++ b/js/runner.go
@@ -263,11 +263,10 @@ func (r *Runner) newVU(idLocal, idGlobal uint64, samplesOut chan<- stats.SampleC
// This is here mostly so if someone tries they get a nice message
// instead of "Value is not an object... | Remove one unneeded usage of common.BindToGlobal |
diff --git a/lib/fluent/plugin/out_splunk_hec.rb b/lib/fluent/plugin/out_splunk_hec.rb
index <HASH>..<HASH> 100644
--- a/lib/fluent/plugin/out_splunk_hec.rb
+++ b/lib/fluent/plugin/out_splunk_hec.rb
@@ -303,12 +303,12 @@ module Fluent::Plugin
t2 = Time.now
# raise Exception to utilize Fluentd output plu... | fix hec_api to api (#<I>) |
diff --git a/src/LedgerWallet.js b/src/LedgerWallet.js
index <HASH>..<HASH> 100644
--- a/src/LedgerWallet.js
+++ b/src/LedgerWallet.js
@@ -171,7 +171,6 @@ class LedgerWallet {
// This is fishy but currently ledger library always returns empty
// resolved promise when closing connection so there is no ... | Remove InteliJ specific linting setting |
diff --git a/src/Deploy/GitHubDeploy.php b/src/Deploy/GitHubDeploy.php
index <HASH>..<HASH> 100644
--- a/src/Deploy/GitHubDeploy.php
+++ b/src/Deploy/GitHubDeploy.php
@@ -141,8 +141,7 @@ class GitHubDeploy extends DeployBase
if ($this->gitRemoteBranchExist()) {
$stack
... | #<I>: Remove the git checkout after the reset, as it's not truely needed. |
diff --git a/salt/cloud/clouds/msazure.py b/salt/cloud/clouds/msazure.py
index <HASH>..<HASH> 100644
--- a/salt/cloud/clouds/msazure.py
+++ b/salt/cloud/clouds/msazure.py
@@ -528,9 +528,9 @@ def create(vm_):
conn.create_virtual_machine_deployment(**vm_kwargs)
except WindowsAzureConflictError:
log... | lint (and single quotes when I see them :) ) |
diff --git a/lib/https/index.js b/lib/https/index.js
index <HASH>..<HASH> 100644
--- a/lib/https/index.js
+++ b/lib/https/index.js
@@ -105,6 +105,12 @@ function handleWebsocket(socket, clientIp, callback) {
if (filter.rule) {
plugin = null;
}
+ if (!_rules.host) {
+ var _pluginRules = r... | refactor: show plugins rules in overview |
diff --git a/blkn/src/index.js b/blkn/src/index.js
index <HASH>..<HASH> 100644
--- a/blkn/src/index.js
+++ b/blkn/src/index.js
@@ -1,5 +1,8 @@
// @flow
export { default as Button } from "./Button";
-export { default as Input } from "./Input";
+export { default as InputText } from "./InputText";
export { default as... | BLKN: Add more exports to index.js |
diff --git a/tensorlayer/layers/recurrent.py b/tensorlayer/layers/recurrent.py
index <HASH>..<HASH> 100644
--- a/tensorlayer/layers/recurrent.py
+++ b/tensorlayer/layers/recurrent.py
@@ -247,10 +247,8 @@ class RNN(Layer):
"but got an actual length of a sequence %d" % i
)
... | Update recurrent.py
fix yapf |
diff --git a/audioread/ffdec.py b/audioread/ffdec.py
index <HASH>..<HASH> 100644
--- a/audioread/ffdec.py
+++ b/audioread/ffdec.py
@@ -70,6 +70,8 @@ class QueueReaderThread(threading.Thread):
# Stream closed (EOF).
break
+# Windows error switch is global, we need a lock to ensure thr... | ensure thread safety for SetErrorMode |
diff --git a/lib/will_paginate/view_helpers.rb b/lib/will_paginate/view_helpers.rb
index <HASH>..<HASH> 100644
--- a/lib/will_paginate/view_helpers.rb
+++ b/lib/will_paginate/view_helpers.rb
@@ -140,7 +140,7 @@ module WillPaginate
end
def self.total_pages_for_collection(collection) #:nodoc:
- if collec... | use strings in "respond_to?" calls to work around a bug in acts_as_ferret stable (ugh) |
diff --git a/smartmin/views.py b/smartmin/views.py
index <HASH>..<HASH> 100644
--- a/smartmin/views.py
+++ b/smartmin/views.py
@@ -46,7 +46,6 @@ class SmartView(object):
exclude = None
field_config = {}
title = None
- permission = None
refresh = 0
template_name = None
@@ -82,7 +81,7 @@ cla... | Handled the permission for actions inheritance issue |
diff --git a/sprd/model/Product.js b/sprd/model/Product.js
index <HASH>..<HASH> 100644
--- a/sprd/model/Product.js
+++ b/sprd/model/Product.js
@@ -24,7 +24,11 @@ define(['sprd/model/ProductBase', 'js/core/List', 'sprd/data/ConfigurationTypeRe
type: Price,
generated: true
... | DEV-<I> - Tracking to identify how many templates are sold |
diff --git a/forms/UploadField.php b/forms/UploadField.php
index <HASH>..<HASH> 100644
--- a/forms/UploadField.php
+++ b/forms/UploadField.php
@@ -933,8 +933,8 @@ class UploadField extends FileField {
Requirements::javascript(THIRDPARTY_DIR . '/jquery/jquery.js');
Requirements::javascript(THIRDPARTY_DIR . '/jquer... | Correct JS i<I>n in UploadField (fixes #<I>) |
diff --git a/htdocs/js/console.js b/htdocs/js/console.js
index <HASH>..<HASH> 100644
--- a/htdocs/js/console.js
+++ b/htdocs/js/console.js
@@ -42,6 +42,8 @@ function getAlerts(service, filter, refresh) {
var sev_id = '#' + service;
+ val.severityCounts.normal = val.severityCounts.normal + val.severityCo... | Inform alerts now contribute to Normal count in console |
diff --git a/registry/consul/watcher.go b/registry/consul/watcher.go
index <HASH>..<HASH> 100644
--- a/registry/consul/watcher.go
+++ b/registry/consul/watcher.go
@@ -224,9 +224,14 @@ func (cw *consulWatcher) handle(idx uint64, data interface{}) {
cw.RUnlock()
// remove unknown services from registry
+ // save th... | Return the dead node when deleting the service |
diff --git a/plugin/markdown/markdown.js b/plugin/markdown/markdown.js
index <HASH>..<HASH> 100755
--- a/plugin/markdown/markdown.js
+++ b/plugin/markdown/markdown.js
@@ -171,7 +171,7 @@
// flatten the hierarchical stack, and insert <section data-markdown> tags
for( var i = 0, len = sectionStack.length; i < len; ... | better check for arrays in markdown plugin |
diff --git a/src/com/esotericsoftware/reflectasm/AccessClassLoader.java b/src/com/esotericsoftware/reflectasm/AccessClassLoader.java
index <HASH>..<HASH> 100644
--- a/src/com/esotericsoftware/reflectasm/AccessClassLoader.java
+++ b/src/com/esotericsoftware/reflectasm/AccessClassLoader.java
@@ -10,11 +10,15 @@ class Acc... | Fixed issue 6, AccessClassLoader not tracking instances properly, not synchronized. |
diff --git a/packages/puppeteer-extra-plugin-stealth/evasions/user-agent-override/index.test.js b/packages/puppeteer-extra-plugin-stealth/evasions/user-agent-override/index.test.js
index <HASH>..<HASH> 100644
--- a/packages/puppeteer-extra-plugin-stealth/evasions/user-agent-override/index.test.js
+++ b/packages/puppete... | chore(plugin-stealth): Fix tests for TravisCI |
diff --git a/lib/gym/detect_values.rb b/lib/gym/detect_values.rb
index <HASH>..<HASH> 100644
--- a/lib/gym/detect_values.rb
+++ b/lib/gym/detect_values.rb
@@ -24,6 +24,8 @@ module Gym
config.load_configuration_file(Gym.gymfile_name)
end
+ config[:use_legacy_build_api] = true if Xcode.pre_7?
+
... | Automatic setting of legacy_build_api when using an old version of Xcode |
diff --git a/src/index.js b/src/index.js
index <HASH>..<HASH> 100644
--- a/src/index.js
+++ b/src/index.js
@@ -67,7 +67,7 @@ export default function PrerenderLoader (content) {
// @note: this is only used when the entry module exports a String or function
// that resolves to a String, otherwise the whole document... | Fix detection of if the loaded resource can be a JSDOM template
Previous regexp has an unescaped dot at the beginning (`/.(js|ts)x?$/i`) and this regexp matched against files .ejs, that are actually html. |
diff --git a/dependencies/_operation.py b/dependencies/_operation.py
index <HASH>..<HASH> 100644
--- a/dependencies/_operation.py
+++ b/dependencies/_operation.py
@@ -6,6 +6,8 @@ from .exceptions import DependencyError
def operation(function):
"""FIXME: Write a docstring."""
+ if inspect.isclass(function):
+... | Deny operation decorator against classes. |
diff --git a/lib/spade.js b/lib/spade.js
index <HASH>..<HASH> 100644
--- a/lib/spade.js
+++ b/lib/spade.js
@@ -218,12 +218,8 @@ exports.Spade = ( function () {
return cocker.bye();
}
me.emit( 'authorized', password, reply, addres... | less code for sendAuth..
On branch master
modified: lib/spade.js |
diff --git a/classes/Boom/Model/Page/Version.php b/classes/Boom/Model/Page/Version.php
index <HASH>..<HASH> 100644
--- a/classes/Boom/Model/Page/Version.php
+++ b/classes/Boom/Model/Page/Version.php
@@ -165,6 +165,8 @@ class Boom_Model_Page_Version extends ORM
->set('published', TRUE)
->set('embargoed_until', $... | Bugfix: Model_Page_Version::embargo() wasn't returning itself |
diff --git a/src/GAuth/Auth.php b/src/GAuth/Auth.php
index <HASH>..<HASH> 100644
--- a/src/GAuth/Auth.php
+++ b/src/GAuth/Auth.php
@@ -56,7 +56,7 @@ class Auth
{
$this->buildLookup();
- if ($initKey !== false) {
+ if ($initKey !== null) {
$this->setInitKey($initKey);
... | fixing check for init key inside constructor |
diff --git a/test/unit/access-suite.js b/test/unit/access-suite.js
index <HASH>..<HASH> 100644
--- a/test/unit/access-suite.js
+++ b/test/unit/access-suite.js
@@ -5,8 +5,8 @@ define(['requirejs', 'fs'], function(requirejs, fs, undefined) {
var suites = [];
suites.push({
- name: "util.js tests",
- desc: "a... | access tests: corrected name & desc |
diff --git a/lib/scrolls/log.rb b/lib/scrolls/log.rb
index <HASH>..<HASH> 100644
--- a/lib/scrolls/log.rb
+++ b/lib/scrolls/log.rb
@@ -245,13 +245,7 @@ module Scrolls
def write(data)
if log_level_ok?(data[:level])
msg = unparse(data)
- mtx.synchronize do
- begin
- stream.... | print is atomic instead of mutex so it works in threaded environs |
diff --git a/malcolm/modules/excalibur/parts/femdriverpart.py b/malcolm/modules/excalibur/parts/femdriverpart.py
index <HASH>..<HASH> 100644
--- a/malcolm/modules/excalibur/parts/femdriverpart.py
+++ b/malcolm/modules/excalibur/parts/femdriverpart.py
@@ -10,4 +10,4 @@ class FemDriverPart(StatefulChildPart):
def re... | Made excalibur fem driver use array counter rather than readback since it deals with config, not state |
diff --git a/lib/jekyll/page.rb b/lib/jekyll/page.rb
index <HASH>..<HASH> 100644
--- a/lib/jekyll/page.rb
+++ b/lib/jekyll/page.rb
@@ -64,7 +64,7 @@ module Jekyll
return @url if @url
url = if permalink
- if uses_relative_permalinks
+ if site.config['relative_permalinks']
File.jo... | Use site config to determine whether permalinks should be relative. |
diff --git a/main/core/Controller/FileController.php b/main/core/Controller/FileController.php
index <HASH>..<HASH> 100644
--- a/main/core/Controller/FileController.php
+++ b/main/core/Controller/FileController.php
@@ -274,7 +274,7 @@ class FileController extends AbstractApiController
private function stream(Resou... | Fixes permissions for file streaming (#<I>) |
diff --git a/shoebot/core/nodebox.py b/shoebot/core/nodebox.py
index <HASH>..<HASH> 100644
--- a/shoebot/core/nodebox.py
+++ b/shoebot/core/nodebox.py
@@ -535,7 +535,7 @@ class NodeBot(Bot):
else:
return txt
- def textpath(self, txt, x, y, width=None, height=1000000, draw=True, **kwargs):
+ ... | set default in textpath() to 'draw=False'
via shoebot main branch - hv_francesco |
diff --git a/test/unit/plugins/guests/suse/cap/change_host_name_test.rb b/test/unit/plugins/guests/suse/cap/change_host_name_test.rb
index <HASH>..<HASH> 100644
--- a/test/unit/plugins/guests/suse/cap/change_host_name_test.rb
+++ b/test/unit/plugins/guests/suse/cap/change_host_name_test.rb
@@ -22,13 +22,14 @@ describe ... | Adjusted test to work with new implementation |
diff --git a/examples/sampleserver.py b/examples/sampleserver.py
index <HASH>..<HASH> 100644
--- a/examples/sampleserver.py
+++ b/examples/sampleserver.py
@@ -71,8 +71,12 @@ class ConcreteServer(OpenIDServer):
'openid.identity': req.identity,
'openid.trust_root': req.trust_root,
'... | [project @ Fix bug in sample server.] |
diff --git a/src/test/java/io/github/bonigarcia/wdm/test/watcher/DisableCspFirefoxTest.java b/src/test/java/io/github/bonigarcia/wdm/test/watcher/DisableCspFirefoxTest.java
index <HASH>..<HASH> 100644
--- a/src/test/java/io/github/bonigarcia/wdm/test/watcher/DisableCspFirefoxTest.java
+++ b/src/test/java/io/github/boni... | Change logic for creating wdm in watch test |
diff --git a/src/Extension/ProductVariationsExtension.php b/src/Extension/ProductVariationsExtension.php
index <HASH>..<HASH> 100644
--- a/src/Extension/ProductVariationsExtension.php
+++ b/src/Extension/ProductVariationsExtension.php
@@ -208,7 +208,9 @@ class ProductVariationsExtension extends DataExtension
... | Use the sort as defined in the variation (#<I>) |
diff --git a/hbmqtt/broker.py b/hbmqtt/broker.py
index <HASH>..<HASH> 100644
--- a/hbmqtt/broker.py
+++ b/hbmqtt/broker.py
@@ -370,7 +370,7 @@ class Broker:
if client_session.clean_session:
# Delete existing session and create a new one
- if client_session.client_id is not None:
+ ... | correctly handle CONNECT with zero-length client_id
Zero-length client_ids in CONNECT packets show up in the payload as empty strings, not None; the broker should generate a new id for these connections. |
diff --git a/tests/test_main.py b/tests/test_main.py
index <HASH>..<HASH> 100644
--- a/tests/test_main.py
+++ b/tests/test_main.py
@@ -40,6 +40,9 @@ class TestIdentifyVcs(unittest.TestCase):
identify_vcs(repo_url)
self.assertEqual(identify_vcs(repo_url, guess=True), "hg")
+ repo_url = "ht... | added bitbucket case to tests. Close #1 |
diff --git a/salt/states/archive.py b/salt/states/archive.py
index <HASH>..<HASH> 100644
--- a/salt/states/archive.py
+++ b/salt/states/archive.py
@@ -7,6 +7,7 @@ Archive states.
import logging
import os
import tarfile
+from contextlib import closing
log = logging.getLogger(__name__)
@@ -131,7 +132,7 @@ def ext... | Using a closing context with the with block |
diff --git a/lib/chronuscop_client/railtie.rb b/lib/chronuscop_client/railtie.rb
index <HASH>..<HASH> 100644
--- a/lib/chronuscop_client/railtie.rb
+++ b/lib/chronuscop_client/railtie.rb
@@ -21,6 +21,9 @@ module ChronuscopClient
# reading the YAML file (app/config/chronuscop.yml)
ChronuscopClient.configur... | Finished setting the I<I>n backend in the gem. |
diff --git a/packages/xod-fs/src/utils.js b/packages/xod-fs/src/utils.js
index <HASH>..<HASH> 100644
--- a/packages/xod-fs/src/utils.js
+++ b/packages/xod-fs/src/utils.js
@@ -10,25 +10,21 @@ export const resolvePath = R.compose(
);
// :: string -> boolean
-export const isDirectoryExists = R.compose(
- R.tryCatch(
... | refactor(xod-fs): refactor `isFileExists` and `isDirectoryExists` functions |
diff --git a/playground/examples/tidal.js b/playground/examples/tidal.js
index <HASH>..<HASH> 100644
--- a/playground/examples/tidal.js
+++ b/playground/examples/tidal.js
@@ -50,7 +50,7 @@ drums.tidal( '[kd ch]*2 sd [kd*2 sd] oh' )
// pattern to alternate which member is played.
drums.tidal( '< kd sd kd oh > ch*2' )
... | Replacing a misspelled word with an alternative |
diff --git a/lib/bot.js b/lib/bot.js
index <HASH>..<HASH> 100644
--- a/lib/bot.js
+++ b/lib/bot.js
@@ -154,7 +154,7 @@ module.exports = ( function () {
const self = this,
logInCallback = function ( err, data ) {
- if (data == null) {
+ if (data === null || typeof data === 'undefined') {
self.e... | Changed to long-form null/undefined check |
diff --git a/bin/obfuscate_pwd.rb b/bin/obfuscate_pwd.rb
index <HASH>..<HASH> 100755
--- a/bin/obfuscate_pwd.rb
+++ b/bin/obfuscate_pwd.rb
@@ -1,9 +1,9 @@
#!/usr/bin/env ruby
-require File.join(File.dirname(__FILE__),"..","lib","birst_command")
+require "birst_command"
-begin
- puts Obfuscate.obfuscate(ARGV[0])
-re... | BugFix: obfuscate_pwd was not working when bundled as gem
Need to require 'birst_command' |
diff --git a/lib/ashton/version.rb b/lib/ashton/version.rb
index <HASH>..<HASH> 100644
--- a/lib/ashton/version.rb
+++ b/lib/ashton/version.rb
@@ -1,3 +1,3 @@
module Ashton
- VERSION = "0.1.1"
+ VERSION = "0.1.3"
end | Updated version so I could push a new copy of the gem |
diff --git a/api/query.go b/api/query.go
index <HASH>..<HASH> 100644
--- a/api/query.go
+++ b/api/query.go
@@ -1,6 +1,7 @@
package api
import (
+ "code.google.com/p/gorest"
"github.com/matttproud/prometheus/rules"
"github.com/matttproud/prometheus/rules/ast"
"time"
@@ -13,9 +14,15 @@ func (serv ... | Set correct Content-Type header based on output format. |
diff --git a/source/rafcon/mvc/selection.py b/source/rafcon/mvc/selection.py
index <HASH>..<HASH> 100644
--- a/source/rafcon/mvc/selection.py
+++ b/source/rafcon/mvc/selection.py
@@ -67,6 +67,9 @@ class Selection(Observable):
def __len__(self):
return len(self.__selected)
+ def __contains__(self, ite... | Add __contains__ method to Selection class
With this, one can write "if model in selection" instead of having to
write "if model in selection.get_all()" |
diff --git a/client/js/Panels/DiagramDesigner/ModelEditor/ModelEditorControl.DiagramDesignerWidgetEventHandlers.js b/client/js/Panels/DiagramDesigner/ModelEditor/ModelEditorControl.DiagramDesignerWidgetEventHandlers.js
index <HASH>..<HASH> 100644
--- a/client/js/Panels/DiagramDesigner/ModelEditor/ModelEditorControl.Dia... | connections visual props are saved on creation (if any)
Former-commit-id: 0f0a7dfb<I>cfc1a6d<I>d<I>ad<I>e<I>d<I>fab |
diff --git a/squad/core/comparison.py b/squad/core/comparison.py
index <HASH>..<HASH> 100644
--- a/squad/core/comparison.py
+++ b/squad/core/comparison.py
@@ -174,7 +174,7 @@ class TestComparison(BaseComparison):
).prefetch_related(
'build',
'environment',
- ).only('id')
+ ... | core: comparison: fix fetching less data from testrun
This fixes dd<I>a8cb<I>d<I>e<I>b6a9f7a<I>fe0a<I>, which attempted
to prevent unnecessary data from loading. I assumed that Django would
still prefetch "build" and "environment", but it didn't. This caused
collateral unnecessary load of same build and environment.
... |
diff --git a/lib/discordrb/commands/command_bot.rb b/lib/discordrb/commands/command_bot.rb
index <HASH>..<HASH> 100644
--- a/lib/discordrb/commands/command_bot.rb
+++ b/lib/discordrb/commands/command_bot.rb
@@ -172,6 +172,7 @@ module Discordrb::Commands
# @return [String, nil] the command's result, if there is any... | Do a nil check against a CommandBot's commands in execute_command |
diff --git a/src/Ratchet/Http/Guzzle/Http/Message/RequestFactory.php b/src/Ratchet/Http/Guzzle/Http/Message/RequestFactory.php
index <HASH>..<HASH> 100644
--- a/src/Ratchet/Http/Guzzle/Http/Message/RequestFactory.php
+++ b/src/Ratchet/Http/Guzzle/Http/Message/RequestFactory.php
@@ -4,6 +4,23 @@ use Guzzle\Http\Message\... | This modification gives Ratchet its own RequestFactory instance.
This way you can use guzzle as REST Client. |
diff --git a/java-dataproc/google-cloud-dataproc/src/main/java/com/google/cloud/dataproc/v1beta2/WorkflowTemplateServiceClient.java b/java-dataproc/google-cloud-dataproc/src/main/java/com/google/cloud/dataproc/v1beta2/WorkflowTemplateServiceClient.java
index <HASH>..<HASH> 100644
--- a/java-dataproc/google-cloud-datapr... | Regenerate clients (#<I>) |
diff --git a/src/aks-preview/setup.py b/src/aks-preview/setup.py
index <HASH>..<HASH> 100644
--- a/src/aks-preview/setup.py
+++ b/src/aks-preview/setup.py
@@ -8,7 +8,7 @@
from codecs import open as open1
from setuptools import setup, find_packages
-VERSION = "0.4.50"
+VERSION = "0.4.51"
CLASSIFIERS = [
'Devel... | aks-preview: version bump (#<I>) |
diff --git a/src/scs_core/data/json.py b/src/scs_core/data/json.py
index <HASH>..<HASH> 100644
--- a/src/scs_core/data/json.py
+++ b/src/scs_core/data/json.py
@@ -123,9 +123,8 @@ class JSONReport(JSONable):
tmp_filename = '.'.join((filename, str(int(time.time()))))
try:
- f = open(tmp_fil... | Refactored MultiPersistentJSONable |
diff --git a/channel.go b/channel.go
index <HASH>..<HASH> 100644
--- a/channel.go
+++ b/channel.go
@@ -274,8 +274,8 @@ func (ch *Channel) sendOpen(msg message) (err error) {
func (ch *Channel) dispatch(msg message) {
switch m := msg.(type) {
case *channelClose:
- ch.connection.closeChannel(ch, newError(m.ReplyCod... | First send a channel.close-ok, then release local resources
This way if a channel with the same ID is opened concurrently,
the server will first see a channel.close-ok for it and release it.
This is the same idea as #<I>. |
diff --git a/scripts/partialBuild.js b/scripts/partialBuild.js
index <HASH>..<HASH> 100644
--- a/scripts/partialBuild.js
+++ b/scripts/partialBuild.js
@@ -12,7 +12,7 @@ rollupConfig.plugins.push(partialBuildPlugin);
rollup.rollup(rollupConfig).then(function(bundle) {
return bundle.generate(rollupConfig.output);
})... | fix: partial build (#<I>)
* fixed partial build output
* write multiple chunks |
diff --git a/src/Core/Loader.php b/src/Core/Loader.php
index <HASH>..<HASH> 100644
--- a/src/Core/Loader.php
+++ b/src/Core/Loader.php
@@ -72,11 +72,6 @@ class Loader
$this->load_widgets();
- // Now all core files are loaded, turn on output buffer until a view is dispatched.
- if (! \ob_get_l... | buffering can conflict with static cache plugins |
diff --git a/src/Lucid/QueryBuilder/methods.js b/src/Lucid/QueryBuilder/methods.js
index <HASH>..<HASH> 100644
--- a/src/Lucid/QueryBuilder/methods.js
+++ b/src/Lucid/QueryBuilder/methods.js
@@ -451,6 +451,8 @@ methods.scope = function (target) {
*/
methods.ids = function (target) {
return function () {
+ cons... | fix(soft-deletes): pairs and ids ignore soft deleted
Closes #<I> |
diff --git a/lib/omnibus/packagers/mac_dmg.rb b/lib/omnibus/packagers/mac_dmg.rb
index <HASH>..<HASH> 100644
--- a/lib/omnibus/packagers/mac_dmg.rb
+++ b/lib/omnibus/packagers/mac_dmg.rb
@@ -25,9 +25,9 @@ module Omnibus
end
setup do
- clean_disks
create_directory(dmg_stage)
remove_file(wr... | Move clean disks after dmg_stage directory creation so that the command can execute correctly. |
diff --git a/bundles/org.eclipse.orion.client.ui/web/embeddedEditor/builder/javascriptPlugin.build.almond-js.js b/bundles/org.eclipse.orion.client.ui/web/embeddedEditor/builder/javascriptPlugin.build.almond-js.js
index <HASH>..<HASH> 100644
--- a/bundles/org.eclipse.orion.client.ui/web/embeddedEditor/builder/javascript... | Bug <I> - Stand alone editor: consume-ability improvement.-- refined the build script |
diff --git a/salt/grains/core.py b/salt/grains/core.py
index <HASH>..<HASH> 100644
--- a/salt/grains/core.py
+++ b/salt/grains/core.py
@@ -536,7 +536,7 @@ def _virtual(osdata):
# Tested on Fedora 10 / 2.6.27.30-170.2.82 with xen
# Tested on Fedora 15 / 2.6.41.4-1 without running xen
... | Added : to xen grep, because otherwise it would match kernel messages like: skipping TxEn test for device [<I>:<I>f] subsystem [<I>:<I>] |
diff --git a/src/Medoo.php b/src/Medoo.php
index <HASH>..<HASH> 100644
--- a/src/Medoo.php
+++ b/src/Medoo.php
@@ -234,9 +234,7 @@ class Medoo
}
$option = $options['option'] ?? [];
- $commands = (isset($options['command']) && is_array($options['command'])) ?
- $options['command'] :... | [update] the default commands can be overridden by the connection command option. #<I> |
diff --git a/packages/ember-testing/lib/helpers.js b/packages/ember-testing/lib/helpers.js
index <HASH>..<HASH> 100644
--- a/packages/ember-testing/lib/helpers.js
+++ b/packages/ember-testing/lib/helpers.js
@@ -19,6 +19,7 @@ Ember.Test.onInjectHelpers(function() {
function visit(app, url) {
Ember.run(app, app.han... | Ember testing update url in visit helper |
diff --git a/lib/rango/rango.rb b/lib/rango/rango.rb
index <HASH>..<HASH> 100644
--- a/lib/rango/rango.rb
+++ b/lib/rango/rango.rb
@@ -66,6 +66,7 @@ module Rango
# @since 0.0.1
def interactive
ARGV.delete("-i") # otherwise irb will read it
+ ENV["RACK_ENV"] = Rango.environment # for racksh
... | Fixed Rango#environment?, removed test-like environments from development_environments and exported ENV[RACK_ENV] in Rango.interactive |
diff --git a/test/lib/utils.js b/test/lib/utils.js
index <HASH>..<HASH> 100644
--- a/test/lib/utils.js
+++ b/test/lib/utils.js
@@ -44,6 +44,7 @@ exports.setupCouch = function (opts, callback) {
if (err) {
return callback(err);
}
+ process.setMaxListeners(100);
process.on('... | remove memory leak warning for process event emitter during tests
* * *
This commit was sponsored by The Hoodie Firm.
You can hire The Hoodie Firm:
<URL> |
diff --git a/isort/main.py b/isort/main.py
index <HASH>..<HASH> 100755
--- a/isort/main.py
+++ b/isort/main.py
@@ -1,4 +1,4 @@
-#! /usr/bin/env python
+#!/usr/bin/env python
''' Tool for sorting imports alphabetically, and automatically separated into sections.
Copyright (C) 2013 Timothy Edmund Crosley | Remove unconventional space after shebang
While allowed by most tools, it is very unconventional. |
diff --git a/marathon/models/app.py b/marathon/models/app.py
index <HASH>..<HASH> 100644
--- a/marathon/models/app.py
+++ b/marathon/models/app.py
@@ -37,7 +37,9 @@ class MarathonApp(MarathonResource):
def __init__(self, cmd=None, constraints=None, container=None, cpus=None, env=None, executor=None,
... | Bug Fix: Cannot define constraints with a tuple of strings |
diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -49,10 +49,12 @@ mirage.client = function client(primus) {
});
};
+ var session;
+
primus.on('outgoing::url', function url(options) {
var querystring = primus.querystring(options.query || '');
- queryst... | [fix] Actually set the guid; |
diff --git a/src/mergadoclient/HttpClient.php b/src/mergadoclient/HttpClient.php
index <HASH>..<HASH> 100644
--- a/src/mergadoclient/HttpClient.php
+++ b/src/mergadoclient/HttpClient.php
@@ -59,6 +59,26 @@ class HttpClient
}
+ public function requestAsync($url, $method = 'GET', $data = []) {
+
+ $stack = Handler... | Added requestAsync method to HttpClient
Added async methods to ApiClient |
diff --git a/lib/index.cjs.js b/lib/index.cjs.js
index <HASH>..<HASH> 100644
--- a/lib/index.cjs.js
+++ b/lib/index.cjs.js
@@ -1,5 +1,6 @@
import jwtDecode, { InvalidTokenError } from "./index";
const wrapper = jwtDecode;
+wrapper.default = jwtDecode;
wrapper.InvalidTokenError = InvalidTokenError;
export default ... | Add cjs compatibility with default export
This allows to use the ESM default import syntax in environments where the
import resolves to the CJS build.
This allows to create type definitions that work with both ESM and CJS
environments. |
diff --git a/idx/memory/find_cache_test.go b/idx/memory/find_cache_test.go
index <HASH>..<HASH> 100644
--- a/idx/memory/find_cache_test.go
+++ b/idx/memory/find_cache_test.go
@@ -89,3 +89,14 @@ func TestFindCache(t *testing.T) {
})
}
+
+func BenchmarkTreeFromPath(b *testing.B) {
+ numPaths := 1000
+ paths := getSe... | add benchmark for treeFromPath |
diff --git a/tm-monitor/main.go b/tm-monitor/main.go
index <HASH>..<HASH> 100644
--- a/tm-monitor/main.go
+++ b/tm-monitor/main.go
@@ -11,7 +11,7 @@ import (
monitor "github.com/tendermint/tools/tm-monitor/monitor"
)
-var version = "0.3.0"
+var version = "0.3.1"
var logger = log.NewNopLogger() | update tm-monitor version to <I> |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -23,6 +23,7 @@ setup(
"Topic :: Software Development :: Libraries :: Python Modules",
],
+ use_2to3 = True,
long_description = """\
Iron.io common library
---------------------- | modified: setup.py
added distribute's 2to3 option for python 3 compatibility |
diff --git a/lib/voom/presenters/dsl/components/actions/base.rb b/lib/voom/presenters/dsl/components/actions/base.rb
index <HASH>..<HASH> 100644
--- a/lib/voom/presenters/dsl/components/actions/base.rb
+++ b/lib/voom/presenters/dsl/components/actions/base.rb
@@ -34,13 +34,20 @@ module Voom
def extract_dyna... | Attempt at fixing a very elusive bug when using `last_response` in an
action. |
diff --git a/cleancat/base.py b/cleancat/base.py
index <HASH>..<HASH> 100644
--- a/cleancat/base.py
+++ b/cleancat/base.py
@@ -930,7 +930,7 @@ class PolymorphicField(Dict):
)
return self.type_map[field_type].clean(
- {k: v for k, v in value.items() if k != field_type}
+ {k:... | Fix field removal in PolymorphicField |
diff --git a/lib/runtime/index.js b/lib/runtime/index.js
index <HASH>..<HASH> 100644
--- a/lib/runtime/index.js
+++ b/lib/runtime/index.js
@@ -12,10 +12,6 @@ var Entry = require("./entry.js");
// specific module objects, or for Module.prototype (where implemented),
// to make the runtime available throughout the enti... | Don't complain about missing module.resolve until necessary.
Calling require("reify/lib/runtime").enable(Module.prototype) before
Module.prototype.resolve has been defined is fine, as long as the resolve
method is defined before module.link calls it. If it's still undefined
then, an exception will be thrown, which ful... |
diff --git a/webapps/client/scripts/navigation/controllers/cam-layout-ctrl.js b/webapps/client/scripts/navigation/controllers/cam-layout-ctrl.js
index <HASH>..<HASH> 100644
--- a/webapps/client/scripts/navigation/controllers/cam-layout-ctrl.js
+++ b/webapps/client/scripts/navigation/controllers/cam-layout-ctrl.js
@@ -7... | impr(layout): only the toggler should trigger collapse / expand
Related to: CAM-<I> |
diff --git a/unit_testing.py b/unit_testing.py
index <HASH>..<HASH> 100644
--- a/unit_testing.py
+++ b/unit_testing.py
@@ -13,6 +13,7 @@ class TestW2N(unittest.TestCase):
self.assertEqual(w2n.word_to_num('eleven'),11)
self.assertEqual(w2n.word_to_num('nineteen billion and nineteen'),19000000019)
self.assertEqu... | Added support for dash-splitted 2-digit numbers. Like thirty-five |
diff --git a/manifest.php b/manifest.php
index <HASH>..<HASH> 100755
--- a/manifest.php
+++ b/manifest.php
@@ -48,7 +48,7 @@ return array(
'version' => '20.2.2',
'author' => 'Open Assessment Technologies, CRP Henri Tudor',
'requires' => array(
- 'generis' => '>=7.9.6',
+ 'generis' => '>=7.9... | New version with DBAL instead of PDO requires new generis |
diff --git a/tests/get_free_port.py b/tests/get_free_port.py
index <HASH>..<HASH> 100644
--- a/tests/get_free_port.py
+++ b/tests/get_free_port.py
@@ -2,12 +2,8 @@ import tangelo.util
def test_get_free_port():
- for _ in xrange(100):
+ for _ in xrange(1000):
free_port = tangelo.util.get_free_port()
... | Preventing the get_free_port() test from cluttering the output
This also strengthens the test, now that screen clutter is not an issue |
diff --git a/peer_test.go b/peer_test.go
index <HASH>..<HASH> 100644
--- a/peer_test.go
+++ b/peer_test.go
@@ -385,11 +385,11 @@ func TestPeerSelectionPreferIncoming(t *testing.T) {
},
}
- ctx, cancel := NewContext(time.Second)
- defer cancel()
-
for _, tt := range tests {
WithVerifiedServer(t, nil, func(ch... | Create context inside of the test function
Avoid timeouts if a previous test failed, since the context may now
already be past the deadline and will cause future failures |
diff --git a/app/Notifications/Component/ComponentStatusChangedNotification.php b/app/Notifications/Component/ComponentStatusChangedNotification.php
index <HASH>..<HASH> 100644
--- a/app/Notifications/Component/ComponentStatusChangedNotification.php
+++ b/app/Notifications/Component/ComponentStatusChangedNotification.p... | Uses the translation cachet.subscriber.manage.
When a component's status changes or when an incident is
created/updated, an email is sent to every people that has subscribed.
At the end of the mail a link to manage its subscription has been
introduced.
Now, it uses the translation. |
diff --git a/coupons/models.py b/coupons/models.py
index <HASH>..<HASH> 100644
--- a/coupons/models.py
+++ b/coupons/models.py
@@ -69,6 +69,7 @@ class Coupon(models.Model):
users = models.ManyToManyField(
user_model, verbose_name=_("Users"), null=True, blank=True, through='CouponUser',
help_text=... | add a user limit field to coupon with default of 1 like before |
diff --git a/libkbfs/block_journal.go b/libkbfs/block_journal.go
index <HASH>..<HASH> 100644
--- a/libkbfs/block_journal.go
+++ b/libkbfs/block_journal.go
@@ -268,7 +268,7 @@ func (j *blockJournal) readJournal(ctx context.Context) (
// refs won't have to upload any new bytes. (This might
// be wrong if all ref... | block_journal: ignore the byes of ignored blocks on a restart
Issue: KBFS-<I> |
diff --git a/azure-client-runtime/src/main/java/com/microsoft/azure/v2/PollStrategy.java b/azure-client-runtime/src/main/java/com/microsoft/azure/v2/PollStrategy.java
index <HASH>..<HASH> 100644
--- a/azure-client-runtime/src/main/java/com/microsoft/azure/v2/PollStrategy.java
+++ b/azure-client-runtime/src/main/java/co... | Fix spelling in PollStrategy Javadoc (#<I>) |
diff --git a/AuthManager.php b/AuthManager.php
index <HASH>..<HASH> 100755
--- a/AuthManager.php
+++ b/AuthManager.php
@@ -4,9 +4,7 @@ namespace Illuminate\Auth;
use Closure;
use Illuminate\Contracts\Auth\Factory as FactoryContract;
-use Illuminate\Support\Str;
use InvalidArgumentException;
-use LogicException;
... | Apply fixes from StyleCI (#<I>) |
diff --git a/src/BouncerServiceProvider.php b/src/BouncerServiceProvider.php
index <HASH>..<HASH> 100644
--- a/src/BouncerServiceProvider.php
+++ b/src/BouncerServiceProvider.php
@@ -2,6 +2,8 @@
namespace Silber\Bouncer;
+use Silber\Bouncer\Database\Role;
+use Silber\Bouncer\Database\Ability;
use Illuminate\Suppo... | Bug fix missing use statements for Ability and Role Classes in ServiceProvider. |
diff --git a/holodeck/packagemanager.py b/holodeck/packagemanager.py
index <HASH>..<HASH> 100644
--- a/holodeck/packagemanager.py
+++ b/holodeck/packagemanager.py
@@ -79,18 +79,14 @@ def world_info(world_name, world_config=None, initial_indent="", next_indent="
print(sensor_indent, sensor)
-def insta... | Removed code to recheck holodeck path
Recently implemented similar functionality in util.py |
diff --git a/test.js b/test.js
index <HASH>..<HASH> 100644
--- a/test.js
+++ b/test.js
@@ -7,9 +7,20 @@ var sut = require("./index");
var lib = require("./lib");
var quick_check = function (describe_string, it_string, it_func) {
return describe(describe_string, function () {
- return _.times(500, function (n) {... | test(quick_check): add sanity check on number of tests executed |
diff --git a/tests/test_callstack.py b/tests/test_callstack.py
index <HASH>..<HASH> 100644
--- a/tests/test_callstack.py
+++ b/tests/test_callstack.py
@@ -47,7 +47,7 @@ def test_empty_stack():
cs = cs.ret(None)
nose.tools.assert_equal(cs.current_function_address, 0)
- nose.tools.assert_equal(cs.current_s... | missed a spot on test_callstack |
diff --git a/tests/test_protocol.py b/tests/test_protocol.py
index <HASH>..<HASH> 100644
--- a/tests/test_protocol.py
+++ b/tests/test_protocol.py
@@ -70,9 +70,6 @@ class TransportMock(unittest.mock.Mock):
self.loop.call_soon(self.close)
self._eof = True
- def is_closing(self):
- retur... | Simplify mock.
The code that was using this no longer exists. |
diff --git a/testRunner.js b/testRunner.js
index <HASH>..<HASH> 100755
--- a/testRunner.js
+++ b/testRunner.js
@@ -139,6 +139,7 @@ async function check(file) {
result = result.split(' - undefined').join('x');
result = result.split(' `undefined`').join('x');
result = re... | fix: more undefined in text fields |
diff --git a/gcloud_requests/credentials_watcher.py b/gcloud_requests/credentials_watcher.py
index <HASH>..<HASH> 100644
--- a/gcloud_requests/credentials_watcher.py
+++ b/gcloud_requests/credentials_watcher.py
@@ -62,3 +62,8 @@ class CredentialsWatcher(Thread):
with self.watch_list_updated:
self.... | unwatch credentials once proxies get gc'd |
diff --git a/MAVProxy/modules/mavproxy_console.py b/MAVProxy/modules/mavproxy_console.py
index <HASH>..<HASH> 100644
--- a/MAVProxy/modules/mavproxy_console.py
+++ b/MAVProxy/modules/mavproxy_console.py
@@ -6,8 +6,6 @@
import os, sys, math, time
-mpstate = None
-
from MAVProxy.modules.lib import wxconsole
from M... | console: Console window now closes when module is unloaded. |
diff --git a/testproj/urls.py b/testproj/urls.py
index <HASH>..<HASH> 100644
--- a/testproj/urls.py
+++ b/testproj/urls.py
@@ -14,12 +14,12 @@ from testproj import views
# args, kwargs, *args, **kwargs
urlpatterns = patterns('',
- (r'^home$', 'testproj.views.home'),
- (r'^home-callable$', views.home),
+ (r... | Reformatted some url patterns. |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -116,6 +116,9 @@ setup(
'invenio_base.apps': [
'invenio_records = invenio_records:InvenioRecords',
],
+ 'invenio_base.api_apps': [
+ 'invenio_records = invenio_records:InvenioRe... | installation: entry point fix
* Installs extension on API application in order to support JSONRef
replacement in the API application. |
diff --git a/test/test_heuristics.rb b/test/test_heuristics.rb
index <HASH>..<HASH> 100644
--- a/test/test_heuristics.rb
+++ b/test/test_heuristics.rb
@@ -145,6 +145,18 @@ class TestHeuristcs < Minitest::Test
})
end
+ def test_m_by_heuristics
+ assert_heuristics({
+ "Objective-C" => all_fixtures("Obj... | Tests for .m heuristic rules |
diff --git a/spec/gettext_i18n_rails/haml_parser_spec.rb b/spec/gettext_i18n_rails/haml_parser_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/gettext_i18n_rails/haml_parser_spec.rb
+++ b/spec/gettext_i18n_rails/haml_parser_spec.rb
@@ -23,11 +23,13 @@ describe GettextI18nRails::HamlParser do
end
end
- i... | Only run spec for <I> when ruby_version is <I>.. this fixes the travis ree testrun |
diff --git a/app/helpers/govuk_elements_errors_helper.rb b/app/helpers/govuk_elements_errors_helper.rb
index <HASH>..<HASH> 100644
--- a/app/helpers/govuk_elements_errors_helper.rb
+++ b/app/helpers/govuk_elements_errors_helper.rb
@@ -28,7 +28,7 @@ module GovukElementsErrorsHelper
child_objects = attribute_objec... | Remove parent object from attributes(object) when present
Assure attributes(object) does not return object in returned array. |
diff --git a/lib/discordrb/commands/command_bot.rb b/lib/discordrb/commands/command_bot.rb
index <HASH>..<HASH> 100644
--- a/lib/discordrb/commands/command_bot.rb
+++ b/lib/discordrb/commands/command_bot.rb
@@ -79,7 +79,7 @@ module Discordrb::Commands
parse_self: attributes[:parse_self],
shard_id: att... | Set redact_token to true if none is given during CommandBot passthrough
(so the entire thing *actually works* on CommandBot) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.