diff stringlengths 65 26.7k | message stringlengths 7 9.92k |
|---|---|
diff --git a/lib/server.js b/lib/server.js
index <HASH>..<HASH> 100644
--- a/lib/server.js
+++ b/lib/server.js
@@ -303,7 +303,7 @@ function Server(options) {
log.trace('%s shutdown', c.ldap.id);
});
c.addListener('error', function (err) {
- log.warn('%s unexpected connection error', c.ldap.id, err... | Log errors with error log level instead of trace. |
diff --git a/core/server/services/members/api.js b/core/server/services/members/api.js
index <HASH>..<HASH> 100644
--- a/core/server/services/members/api.js
+++ b/core/server/services/members/api.js
@@ -74,11 +74,14 @@ function getStripePaymentConfig() {
return null;
}
+ const webhookHandlerUrl = new... | Wired up the members webhook handler endpoint
no-issue |
diff --git a/out_response.js b/out_response.js
index <HASH>..<HASH> 100644
--- a/out_response.js
+++ b/out_response.js
@@ -27,6 +27,7 @@ var inherits = require('util').inherits;
var errors = require('./errors');
var States = require('./reqres_states');
+/*eslint max-statements: [2, 40]*/
function TChannelOutRespon... | linting: [out_response] comply with max-statements rule |
diff --git a/src/components/core/core.js b/src/components/core/core.js
index <HASH>..<HASH> 100644
--- a/src/components/core/core.js
+++ b/src/components/core/core.js
@@ -218,11 +218,9 @@ class Core extends UIObject {
this.$el.append(style)
this.$el.append(this.mediaControl.render().el)
- this.$el.ready(... | core: remove ready call to run update size imediatelly |
diff --git a/src/tile_source.js b/src/tile_source.js
index <HASH>..<HASH> 100644
--- a/src/tile_source.js
+++ b/src/tile_source.js
@@ -216,9 +216,9 @@ export class MapboxFormatTileSource extends NetworkTileSource {
this.VectorTile = require('vector-tile').VectorTile; // Mapbox vector tile lib, forked to add Ge... | fix Mapbox tile source to work with XHR wrapper |
diff --git a/msgpackstream/backend/pyc/stream.py b/msgpackstream/backend/pyc/stream.py
index <HASH>..<HASH> 100644
--- a/msgpackstream/backend/pyc/stream.py
+++ b/msgpackstream/backend/pyc/stream.py
@@ -132,7 +132,7 @@ class UnpackerIterator(object):
-def unpack(instream, buffersize=4000, parsers=[]):
+de... | increased default buffersize to <I> |
diff --git a/lib/kafka/consumer.rb b/lib/kafka/consumer.rb
index <HASH>..<HASH> 100644
--- a/lib/kafka/consumer.rb
+++ b/lib/kafka/consumer.rb
@@ -400,8 +400,10 @@ module Kafka
operation.execute
rescue NoPartitionsToFetchFrom
- @logger.warn "There are no partitions to fetch from, sleeping for #{max_w... | Guard against max_wait_time being zero |
diff --git a/streamfield_tools/blocks/struct_block.py b/streamfield_tools/blocks/struct_block.py
index <HASH>..<HASH> 100644
--- a/streamfield_tools/blocks/struct_block.py
+++ b/streamfield_tools/blocks/struct_block.py
@@ -77,12 +77,12 @@ class MultiRenditionStructBlock(StructBlock):
rendition = self._renditio... | added context to struct block rendering so 'get_context' works for subclasses |
diff --git a/tests/test_write_readback.py b/tests/test_write_readback.py
index <HASH>..<HASH> 100755
--- a/tests/test_write_readback.py
+++ b/tests/test_write_readback.py
@@ -89,8 +89,9 @@ class TestWriteReadbackCpythonMatlab(unittest.TestCase):
self.assertEqual(a, b)
def assert_equal_numpy(self, a, b):... | Fixed issue in test where NaN's were causing equality tests to fail. |
diff --git a/controller/frontend/src/Controller/Frontend/Basket/Default.php b/controller/frontend/src/Controller/Frontend/Basket/Default.php
index <HASH>..<HASH> 100644
--- a/controller/frontend/src/Controller/Frontend/Basket/Default.php
+++ b/controller/frontend/src/Controller/Frontend/Basket/Default.php
@@ -245,8 +24... | Fixes stock level check for selection product variants |
diff --git a/Command/AtoumCommand.php b/Command/AtoumCommand.php
index <HASH>..<HASH> 100644
--- a/Command/AtoumCommand.php
+++ b/Command/AtoumCommand.php
@@ -80,7 +80,7 @@ EOF
}
foreach ($directories as $directory) {
- $runner->addTestAllDirectory($directory);
+ ... | Fix use of deprecated addTestAllDirectory in AtoumCommand |
diff --git a/tests/integ/test_basic.py b/tests/integ/test_basic.py
index <HASH>..<HASH> 100644
--- a/tests/integ/test_basic.py
+++ b/tests/integ/test_basic.py
@@ -56,7 +56,7 @@ def test_stream_creation(engine):
assert "arn" in StreamCreation.Meta.stream
-def test_model_overlap(session, engine):
+def test_model... | renamed client fixture in integ test |
diff --git a/lib/data_mapper/relationship.rb b/lib/data_mapper/relationship.rb
index <HASH>..<HASH> 100644
--- a/lib/data_mapper/relationship.rb
+++ b/lib/data_mapper/relationship.rb
@@ -124,9 +124,7 @@ module DataMapper
@options = options.to_hash
@source_model = source_model
- @target_model =... | Simplify Relationship#initialize |
diff --git a/solvebio/cli/ipython.py b/solvebio/cli/ipython.py
index <HASH>..<HASH> 100644
--- a/solvebio/cli/ipython.py
+++ b/solvebio/cli/ipython.py
@@ -8,6 +8,7 @@ def launch_ipython_shell(args): # pylint: disable=unused-argument
except ImportError:
print("The SolveBio Python shell requires IPython.\n... | make sure to return after the ipython cli fails to import ipython |
diff --git a/test/tools/javac/nio/compileTest/CompileTest.java b/test/tools/javac/nio/compileTest/CompileTest.java
index <HASH>..<HASH> 100644
--- a/test/tools/javac/nio/compileTest/CompileTest.java
+++ b/test/tools/javac/nio/compileTest/CompileTest.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2009, 2010, Oracle and/or i... | <I>: tools/javac/nio/CompileTest failing in nightly test
Reviewed-by: mcimadamore |
diff --git a/spec/video/where_spec.rb b/spec/video/where_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/video/where_spec.rb
+++ b/spec/video/where_spec.rb
@@ -27,7 +27,7 @@ describe 'Yt::Video.where', :server do
end
it 'makes as many HTTP requests as the number of videos divided by 50', requests: 2 do
- ... | Fix failing test
To count the correct number of requests, don't reuse exactly the
same request as the other test. |
diff --git a/src/main/java/com/dlsc/preferencesfx/view/CategoryPresenter.java b/src/main/java/com/dlsc/preferencesfx/view/CategoryPresenter.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/dlsc/preferencesfx/view/CategoryPresenter.java
+++ b/src/main/java/com/dlsc/preferencesfx/view/CategoryPresenter.java
@@ -3... | applied changes from i<I>n branch |
diff --git a/javascript/webdriver/stacktrace.js b/javascript/webdriver/stacktrace.js
index <HASH>..<HASH> 100644
--- a/javascript/webdriver/stacktrace.js
+++ b/javascript/webdriver/stacktrace.js
@@ -562,11 +562,14 @@ webdriver.stacktrace.parseLongFirefoxFrame_ = function(frameStr) {
* V8 prepends the string represent... | Loosen input type to webdriver.stacktrace.getStack_ to account
for an rare condition in FF <I>+ where the Error() constructor
returns undefined (not sure what causes it, just know it happens) |
diff --git a/pymux/main.py b/pymux/main.py
index <HASH>..<HASH> 100644
--- a/pymux/main.py
+++ b/pymux/main.py
@@ -13,7 +13,6 @@ from prompt_toolkit.interface import CommandLineInterface
from prompt_toolkit.key_binding.vi_state import InputMode, ViState
from prompt_toolkit.layout.screen import Size
from prompt_toolk... | Set render postpone time to <I> (This improves the performance.) |
diff --git a/biz/webui/cgi-bin/util.js b/biz/webui/cgi-bin/util.js
index <HASH>..<HASH> 100644
--- a/biz/webui/cgi-bin/util.js
+++ b/biz/webui/cgi-bin/util.js
@@ -16,6 +16,10 @@ exports.getClientId = function() {
};
exports.getServerInfo = function(req) {
+ var baseDir;
+ if (!config.networkMode && !config.plugin... | refactor: hide baseDir in network or plugins mode |
diff --git a/vendor/Devvoh/Fluid/Bootstrap.php b/vendor/Devvoh/Fluid/Bootstrap.php
index <HASH>..<HASH> 100644
--- a/vendor/Devvoh/Fluid/Bootstrap.php
+++ b/vendor/Devvoh/Fluid/Bootstrap.php
@@ -51,9 +51,15 @@ spl_autoload_register(function ($class) {
*/
spl_autoload_register(function ($class) {
if (strpos($cla... | Fixed entity/model autoloader so it can load under_scored models properly. |
diff --git a/service/cloudhsm/examples_test.go b/service/cloudhsm/examples_test.go
index <HASH>..<HASH> 100644
--- a/service/cloudhsm/examples_test.go
+++ b/service/cloudhsm/examples_test.go
@@ -21,7 +21,7 @@ func ExampleCloudHSM_AddTagsToResource() {
params := &cloudhsm.AddTagsToResourceInput{
ResourceArn: aws.St... | cloudhsm: Update client to latest |
diff --git a/spec/unit/type_spec.rb b/spec/unit/type_spec.rb
index <HASH>..<HASH> 100755
--- a/spec/unit/type_spec.rb
+++ b/spec/unit/type_spec.rb
@@ -1,9 +1,10 @@
#! /usr/bin/env ruby
require 'spec_helper'
-
+require 'puppet_spec/compiler'
describe Puppet::Type, :unless => Puppet.features.microsoft_windows? do
... | (#<I>) Add a spec test to reproduce the failure |
diff --git a/user/view.php b/user/view.php
index <HASH>..<HASH> 100644
--- a/user/view.php
+++ b/user/view.php
@@ -230,7 +230,7 @@
' height="16" width="16" /></a>');
}
if ($user->yahoo && !isset($hiddenfields['yahooid'])) {
- print_row(get_string('yahooid').':', '<a href="http://edit.yahoo... | Bug #<I> - add Yahoo online status to user profile; merged from MOODLE_<I>_STABLE |
diff --git a/support/test-runner/app.js b/support/test-runner/app.js
index <HASH>..<HASH> 100644
--- a/support/test-runner/app.js
+++ b/support/test-runner/app.js
@@ -6,7 +6,8 @@
var express = require('express')
, stylus = require('stylus')
, sio = require('socket.io')
- , path = require('path');
+ , path = re... | Added custom client serving to serve the local repository. |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100755
--- a/setup.py
+++ b/setup.py
@@ -76,10 +76,6 @@ Parsing::
"""
VERSION = get_version()
-DOWNLOAD_URL = (
- 'https://github.com/downloads/andialbrecht/sqlparse/'
- 'sqlparse-%s.tar.gz' % VERSION
-)
kwargs = {}
@@ -94,7 +90,6 @@ setup(
descr... | Remove download url from setup (fixes issue<I>).
Downloads on github are disabled since December <I>. |
diff --git a/netsnmpagent.py b/netsnmpagent.py
index <HASH>..<HASH> 100644
--- a/netsnmpagent.py
+++ b/netsnmpagent.py
@@ -136,7 +136,7 @@ class netsnmpAgent(object):
# Let libsnmpagent parse the OID
if libnsa.read_objid(
oidstr,
- ctypes.cast(ctypes.byref(oid), ctypes.POINTER(ctypes.c_ulong)),
+ ctypes.c... | Of course one should use existing data types first... |
diff --git a/driver/src/main/java/org/kaazing/k3po/driver/internal/ext/tls/bootstrap/TlsClientChannelSink.java b/driver/src/main/java/org/kaazing/k3po/driver/internal/ext/tls/bootstrap/TlsClientChannelSink.java
index <HASH>..<HASH> 100644
--- a/driver/src/main/java/org/kaazing/k3po/driver/internal/ext/tls/bootstrap/Tls... | Tls closes underlying connection on TLS handshake close |
diff --git a/src/main/resources/js/report/report.js b/src/main/resources/js/report/report.js
index <HASH>..<HASH> 100644
--- a/src/main/resources/js/report/report.js
+++ b/src/main/resources/js/report/report.js
@@ -239,12 +239,12 @@ function adjustImageAreaSize() {
var maxWidth = $("#right_container").width();
va... | Don't overlap between report image and table |
diff --git a/errors.go b/errors.go
index <HASH>..<HASH> 100644
--- a/errors.go
+++ b/errors.go
@@ -85,10 +85,8 @@ func HandleExitCoder(err error) {
}
if multiErr, ok := err.(MultiError); ok {
- for _, merr := range multiErr.Errors {
- fmt.Fprintln(ErrWriter, merr)
- }
- OsExiter(1)
+ code := handleMultiErro... | Exit with the code of ExitCoder if exists |
diff --git a/events/facebookEvents.js b/events/facebookEvents.js
index <HASH>..<HASH> 100644
--- a/events/facebookEvents.js
+++ b/events/facebookEvents.js
@@ -21,6 +21,10 @@ function saveFacebookEvents(eventsWithVenues, row, grpIdx) {
if (!row.location) {
return;
}
+ if (!row.end_time){
+ //TODO... | fix(facebook) added null check for end_time |
diff --git a/core-bundle/contao/dca/tl_article.php b/core-bundle/contao/dca/tl_article.php
index <HASH>..<HASH> 100644
--- a/core-bundle/contao/dca/tl_article.php
+++ b/core-bundle/contao/dca/tl_article.php
@@ -687,7 +687,7 @@ class tl_article extends Backend
$arrSections = array_merge($arrSections, $arrCustom);
... | [Core] Correctly assign articles to columns (see #<I>) |
diff --git a/lib/vagrant/vm.rb b/lib/vagrant/vm.rb
index <HASH>..<HASH> 100644
--- a/lib/vagrant/vm.rb
+++ b/lib/vagrant/vm.rb
@@ -49,11 +49,11 @@ module Vagrant
@logger.info("Loading guest: #{guest}")
if guest.is_a?(Class)
- raise Errors::VMGuestError, :_key => :invalid_class, :system => guest.t... | fix interpolation error in VMGuestError strings |
diff --git a/includes/functions/functions_mediadb.php b/includes/functions/functions_mediadb.php
index <HASH>..<HASH> 100644
--- a/includes/functions/functions_mediadb.php
+++ b/includes/functions/functions_mediadb.php
@@ -923,7 +923,7 @@ function get_media_folders() {
$entry = $dir->read();
if (!$entry)
... | FIX: is_dir() gives error with badly-formed directories when open_basedir is in effect. |
diff --git a/lib/gscraper/version.rb b/lib/gscraper/version.rb
index <HASH>..<HASH> 100644
--- a/lib/gscraper/version.rb
+++ b/lib/gscraper/version.rb
@@ -20,5 +20,5 @@
module GScraper
# The version of GScraper
- VERSION = '0.3.1'
+ VERSION = '0.4.0'
end | Version bump to <I>. |
diff --git a/tests/letter_tests.py b/tests/letter_tests.py
index <HASH>..<HASH> 100644
--- a/tests/letter_tests.py
+++ b/tests/letter_tests.py
@@ -94,7 +94,7 @@ class Letters(unittest.TestCase):
c = []
for i,b_w in enumerate(b):
w = utf8.join_letters_elementary(b_w)
- print u"%... | PYTHON3 bugbear in tests |
diff --git a/packages/ssr/src/lib/run-client.js b/packages/ssr/src/lib/run-client.js
index <HASH>..<HASH> 100644
--- a/packages/ssr/src/lib/run-client.js
+++ b/packages/ssr/src/lib/run-client.js
@@ -32,9 +32,7 @@ const makeClient = options => {
if (typeof window !== "undefined" && window.nuk) {
const acsTnlCook... | fix: revert cookie pagination fix (#<I>) |
diff --git a/modules/core/bundle/index.js b/modules/core/bundle/index.js
index <HASH>..<HASH> 100644
--- a/modules/core/bundle/index.js
+++ b/modules/core/bundle/index.js
@@ -3,13 +3,16 @@ const LumaGL = require('./lumagl');
const deckGLCore = require('../src');
const DeckGL = require('./deckgl').default;
+const {r... | Expose loaders.gl endpoints from the core bundle (#<I>) |
diff --git a/tensorflow_probability/python/experimental/mcmc/diagonal_mass_matrix_adaptation.py b/tensorflow_probability/python/experimental/mcmc/diagonal_mass_matrix_adaptation.py
index <HASH>..<HASH> 100644
--- a/tensorflow_probability/python/experimental/mcmc/diagonal_mass_matrix_adaptation.py
+++ b/tensorflow_proba... | Add missing dtype in `diagonal_mass_matrix_adaptation` |
diff --git a/nitro.js b/nitro.js
index <HASH>..<HASH> 100644
--- a/nitro.js
+++ b/nitro.js
@@ -542,7 +542,6 @@ var defcat = 'all';
try {
var config = require('./config.json');
- download_history = giUtils.downloadHistory(config.download_history);
host = config.nitro.host;
api_key = config.nitro.api_key;
medi... | nitro; only load download_history if needed |
diff --git a/fsquery/fsquery.py b/fsquery/fsquery.py
index <HASH>..<HASH> 100644
--- a/fsquery/fsquery.py
+++ b/fsquery/fsquery.py
@@ -67,6 +67,22 @@ class FSNode :
if r.search(line) :
return True
return False
+
+ def get_child(self,pat) :
+ if not self.isdir() :... | added git_child and get_parent functionality to FSNode |
diff --git a/lib/chewy/config.rb b/lib/chewy/config.rb
index <HASH>..<HASH> 100644
--- a/lib/chewy/config.rb
+++ b/lib/chewy/config.rb
@@ -112,6 +112,7 @@ module Chewy
def configuration
yaml_settings.merge(settings.deep_symbolize_keys).tap do |configuration|
configuration[:logger] = transport_logge... | Use default indices_path path (#<I>)
Once I run `rake chewy:reset` it raised an error with:
```
TypeError: no implicit conversion of nil into String
```
Once I set `indices_path` in a chewy.yml file then this issue was solved.
Since this change now `indices_path` used by default, so you don't need to set it t... |
diff --git a/utils/loggers.py b/utils/loggers.py
index <HASH>..<HASH> 100644
--- a/utils/loggers.py
+++ b/utils/loggers.py
@@ -1,7 +1,7 @@
import logging
-LOG_NAMES = ['webant', 'fsdb', 'presets', 'agherant', 'config_utils', 'libreantdb', 'archivant', 'users']
+LOG_NAMES = ['webant', 'fsdb', 'presets', 'agherant',... | added werkzeug to handled loggers |
diff --git a/blog/locallib.php b/blog/locallib.php
index <HASH>..<HASH> 100644
--- a/blog/locallib.php
+++ b/blog/locallib.php
@@ -117,7 +117,7 @@ class blog_entry {
$this->summary = file_rewrite_pluginfile_urls($this->summary, 'pluginfile.php', SYSCONTEXTID, 'blog', 'post', $this->id);
$options = a... | MDL-<I> moved blog comments to end of body of blog entry. we now see the entire blog entry without comments in the way. |
diff --git a/src/shared/js/ch.Popover.js b/src/shared/js/ch.Popover.js
index <HASH>..<HASH> 100644
--- a/src/shared/js/ch.Popover.js
+++ b/src/shared/js/ch.Popover.js
@@ -401,7 +401,6 @@
timeOut,
events;
-
function hide(event) {
if (event.target !== that._el && event.ta... | #<I> Move private functions inside the closable scope. |
diff --git a/calendar-bundle/src/Resources/contao/classes/Events.php b/calendar-bundle/src/Resources/contao/classes/Events.php
index <HASH>..<HASH> 100644
--- a/calendar-bundle/src/Resources/contao/classes/Events.php
+++ b/calendar-bundle/src/Resources/contao/classes/Events.php
@@ -281,6 +281,8 @@ abstract class Events... | [Calendar] Encode e-mail addresses in the event teaser. |
diff --git a/server/camlistored/ui/blob_item_container_react.js b/server/camlistored/ui/blob_item_container_react.js
index <HASH>..<HASH> 100644
--- a/server/camlistored/ui/blob_item_container_react.js
+++ b/server/camlistored/ui/blob_item_container_react.js
@@ -379,7 +379,8 @@ cam.BlobItemContainerReact = React.create... | UI: add title arg to history.replaceState
According to
<URL> argument is ignored. However, in the chrome console
I'm getting
Uncaught TypeError: Failed to execute 'replaceState' on 'History': 2 arguments required, but only 1 present.
errors so I figure it's worth fixing.
Change-Id: I6b<I>a<I>c<I>c<I>b<I>e7df9b8acb |
diff --git a/pkg/apis/rbac/helpers.go b/pkg/apis/rbac/helpers.go
index <HASH>..<HASH> 100644
--- a/pkg/apis/rbac/helpers.go
+++ b/pkg/apis/rbac/helpers.go
@@ -147,6 +147,10 @@ func (r PolicyRule) String() string {
func (r PolicyRule) CompactString() string {
formatStringParts := []string{}
formatArgs := []interfac... | Display apiGroups before resources in PolicyRule |
diff --git a/Form/Type/StatusType.php b/Form/Type/StatusType.php
index <HASH>..<HASH> 100644
--- a/Form/Type/StatusType.php
+++ b/Form/Type/StatusType.php
@@ -15,7 +15,7 @@ class StatusType extends AbstractType
unset($choices[0]);
$resolver->setDefaults(array(
- 'choices' => TicketMessage... | fix typo: $choices isn't a property of TicketMessage |
diff --git a/bcbio/variation/phasing.py b/bcbio/variation/phasing.py
index <HASH>..<HASH> 100644
--- a/bcbio/variation/phasing.py
+++ b/bcbio/variation/phasing.py
@@ -28,7 +28,9 @@ def read_backed_phasing(vcf_file, bam_files, genome_file, region, config):
params = ["-T", "ReadBackedPhasing",
... | Downsample by default for phasing to avoid slowdowns in deeply covered regions |
diff --git a/angr/analyses/cfg.py b/angr/analyses/cfg.py
index <HASH>..<HASH> 100644
--- a/angr/analyses/cfg.py
+++ b/angr/analyses/cfg.py
@@ -2558,6 +2558,7 @@ class CFG(Analysis, CFGBase):
return self._immediate_dominators(end, target_graph=target_graph, reverse_graph=True)
def __setstate__(self, s):
... | CFG: dump self.projects when pickling CFGs. |
diff --git a/proso_concepts/models.py b/proso_concepts/models.py
index <HASH>..<HASH> 100644
--- a/proso_concepts/models.py
+++ b/proso_concepts/models.py
@@ -257,7 +257,7 @@ class UserStatManager(models.Manager):
environment = get_environment()
mastery_threshold = get_mastery_trashold()
for ... | concepts - for sqlite - give list to environment instead of set |
diff --git a/app/templates/src/main/java/package/domain/_User.java b/app/templates/src/main/java/package/domain/_User.java
index <HASH>..<HASH> 100644
--- a/app/templates/src/main/java/package/domain/_User.java
+++ b/app/templates/src/main/java/package/domain/_User.java
@@ -57,8 +57,8 @@ public class User implements Se... | The field should be present independent to hibernateCache fixes #<I> |
diff --git a/src/notebook/epics/github-publish.js b/src/notebook/epics/github-publish.js
index <HASH>..<HASH> 100644
--- a/src/notebook/epics/github-publish.js
+++ b/src/notebook/epics/github-publish.js
@@ -40,7 +40,6 @@ export function notifyUser(filename, gistID, notificationSystem) {
},
});
}
-// give these... | chore(publish): Remove extraneous comment |
diff --git a/graylog2-server/src/main/java/org/graylog2/rest/resources/streams/StreamResource.java b/graylog2-server/src/main/java/org/graylog2/rest/resources/streams/StreamResource.java
index <HASH>..<HASH> 100644
--- a/graylog2-server/src/main/java/org/graylog2/rest/resources/streams/StreamResource.java
+++ b/graylog... | Newly created (or cloned) streams are paused now
Fixes #<I> |
diff --git a/lib/resourceful/resource.js b/lib/resourceful/resource.js
index <HASH>..<HASH> 100644
--- a/lib/resourceful/resource.js
+++ b/lib/resourceful/resource.js
@@ -753,7 +753,7 @@ Resource.timestamps = function () {
//
// The last time the resource was accessed
//
- this.property('atime', 'number', { f... | [minor] Comment out atime until it's logic is added |
diff --git a/tests/Propel/Tests/Generator/Model/TableTest.php b/tests/Propel/Tests/Generator/Model/TableTest.php
index <HASH>..<HASH> 100644
--- a/tests/Propel/Tests/Generator/Model/TableTest.php
+++ b/tests/Propel/Tests/Generator/Model/TableTest.php
@@ -77,7 +77,7 @@ EOF;
$table = $schema->getDatabase('test1'... | [Tests] fixed wrong method call in TableTest test suite. |
diff --git a/test/unit/test_identity_map_middleware.rb b/test/unit/test_identity_map_middleware.rb
index <HASH>..<HASH> 100644
--- a/test/unit/test_identity_map_middleware.rb
+++ b/test/unit/test_identity_map_middleware.rb
@@ -8,7 +8,7 @@ class IdentityMapMiddlewareTest < Test::Unit::TestCase
@app ||= Rack::Builde... | Fix middleware test on Ruby <I>
Rack's MockResponse calls #each on the body, which is not defined on String in Ruby <I> |
diff --git a/src/scaladoc/scala/tools/nsc/doc/html/resource/lib/template.js b/src/scaladoc/scala/tools/nsc/doc/html/resource/lib/template.js
index <HASH>..<HASH> 100644
--- a/src/scaladoc/scala/tools/nsc/doc/html/resource/lib/template.js
+++ b/src/scaladoc/scala/tools/nsc/doc/html/resource/lib/template.js
@@ -259,7 +25... | Toggle comment if no text is selected
fixes scala/scala-lang/issues/<I> |
diff --git a/lib/modules/apostrophe-versions/lib/routes.js b/lib/modules/apostrophe-versions/lib/routes.js
index <HASH>..<HASH> 100644
--- a/lib/modules/apostrophe-versions/lib/routes.js
+++ b/lib/modules/apostrophe-versions/lib/routes.js
@@ -8,7 +8,7 @@ module.exports = function(self, options) {
var versions;
... | apostrophe-versions doc cursor includes 'unpublished' docs |
diff --git a/model/consoleState.js b/model/consoleState.js
index <HASH>..<HASH> 100644
--- a/model/consoleState.js
+++ b/model/consoleState.js
@@ -174,13 +174,15 @@ exports.ConsoleState = BaseModel.extend({
}
// Update FPS.
- var fps = 1000 / (this._tickSum / this._maxTicks);
- fps *= ... | don't add to fps history if heartbeat hasn't started |
diff --git a/consul/pool.go b/consul/pool.go
index <HASH>..<HASH> 100644
--- a/consul/pool.go
+++ b/consul/pool.go
@@ -215,7 +215,7 @@ func (p *ConnPool) acquire(dc string, addr net.Addr, version int) (*Conn, error)
var wait chan struct{}
var ok bool
if wait, ok = p.limiter[addr.String()]; !ok {
- wait = make(ch... | Changes to an unbuffered channel, since we just close it. |
diff --git a/app/models/effective/datatable.rb b/app/models/effective/datatable.rb
index <HASH>..<HASH> 100644
--- a/app/models/effective/datatable.rb
+++ b/app/models/effective/datatable.rb
@@ -315,8 +315,7 @@ module Effective
cols[name][:width] ||= nil
cols[name][:sortable] = true if cols[name][:sor... | Add “col-name” as a td class as well. Version <I> |
diff --git a/src/file/NativeFileSystem.js b/src/file/NativeFileSystem.js
index <HASH>..<HASH> 100644
--- a/src/file/NativeFileSystem.js
+++ b/src/file/NativeFileSystem.js
@@ -952,7 +952,7 @@ define(function (require, exports, module) {
if (brackets.fs.isNetworkDrive) {
brackets.fs.isNetw... | Check errors before adjusting timeout. |
diff --git a/builtin/providers/aws/resource_aws_volume_attachment.go b/builtin/providers/aws/resource_aws_volume_attachment.go
index <HASH>..<HASH> 100644
--- a/builtin/providers/aws/resource_aws_volume_attachment.go
+++ b/builtin/providers/aws/resource_aws_volume_attachment.go
@@ -77,6 +77,25 @@ func resourceAwsVolume... | Check instance is running before trying to attach (#<I>)
This covers the scenario of an instance created by a spot request. Using
Terraform we only know the spot request is fulfilled but the instance can
still be pending which causes the attachment to fail. |
diff --git a/source/application/tasks/build-bundles/index.js b/source/application/tasks/build-bundles/index.js
index <HASH>..<HASH> 100644
--- a/source/application/tasks/build-bundles/index.js
+++ b/source/application/tasks/build-bundles/index.js
@@ -57,11 +57,17 @@ export default async (application, settings) => {
}... | fix: apply environment config to bundles properly
* environment config was merged into transforms
* environment config now is merged with whole pattern config
<URL> |
diff --git a/actionpack/lib/action_dispatch/http/request.rb b/actionpack/lib/action_dispatch/http/request.rb
index <HASH>..<HASH> 100644
--- a/actionpack/lib/action_dispatch/http/request.rb
+++ b/actionpack/lib/action_dispatch/http/request.rb
@@ -295,6 +295,8 @@ module ActionDispatch
end
end
+ # return... | Documentation for ActionDispatch::Request form_data? method [ci skip] |
diff --git a/src/Json.php b/src/Json.php
index <HASH>..<HASH> 100644
--- a/src/Json.php
+++ b/src/Json.php
@@ -4,6 +4,7 @@ declare(strict_types = 1);
namespace Innmind\Json;
use Innmind\Json\Exception\{
+ Exception,
MaximumDepthExceeded,
StateMismatch,
CharacterControlError,
@@ -24,6 +25,8 @@ fina... | Document exceptions thrown by public methods |
diff --git a/railties/lib/rails/generators/rails/app/app_generator.rb b/railties/lib/rails/generators/rails/app/app_generator.rb
index <HASH>..<HASH> 100644
--- a/railties/lib/rails/generators/rails/app/app_generator.rb
+++ b/railties/lib/rails/generators/rails/app/app_generator.rb
@@ -313,7 +313,7 @@ module Rails
... | no need to dup, argv is never mutated |
diff --git a/ghost/members-api/index.js b/ghost/members-api/index.js
index <HASH>..<HASH> 100644
--- a/ghost/members-api/index.js
+++ b/ghost/members-api/index.js
@@ -96,8 +96,7 @@ module.exports = function MembersApi({
async function getMemberDataFromMagicLinkToken(token) {
const email = await magicLin... | Added name from magic link token to member creation
refs <URL> |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -2,7 +2,7 @@ from setuptools import setup
setup(
name='Highton',
- version='1.2.6',
+ version='1.2.7',
license='Apache License 2.0',
description='A Python library for Highrise',
long_description='A... | Version Push and Upload to PyPi |
diff --git a/src/Zizaco/Mongolid/Model.php b/src/Zizaco/Mongolid/Model.php
index <HASH>..<HASH> 100644
--- a/src/Zizaco/Mongolid/Model.php
+++ b/src/Zizaco/Mongolid/Model.php
@@ -656,13 +656,13 @@ class Model
// will be returned from cache =)
return static::$cacheComponent->remember(
... | Fix error with MongoDB <I> |
diff --git a/src/utils/save-cordova-xml.js b/src/utils/save-cordova-xml.js
index <HASH>..<HASH> 100644
--- a/src/utils/save-cordova-xml.js
+++ b/src/utils/save-cordova-xml.js
@@ -15,6 +15,9 @@ const parseXML = function(xmlPath) {
return new RSVP.Promise((resolve, reject) => {
const contents = fs.readFileSync(xm... | fix(save-cordova-xml): Update test to guard against config.xml being empty |
diff --git a/timewave/stochasticprocess.py b/timewave/stochasticprocess.py
index <HASH>..<HASH> 100755
--- a/timewave/stochasticprocess.py
+++ b/timewave/stochasticprocess.py
@@ -42,6 +42,25 @@ class StochasticProcess(object):
"""
return 0.0
+ def mean(self, t):
+ """ expected value of tim... | adding mean and variance properties to StochasticProcess |
diff --git a/src/org/javasimon/SimonFactory.java b/src/org/javasimon/SimonFactory.java
index <HASH>..<HASH> 100644
--- a/src/org/javasimon/SimonFactory.java
+++ b/src/org/javasimon/SimonFactory.java
@@ -149,7 +149,7 @@ public final class SimonFactory {
if (simon == null) {
simon = newSimon(name, simonClass);
... | Fixed enable/disable state after replacing unknown simon with a concrete one. |
diff --git a/js/allcoin.js b/js/allcoin.js
index <HASH>..<HASH> 100644
--- a/js/allcoin.js
+++ b/js/allcoin.js
@@ -27,6 +27,11 @@ module.exports = class allcoin extends okcoinusd {
'doc': 'https://www.allcoin.com/api_market/market',
'referral': 'https://www.allcoin.com',
}... | [Allcoin] Set Status to Shutdown |
diff --git a/mythril/analysis/modules/multiple_sends.py b/mythril/analysis/modules/multiple_sends.py
index <HASH>..<HASH> 100644
--- a/mythril/analysis/modules/multiple_sends.py
+++ b/mythril/analysis/modules/multiple_sends.py
@@ -1,4 +1,5 @@
from mythril.analysis.report import Issue
+from mythril.laser.ethereum.cfg i... | Don't explore nodes that aren't in the same transaction |
diff --git a/compare-comply/src/main/java/com/ibm/watson/compare_comply/v1/CompareComply.java b/compare-comply/src/main/java/com/ibm/watson/compare_comply/v1/CompareComply.java
index <HASH>..<HASH> 100644
--- a/compare-comply/src/main/java/com/ibm/watson/compare_comply/v1/CompareComply.java
+++ b/compare-comply/src/mai... | refactor(Compare and Comply): Add newest generator output |
diff --git a/spinoff/util/microprocess.py b/spinoff/util/microprocess.py
index <HASH>..<HASH> 100644
--- a/spinoff/util/microprocess.py
+++ b/spinoff/util/microprocess.py
@@ -75,7 +75,7 @@ class MicroProcess(object):
@self.d.addBoth
def finally_(result):
d = self._on_complete()
- ... | Avoid swallowing exceptions in microprocesses |
diff --git a/lib/graphql/subscriptions/action_cable_subscriptions.rb b/lib/graphql/subscriptions/action_cable_subscriptions.rb
index <HASH>..<HASH> 100644
--- a/lib/graphql/subscriptions/action_cable_subscriptions.rb
+++ b/lib/graphql/subscriptions/action_cable_subscriptions.rb
@@ -46,7 +46,7 @@ module GraphQL
# ... | Fix ActionCableSubscriptions channel example
Simple typo that leads to memory leaks! |
diff --git a/packages/address-edit/index.js b/packages/address-edit/index.js
index <HASH>..<HASH> 100644
--- a/packages/address-edit/index.js
+++ b/packages/address-edit/index.js
@@ -211,6 +211,13 @@ export default sfc({
setAddressDetail(value) {
this.data.addressDetail = value;
+ },
+
+ onDetailBlu... | [bugfix] AddressEdit: select search not work in vue <I>+ (#<I>) |
diff --git a/rejected/common.py b/rejected/common.py
index <HASH>..<HASH> 100644
--- a/rejected/common.py
+++ b/rejected/common.py
@@ -8,7 +8,15 @@ __since__ = '2011-07-22'
def get_consumer_config(config):
- return config.get('Consumers') or config.get('Bindings')
+ config = config.get('Consumers') or config... | Squash legacy consumers YAML section into the main consumer config section |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -22,7 +22,6 @@ params = dict(
url="https://github.com/jaraco/" + name,
packages=setuptools.find_packages(),
include_package_data=True,
- namespace_packages=name.split('.')[:-1],
install_requires=[
'requests',
'si... | Also need to remove the namespace packages declaration |
diff --git a/openquake/calculators/disaggregation.py b/openquake/calculators/disaggregation.py
index <HASH>..<HASH> 100644
--- a/openquake/calculators/disaggregation.py
+++ b/openquake/calculators/disaggregation.py
@@ -279,6 +279,7 @@ producing too small PoEs.'''
for s in self.sitecol.sids:
iml2 =... | Better logging for disaggregation [skip CI]
Former-commit-id: d<I>bfcd4ee<I>e<I>bf<I>e5f<I>a<I>ab<I> |
diff --git a/Lib/ufo2ft/filters/cubicToQuadratic.py b/Lib/ufo2ft/filters/cubicToQuadratic.py
index <HASH>..<HASH> 100644
--- a/Lib/ufo2ft/filters/cubicToQuadratic.py
+++ b/Lib/ufo2ft/filters/cubicToQuadratic.py
@@ -29,7 +29,7 @@ class CubicToQuadraticFilter(BaseFilter):
logger.info('New spline lengths: %s'... | [cubicToQuadratic] minor
forgot to remove this in <I> |
diff --git a/liquibase-core/src/main/java/liquibase/database/core/PostgresDatabase.java b/liquibase-core/src/main/java/liquibase/database/core/PostgresDatabase.java
index <HASH>..<HASH> 100644
--- a/liquibase-core/src/main/java/liquibase/database/core/PostgresDatabase.java
+++ b/liquibase-core/src/main/java/liquibase/d... | Check connection type to work better with tests with mock connection |
diff --git a/kitnirc/client.py b/kitnirc/client.py
index <HASH>..<HASH> 100644
--- a/kitnirc/client.py
+++ b/kitnirc/client.py
@@ -401,7 +401,7 @@ class Client(object):
def part(self, target, message=None):
"""Part a channel."""
- if target not in self.server.channels:
+ if str(target) not... | String-ify before checking .channels membership
This allows passing in `Channel` objects to work properly. |
diff --git a/angr/storage/memory_mixins/address_concretization_mixin.py b/angr/storage/memory_mixins/address_concretization_mixin.py
index <HASH>..<HASH> 100644
--- a/angr/storage/memory_mixins/address_concretization_mixin.py
+++ b/angr/storage/memory_mixins/address_concretization_mixin.py
@@ -340,7 +340,7 @@ class Add... | Remove a check that is no longer necessary. |
diff --git a/test/beetle/message_test.rb b/test/beetle/message_test.rb
index <HASH>..<HASH> 100644
--- a/test/beetle/message_test.rb
+++ b/test/beetle/message_test.rb
@@ -466,5 +466,17 @@ module Beetle
assert !@r.exists(message.mutex_key)
end
end
+
+ class RedisAssumptionsTest < Test::Unit::TestCase
+ ... | verify a basic assumotion on deleting redis keys |
diff --git a/lib/Cake/Test/Case/Utility/ValidationTest.php b/lib/Cake/Test/Case/Utility/ValidationTest.php
index <HASH>..<HASH> 100644
--- a/lib/Cake/Test/Case/Utility/ValidationTest.php
+++ b/lib/Cake/Test/Case/Utility/ValidationTest.php
@@ -1965,7 +1965,6 @@ class ValidationTest extends CakeTestCase {
$this->asser... | removed duplicate test case
```$this->assertFalse(Validation::money('text'));```
is now tested only once |
diff --git a/test/loadings.js b/test/loadings.js
index <HASH>..<HASH> 100644
--- a/test/loadings.js
+++ b/test/loadings.js
@@ -10,8 +10,6 @@ dom.settings.timeout = 900000;
dom.settings.stallTimeout = 200; // the value used in the tests
dom.settings.console = true;
dom.settings.pool.max = 8;
-require('http').globalAg... | maxSockets is now infinity by default |
diff --git a/tests/integration/modules/grains.py b/tests/integration/modules/grains.py
index <HASH>..<HASH> 100644
--- a/tests/integration/modules/grains.py
+++ b/tests/integration/modules/grains.py
@@ -142,9 +142,8 @@ class GrainsAppendTestCase(integration.ModuleCase):
GRAIN_VAL = 'my-grain-val'
def tearDo... | Attempt to fix failing grains tests in <I>
The tearDown appears to only be removing the grain if it matches a
specific value. This may be leading to the grain value not being blank
at the time the next test is run.
Instead of only deleting the grain if it matches a specific value,
instead delete all items from that g... |
diff --git a/molgenis-dataexplorer/src/main/java/org/molgenis/dataexplorer/controller/DataExplorerController.java b/molgenis-dataexplorer/src/main/java/org/molgenis/dataexplorer/controller/DataExplorerController.java
index <HASH>..<HASH> 100644
--- a/molgenis-dataexplorer/src/main/java/org/molgenis/dataexplorer/control... | Fix #<I>: Fileingest does not show "target" anymore |
diff --git a/tools/otci/otci/otci.py b/tools/otci/otci/otci.py
index <HASH>..<HASH> 100644
--- a/tools/otci/otci/otci.py
+++ b/tools/otci/otci/otci.py
@@ -75,7 +75,7 @@ class OTCI(object):
while duration > 0:
output = self.__otcmd.wait(1)
- if match_line(expect_line, outpu... | [otci] fix OTCI.wait arg order (#<I>)
In wait, match_line is called with the arguments flipped. The first
argument is supposed to the be the line being checked, and the second
is supposed to be the pattern to match. The reason this still works
for strings is because output is treated as a list of lines to expect,
... |
diff --git a/cherrypy/_cpengine.py b/cherrypy/_cpengine.py
index <HASH>..<HASH> 100644
--- a/cherrypy/_cpengine.py
+++ b/cherrypy/_cpengine.py
@@ -59,6 +59,8 @@ class Engine(object):
self.mtimes = {}
self.reload_files = []
+
+ self.monitor_thread = None
def start(se... | Engine.monitor_thread defaults to None now.
This is in case an Exception is raised in an on_start_engine function and the code to start/stop the engine is wrapped in a try/finally, where Engine.stop is called in finally. |
diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -37,5 +37,5 @@ module.exports.setDefaultFormat = function(format) {
* Add filter to nunjucks environment
*/
module.exports.install = function(env, customName) {
- env.addFilter(customName || 'date', getFilter());
+ ... | Module: Modified getFitler functionality.
- removed extra parenthesis otherwise filter does not work when added to nunjucks. |
diff --git a/pyemu/mat/mat_handler.py b/pyemu/mat/mat_handler.py
index <HASH>..<HASH> 100644
--- a/pyemu/mat/mat_handler.py
+++ b/pyemu/mat/mat_handler.py
@@ -1913,7 +1913,7 @@ class Cov(Matrix):
def identity_like(cls,other):
assert other.shape[0] == other.shape[1]
x = np.identity(other.shape[0])... | bug fix in Cov.identity_like(): needs to be isdiagonal=False |
diff --git a/spotify/models/user.py b/spotify/models/user.py
index <HASH>..<HASH> 100644
--- a/spotify/models/user.py
+++ b/spotify/models/user.py
@@ -71,11 +71,10 @@ class User(URIBase, AsyncIterable): # pylint: disable=too-many-instance-attribu
self._refresh_task = None
self.__client = self.client ... | bugfix set http and library User attrs to None when http is disabled |
diff --git a/engine/graph/api/src/main/java/org/jboss/windup/graph/dao/JavaClassDao.java b/engine/graph/api/src/main/java/org/jboss/windup/graph/dao/JavaClassDao.java
index <HASH>..<HASH> 100644
--- a/engine/graph/api/src/main/java/org/jboss/windup/graph/dao/JavaClassDao.java
+++ b/engine/graph/api/src/main/java/org/jb... | Removed null and use the no-args method |
diff --git a/metrics-core/src/test/java/com/yammer/metrics/core/tests/HistogramTest.java b/metrics-core/src/test/java/com/yammer/metrics/core/tests/HistogramTest.java
index <HASH>..<HASH> 100644
--- a/metrics-core/src/test/java/com/yammer/metrics/core/tests/HistogramTest.java
+++ b/metrics-core/src/test/java/com/yammer... | Fixed incorrect assertion label in HistogramTest |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.