diff
stringlengths
65
26.7k
message
stringlengths
7
9.92k
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -352,6 +352,7 @@ SSDP.prototype.stop = function () { this.advertise(false) this.advertise(false) this.sock.close() + this.sock = null; }
Null socket when stopping the service. Fixes #8.
diff --git a/fritzconnection/fritztools.py b/fritzconnection/fritztools.py index <HASH>..<HASH> 100644 --- a/fritzconnection/fritztools.py +++ b/fritzconnection/fritztools.py @@ -1,6 +1,9 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- +from __future__ import division + + """ helper functions.
fixed division error with python2
diff --git a/test/backend-test.js b/test/backend-test.js index <HASH>..<HASH> 100644 --- a/test/backend-test.js +++ b/test/backend-test.js @@ -157,12 +157,12 @@ suite.addBatch({ suite.addBatch({ 'connect client to backend socket': { topic: function () { - sock = socket_client('http://127.0.0.1:' + testpor...
for some reason the test changes were not coming through
diff --git a/zounds/__init__.py b/zounds/__init__.py index <HASH>..<HASH> 100644 --- a/zounds/__init__.py +++ b/zounds/__init__.py @@ -47,7 +47,7 @@ from index import SearchResults, HammingDb, HammingIndex from basic import \ Slice, Sum, Max, Pooled, process_dir, stft, audio_graph, with_onsets, \ - resampled...
Export the frequency adaptive convenience function from the top-level module
diff --git a/src/sos/hosts.py b/src/sos/hosts.py index <HASH>..<HASH> 100755 --- a/src/sos/hosts.py +++ b/src/sos/hosts.py @@ -1030,9 +1030,16 @@ class Host: return self._get_local_host() if not isinstance(alias, str): raise ValueError(f'A string is expected for host {alias}') - ...
Allow the use of hostname or IP address as hosts (without task engine and other information)
diff --git a/closure/goog/base.js b/closure/goog/base.js index <HASH>..<HASH> 100644 --- a/closure/goog/base.js +++ b/closure/goog/base.js @@ -1800,6 +1800,7 @@ goog.mixin = function(target, source) { /** * @return {number} An integer value representing the number of milliseconds * between midnight, January 1,...
Deprecate goog.now. RELNOTES: goog.now is now deprecated in favor of Date.now ------------- Created by MOE: <URL>
diff --git a/src/Console/ModelsCommand.php b/src/Console/ModelsCommand.php index <HASH>..<HASH> 100644 --- a/src/Console/ModelsCommand.php +++ b/src/Console/ModelsCommand.php @@ -175,7 +175,8 @@ class ModelsCommand extends Command // handle abstract classes, interfaces, ... $re...
ignore intermediate table models (#<I>)
diff --git a/framework/zii/widgets/grid/CButtonColumn.php b/framework/zii/widgets/grid/CButtonColumn.php index <HASH>..<HASH> 100644 --- a/framework/zii/widgets/grid/CButtonColumn.php +++ b/framework/zii/widgets/grid/CButtonColumn.php @@ -149,10 +149,13 @@ class CButtonColumn extends CGridColumn * 'visible'=>'.....
Added doc clarification for #<I> #<I>
diff --git a/spec/provider/s3_spec.rb b/spec/provider/s3_spec.rb index <HASH>..<HASH> 100644 --- a/spec/provider/s3_spec.rb +++ b/spec/provider/s3_spec.rb @@ -134,6 +134,13 @@ describe DPL::Provider::S3 do provider.push_app end + example "Sets SSE" do + provider.options.update(:server_side_encrypt...
Add rspec testing. Patterned after storage_class work.
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -1,7 +1,7 @@ // adapted from https://github.com/grawity/code/blob/master/lib/python/nullroute/irc.py#L24-L53 module.exports = function parsePrefix(prefix) { - if (prefix.length === 0) { + if (!prefix || prefix.length...
Check is prefix does not exist (fixes #1)
diff --git a/src/graphql_relay/connection/connectiontypes.py b/src/graphql_relay/connection/connectiontypes.py index <HASH>..<HASH> 100644 --- a/src/graphql_relay/connection/connectiontypes.py +++ b/src/graphql_relay/connection/connectiontypes.py @@ -20,10 +20,10 @@ class PageInfoType(Protocol): def endCursor(self...
hasPrevious/NextPage should not be optional (#<I>) Replicates graphql/graphql-relay-js@<I>a<I>ac<I>c3b<I>a<I>ec<I>cc<I>dee<I>e5bb5
diff --git a/scanpy/api/pl.py b/scanpy/api/pl.py index <HASH>..<HASH> 100644 --- a/scanpy/api/pl.py +++ b/scanpy/api/pl.py @@ -1,4 +1,4 @@ -from ..plotting.anndata import scatter, violin, ranking, clustermap, heatmap +from ..plotting.anndata import scatter, violin, ranking, clustermap, heatmap, dotplot from ..plotti...
added dotplot to api
diff --git a/etcd/v3/kv_etcd.go b/etcd/v3/kv_etcd.go index <HASH>..<HASH> 100644 --- a/etcd/v3/kv_etcd.go +++ b/etcd/v3/kv_etcd.go @@ -77,7 +77,7 @@ func (w *watchQ) start() { // Indicate the caller that watch has been canceled _ = w.cb(key, w.opaque, nil, kvdb.ErrWatchStopped) // Indicate that watch is ret...
Return on watch close break does not work since there is a double loop.
diff --git a/lib/dialects/sqlite3/runner.js b/lib/dialects/sqlite3/runner.js index <HASH>..<HASH> 100644 --- a/lib/dialects/sqlite3/runner.js +++ b/lib/dialects/sqlite3/runner.js @@ -40,17 +40,17 @@ Runner_SQLite3.prototype._query = Promise.method(function(obj) { }); }); -// Grab a connection, run the query via t...
different stream implementation for the sqlite3 runner
diff --git a/test/test-load-filters-on-demand.js b/test/test-load-filters-on-demand.js index <HASH>..<HASH> 100644 --- a/test/test-load-filters-on-demand.js +++ b/test/test-load-filters-on-demand.js @@ -25,7 +25,7 @@ function buildChecklist(tf, colIdx){ module('Sanity checks'); -test('Selet type filters exist', fu...
Fixed typo in test load filters on demand
diff --git a/spacy/language.py b/spacy/language.py index <HASH>..<HASH> 100644 --- a/spacy/language.py +++ b/spacy/language.py @@ -350,6 +350,7 @@ class Language(object): 'ner': self.entity.cfg if self.entity else {}, } + path = util.ensure_path(path) self.setup_directory(path, *...
Ensure path in save_to_directory
diff --git a/includes/functions.php b/includes/functions.php index <HASH>..<HASH> 100644 --- a/includes/functions.php +++ b/includes/functions.php @@ -1368,7 +1368,7 @@ function yourls_check_IP_flood( $ip = '' ) { if( ( $now - $then ) <= YOURLS_FLOOD_DELAY_SECONDS ) { // Flood! yourls_do_action( 'ip_flood', ...
use correct http status code for rate limiting
diff --git a/lib/page.js b/lib/page.js index <HASH>..<HASH> 100644 --- a/lib/page.js +++ b/lib/page.js @@ -89,16 +89,16 @@ Page.prototype.event = function(name){ }; /** - * Convert this Page to a Track facade with `event`. + * Convert this Page to a Track facade with `name`. * - * @param {String} event + * @param...
change .track() to accept name instead of event
diff --git a/Bridges/HttpKernel.php b/Bridges/HttpKernel.php index <HASH>..<HASH> 100644 --- a/Bridges/HttpKernel.php +++ b/Bridges/HttpKernel.php @@ -159,7 +159,13 @@ class HttpKernel implements BridgeInterface $this->tempFiles[] = $tmpname; if (UPLOAD_ERR_NO_FILE == $file->...
Fix empty file inputs in Symfony <I> (#<I>) Symfony <I> fails on uploaded files that are null: they must be array or UploadedFile. UploadedFile can only be used for actual files. Solution is to pass the uploaded file as array instead. The array cannot be passed for actual uploaded files because Symfony will not ...
diff --git a/supervisor/iptables.go b/supervisor/iptables.go index <HASH>..<HASH> 100644 --- a/supervisor/iptables.go +++ b/supervisor/iptables.go @@ -355,7 +355,7 @@ func (s *iptablesSupervisor) chainRules(appChain string, netChain string, ip str appPacketIPTableContext, appPacketIPTableSection, "-s", ip, ...
FIXED: No need for docker0 reference
diff --git a/eth/vm/forks/london/headers.py b/eth/vm/forks/london/headers.py index <HASH>..<HASH> 100644 --- a/eth/vm/forks/london/headers.py +++ b/eth/vm/forks/london/headers.py @@ -22,9 +22,12 @@ from eth.abc import ( from eth.constants import GENESIS_GAS_LIMIT from eth.rlp.headers import BlockHeader from eth.vm.f...
eip-<I>: delay difficulty bomb further to ~ Dec <I>
diff --git a/pylint_django/transforms/transforms/django_views_generic_base.py b/pylint_django/transforms/transforms/django_views_generic_base.py index <HASH>..<HASH> 100644 --- a/pylint_django/transforms/transforms/django_views_generic_base.py +++ b/pylint_django/transforms/transforms/django_views_generic_base.py @@ -1...
Fix view.args and view.kwargs types Args should be a tuple and kwargs a dict so that Pylint gets the types correct.
diff --git a/bakery/tasks.py b/bakery/tasks.py index <HASH>..<HASH> 100644 --- a/bakery/tasks.py +++ b/bakery/tasks.py @@ -507,7 +507,7 @@ def fontaine_process(project, build, log): os.chdir(_out) files = glob.glob('*.ttf') for file in files: - cmd = "python pyfontaine --text '%s' >> 'sources/font...
pyfontaine is a standalone script
diff --git a/resource_aws_cloudtrail.go b/resource_aws_cloudtrail.go index <HASH>..<HASH> 100644 --- a/resource_aws_cloudtrail.go +++ b/resource_aws_cloudtrail.go @@ -200,7 +200,7 @@ func cloudTrailGetLoggingStatus(conn *cloudtrail.CloudTrail, id *string) (bool, } resp, err := conn.GetTrailStatus(GetTrailStatusOpt...
Mistake in type refactor in cloudTrailGetLoggingStatus When adjusting the types to prevent casting, I didn't change the error message to handle the pointer change. "go tool vet" caught this.
diff --git a/lib/Thelia/ImportExport/Export/Type/ProductSEOExport.php b/lib/Thelia/ImportExport/Export/Type/ProductSEOExport.php index <HASH>..<HASH> 100644 --- a/lib/Thelia/ImportExport/Export/Type/ProductSEOExport.php +++ b/lib/Thelia/ImportExport/Export/Type/ProductSEOExport.php @@ -28,6 +28,7 @@ class ProductSEOExp...
adding IDs in product SEO export (#<I>)
diff --git a/jodd-db/src/main/java/jodd/db/pool/CoreConnectionPool.java b/jodd-db/src/main/java/jodd/db/pool/CoreConnectionPool.java index <HASH>..<HASH> 100644 --- a/jodd-db/src/main/java/jodd/db/pool/CoreConnectionPool.java +++ b/jodd-db/src/main/java/jodd/db/pool/CoreConnectionPool.java @@ -381,6 +381,9 @@ public cl...
Fixing minor issue with core connection pool
diff --git a/rest-api/src/test/java/org/jboss/pnc/client/ClientTest.java b/rest-api/src/test/java/org/jboss/pnc/client/ClientTest.java index <HASH>..<HASH> 100644 --- a/rest-api/src/test/java/org/jboss/pnc/client/ClientTest.java +++ b/rest-api/src/test/java/org/jboss/pnc/client/ClientTest.java @@ -30,6 +30,7 @@ import ...
Fix client test by adding a content-type
diff --git a/djangocms_text_ckeditor/fields.py b/djangocms_text_ckeditor/fields.py index <HASH>..<HASH> 100644 --- a/djangocms_text_ckeditor/fields.py +++ b/djangocms_text_ckeditor/fields.py @@ -2,6 +2,11 @@ from django.db import models from django.contrib.admin import widgets as admin_widgets from djangocms_text_cke...
added south introspection rules to the field
diff --git a/bika/lims/browser/dashboard/dashboard.py b/bika/lims/browser/dashboard/dashboard.py index <HASH>..<HASH> 100644 --- a/bika/lims/browser/dashboard/dashboard.py +++ b/bika/lims/browser/dashboard/dashboard.py @@ -150,7 +150,7 @@ class DashboardView(BrowserView): if filtering_allowed: que...
Remove to_be_verified state from pending analyses query...
diff --git a/src/Console/Commands/CrudGeneratorCommand.php b/src/Console/Commands/CrudGeneratorCommand.php index <HASH>..<HASH> 100644 --- a/src/Console/Commands/CrudGeneratorCommand.php +++ b/src/Console/Commands/CrudGeneratorCommand.php @@ -56,7 +56,7 @@ class CrudGeneratorCommand extends Command $this->...
Fix preventing creating crud for all tables with no prefix
diff --git a/lib/dill/matchers.rb b/lib/dill/matchers.rb index <HASH>..<HASH> 100644 --- a/lib/dill/matchers.rb +++ b/lib/dill/matchers.rb @@ -1,7 +1,11 @@ require 'rspec/matchers' RSpec::Matchers.define :see do |widget_name, *args| - match do |role| - role.see?(widget_name, *args) + match do |role| + begi...
[matchers] Let #see wait.
diff --git a/lib/conf/cli.js b/lib/conf/cli.js index <HASH>..<HASH> 100755 --- a/lib/conf/cli.js +++ b/lib/conf/cli.js @@ -191,8 +191,10 @@ var show_gui_and_exit = function () { else if (os_name == 'linux') gui_path = gui_path + '.py'; else { - args = [gui_path.replace('prey-config', 'PreyConfig.a...
Use OSX's open command to fire up PreyConfig.
diff --git a/oauthlib/oauth1/rfc5849/__init__.py b/oauthlib/oauth1/rfc5849/__init__.py index <HASH>..<HASH> 100644 --- a/oauthlib/oauth1/rfc5849/__init__.py +++ b/oauthlib/oauth1/rfc5849/__init__.py @@ -270,7 +270,7 @@ class Server(object): verifier=verifier) client_signature = oauth_client....
Pass through the request method to the client when generating signature.
diff --git a/src/nlu.js b/src/nlu.js index <HASH>..<HASH> 100644 --- a/src/nlu.js +++ b/src/nlu.js @@ -133,7 +133,7 @@ class Nlu { } const qnaResult = await this.computeWithQna(sentence); logger.debug('compute: qnaResult', qnaResult); - return qnaResult.intents.length > 0 ? qnaResult : { inten...
Fix empty entities when qna after
diff --git a/mmtf/api/mmtf_writer.py b/mmtf/api/mmtf_writer.py index <HASH>..<HASH> 100644 --- a/mmtf/api/mmtf_writer.py +++ b/mmtf/api/mmtf_writer.py @@ -209,7 +209,7 @@ class MMTFEncoder(TemplateEncoder): def encode_data(self): """Encode the data back into a dict.""" output_data = {} - o...
Fixed a bug in the writing of MMTF files
diff --git a/src/main/java/org/minimalj/security/Authorization.java b/src/main/java/org/minimalj/security/Authorization.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/minimalj/security/Authorization.java +++ b/src/main/java/org/minimalj/security/Authorization.java @@ -20,15 +20,9 @@ public abstract class Auth...
Authorization: active flag is not needed anymore
diff --git a/websocketproxy.go b/websocketproxy.go index <HASH>..<HASH> 100644 --- a/websocketproxy.go +++ b/websocketproxy.go @@ -56,15 +56,18 @@ func NewProxy(target *url.URL) *WebsocketProxy { return &WebsocketProxy{Backend: backend} } -func (w *WebsocketProxy) CloseNotify() { -} - // ServeHTTP implements the ...
websocketproxy: also test the nilness of backend function
diff --git a/src/ChrisKonnertz/OpenGraph/OpenGraph.php b/src/ChrisKonnertz/OpenGraph/OpenGraph.php index <HASH>..<HASH> 100644 --- a/src/ChrisKonnertz/OpenGraph/OpenGraph.php +++ b/src/ChrisKonnertz/OpenGraph/OpenGraph.php @@ -173,7 +173,7 @@ class OpenGraph * @param bool $prefixed Add the "og"-prefix? ...
Fixed: attributesstring to attributes I have changed function names due to this error, <URL>
diff --git a/Gruntfile.js b/Gruntfile.js index <HASH>..<HASH> 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -442,7 +442,7 @@ module.exports = function(grunt) { grunt.registerTask('docs', ['http','generate-docs', 'yuidoc']); grunt.registerTask('github-pages', ['copy:github-pages', 'clean:github-pages']); grunt.r...
has this always been this way? test should be last
diff --git a/packages/rum/src/apm-base.js b/packages/rum/src/apm-base.js index <HASH>..<HASH> 100644 --- a/packages/rum/src/apm-base.js +++ b/packages/rum/src/apm-base.js @@ -23,8 +23,11 @@ * */ -import { getInstrumentationFlags } from '@elastic/apm-rum-core' -import { PAGE_LOAD, ERROR } from '@elastic/apm-rum-co...
chore(rum): merge duplicate import statementments in apm base (#<I>)
diff --git a/Connector/ZimbraConnector.php b/Connector/ZimbraConnector.php index <HASH>..<HASH> 100644 --- a/Connector/ZimbraConnector.php +++ b/Connector/ZimbraConnector.php @@ -776,7 +776,7 @@ class ZimbraConnector { $this->delegateAuth($account); - $response = $this->request('GetFolder', array...
GetTag and GetFolder should be GetTags and GetFolders
diff --git a/test/helpers/add-to-html-methods.js b/test/helpers/add-to-html-methods.js index <HASH>..<HASH> 100644 --- a/test/helpers/add-to-html-methods.js +++ b/test/helpers/add-to-html-methods.js @@ -23,7 +23,7 @@ Node.prototype.toHTML = function (leftAncestorInputPosition = ZERO_POINT, leftAn let changeEnd = !th...
Print text first for more intuitive tree HTML
diff --git a/allpairspy/allpairs.py b/allpairspy/allpairs.py index <HASH>..<HASH> 100644 --- a/allpairspy/allpairs.py +++ b/allpairspy/allpairs.py @@ -126,7 +126,7 @@ class AllPairs(object): while -1 < i < len(self.__working_item_array): if direction == 1: # move forward - ...
Change a public method to a private method that not called from outside
diff --git a/lib/mactag/builder.rb b/lib/mactag/builder.rb index <HASH>..<HASH> 100644 --- a/lib/mactag/builder.rb +++ b/lib/mactag/builder.rb @@ -37,7 +37,7 @@ module Mactag end if @builder.gems? - system "cd #{Rails.root} && #{Mactag::Config.binary} #{@builder.files.join(' ')}" + system ...
Added method that return builder.
diff --git a/demo/app.js b/demo/app.js index <HASH>..<HASH> 100644 --- a/demo/app.js +++ b/demo/app.js @@ -11,7 +11,6 @@ }; $scope.froalaAction = function(action){ - console.log('froalaAction', action); $scope.options.froala(action); }; diff --git a/src/angular-froala.js b/src/angular-froala.js index...
check that jQuery is loaded before initializing froala
diff --git a/hearthstone/cardxml.py b/hearthstone/cardxml.py index <HASH>..<HASH> 100644 --- a/hearthstone/cardxml.py +++ b/hearthstone/cardxml.py @@ -198,10 +198,18 @@ class CardXML(object): return bool(self.tags.get(GameTag.Collectible, False)) @property + def battlecry(self): + return bool(self.tags.get(Game...
cardxml: Implement battlecry, divine_shield and taunt properties
diff --git a/lib/mauth/client.rb b/lib/mauth/client.rb index <HASH>..<HASH> 100644 --- a/lib/mauth/client.rb +++ b/lib/mauth/client.rb @@ -144,8 +144,6 @@ module MAuth class ConfigurationError < StandardError; end MWS_TOKEN = 'MWS'.freeze - MWSV2_TOKEN = 'MWSV2'.freeze - AUTH_HEADER_DELIMITER = ';'.fr...
move constants into v2 file
diff --git a/manifest_test.go b/manifest_test.go index <HASH>..<HASH> 100644 --- a/manifest_test.go +++ b/manifest_test.go @@ -315,7 +315,7 @@ func expectedResourceList(root string, resources []dresource) ([]Resource, error absPath = "/" + absPath } uidStr := strconv.Itoa(r.uid) - gidStr := strconv.Itoa(r.ui...
Fix test fixture gid If uid == gid tests will pass, but fail if that is not the case.
diff --git a/app/initializers/setup-sanitizers.js b/app/initializers/setup-sanitizers.js index <HASH>..<HASH> 100644 --- a/app/initializers/setup-sanitizers.js +++ b/app/initializers/setup-sanitizers.js @@ -4,6 +4,11 @@ export default { name: 'ember-sanitize-setup-sanitizers', initialize: function(container) { ...
use correct container method for <I>
diff --git a/public/js/front/formhelper.js b/public/js/front/formhelper.js index <HASH>..<HASH> 100755 --- a/public/js/front/formhelper.js +++ b/public/js/front/formhelper.js @@ -243,18 +243,9 @@ Garp.apply(Garp.FormHelper, { changeYear: true }; // Look for data-attributes to customize config - /* - va...
Allow configuration of defaultDate from form
diff --git a/src/main/java/org/threeten/extra/chrono/PaxDate.java b/src/main/java/org/threeten/extra/chrono/PaxDate.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/threeten/extra/chrono/PaxDate.java +++ b/src/main/java/org/threeten/extra/chrono/PaxDate.java @@ -587,7 +587,7 @@ public final class PaxDate extend...
Add cast to protect from overflow.
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -14,14 +14,14 @@ var Key = require('./key'); var CachingWriter = {}; -CachingWriter.init = function(inputTrees, options) { +CachingWriter.init = function(inputTrees, _options) { this._lastKeys = []; this._shouldBeIg...
don't re-write argument vars
diff --git a/tofu/data/_mesh.py b/tofu/data/_mesh.py index <HASH>..<HASH> 100644 --- a/tofu/data/_mesh.py +++ b/tofu/data/_mesh.py @@ -527,7 +527,7 @@ class Mesh2DRect(DataCollection): operator=None, geometry=None, isotropic=None, - method=None, + algo=None, sparse=None...
[#<I>] method renamed algo (method can be used by scipy)
diff --git a/src/vs/workbench/contrib/webview/browser/pre/main.js b/src/vs/workbench/contrib/webview/browser/pre/main.js index <HASH>..<HASH> 100644 --- a/src/vs/workbench/contrib/webview/browser/pre/main.js +++ b/src/vs/workbench/contrib/webview/browser/pre/main.js @@ -994,13 +994,18 @@ onDomReady(() => { if (!targ...
Improving ux for search in webviews on web
diff --git a/lib/MtgDbClient/card.rb b/lib/MtgDbClient/card.rb index <HASH>..<HASH> 100644 --- a/lib/MtgDbClient/card.rb +++ b/lib/MtgDbClient/card.rb @@ -29,7 +29,7 @@ module MtgDbClient self.promo = response["promo"] self.rulings = response["rulings"].map{|r| Ruling.new(r)} self.formats = response["format...
handle possible null value at response["releasedAt"], see issue #1
diff --git a/app/controllers/devise/password_expired_controller.rb b/app/controllers/devise/password_expired_controller.rb index <HASH>..<HASH> 100644 --- a/app/controllers/devise/password_expired_controller.rb +++ b/app/controllers/devise/password_expired_controller.rb @@ -1,6 +1,6 @@ class Devise::PasswordExpiredCon...
change before_action to before_filter
diff --git a/google/storeutils/get.go b/google/storeutils/get.go index <HASH>..<HASH> 100644 --- a/google/storeutils/get.go +++ b/google/storeutils/get.go @@ -12,8 +12,12 @@ import ( // GetObject Gets a single object's bytes based on bucket and name parameters func GetObject(gc *storage.Client, bucket, name string)...
Add option to pass in context to getobject
diff --git a/test/test_post.rb b/test/test_post.rb index <HASH>..<HASH> 100644 --- a/test/test_post.rb +++ b/test/test_post.rb @@ -5,6 +5,8 @@ $LOAD_PATH.unshift(__dir__) require 'helper' describe 'Post' do + before { test_site.scan_files } + subject do filename = '2015-01-01-a-post.markdown' path = F...
Switch to calling read_fixture, rename the categories, and have the test site scan its files.
diff --git a/monero_serialize/xmrrpc.py b/monero_serialize/xmrrpc.py index <HASH>..<HASH> 100644 --- a/monero_serialize/xmrrpc.py +++ b/monero_serialize/xmrrpc.py @@ -2,6 +2,7 @@ # -*- coding: utf-8 -*- ''' XMR RPC serialization +WARNING: Not finished yet {json, binary} <-> portable_storage <-> object @@ -21,7 ...
xmrrpc: not finished yet warning
diff --git a/perceval/backends/puppet/puppetforge.py b/perceval/backends/puppet/puppetforge.py index <HASH>..<HASH> 100644 --- a/perceval/backends/puppet/puppetforge.py +++ b/perceval/backends/puppet/puppetforge.py @@ -349,7 +349,7 @@ class PuppetForgeCommand(BackendCommand): def setup_cmd_parser(cls): ""...
[backend] Change signature BackendCommandArgumentParser This code changes the signature of the class `BackendCommandArgumentParser`, which now accepts as first parameter the backend object instead its categories. This change is needed to simplify accessing other backend attributes, beyond the categories. Puppetforge ...
diff --git a/Module.php b/Module.php index <HASH>..<HASH> 100644 --- a/Module.php +++ b/Module.php @@ -2,16 +2,16 @@ namespace ZfcUserDoctrineORM; -use Zend\Module\Manager, - Zend\Module\Consumer\AutoloaderProvider, +use Zend\ModuleManager\ModuleManager, + Zend\ModuleManager\Feature\AutoloaderProviderInterfa...
Updated Module.php for zf2 b4 compliance.
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -21,14 +21,15 @@ function header (stream) { var m if(!(m = /\n/.exec(soFar))) return var meta = JSON.parse(soFar.substring(0, m.index)) - soFar = soFar.substring(m.index) + //+ 1 to get past the newline + ...
don\'t emit \'\' as data
diff --git a/src/main/java/net/kuujo/vertigo/context/WorkerContext.java b/src/main/java/net/kuujo/vertigo/context/WorkerContext.java index <HASH>..<HASH> 100644 --- a/src/main/java/net/kuujo/vertigo/context/WorkerContext.java +++ b/src/main/java/net/kuujo/vertigo/context/WorkerContext.java @@ -91,7 +91,10 @@ public cla...
Support empty WorkerContext instances for other language support.
diff --git a/bucketcache/__init__.py b/bucketcache/__init__.py index <HASH>..<HASH> 100644 --- a/bucketcache/__init__.py +++ b/bucketcache/__init__.py @@ -12,6 +12,6 @@ __all__ = (backends.__all__ + buckets.__all__ + config.__all__ + exceptions.__all__ + keymakers.__all__ + utilities.__all__) __author__ ...
Bumped version number to <I>
diff --git a/lib/features/popup-menu/PopupMenu.js b/lib/features/popup-menu/PopupMenu.js index <HASH>..<HASH> 100644 --- a/lib/features/popup-menu/PopupMenu.js +++ b/lib/features/popup-menu/PopupMenu.js @@ -308,7 +308,7 @@ PopupMenu.prototype._createEntries = function(entries, container) { self._createEntry(entry,...
refact(popup): prefix dropdown class names with popup- Related to CAM-<I>
diff --git a/Manager/InstallationManager.php b/Manager/InstallationManager.php index <HASH>..<HASH> 100644 --- a/Manager/InstallationManager.php +++ b/Manager/InstallationManager.php @@ -154,7 +154,7 @@ class InstallationManager $ds = DIRECTORY_SEPARATOR; $om = $this->container->get('doctrine.orm.enti...
[InstallationBundle] Update InstallationManager.php
diff --git a/test/e2e/cluster_size_autoscaling.go b/test/e2e/cluster_size_autoscaling.go index <HASH>..<HASH> 100644 --- a/test/e2e/cluster_size_autoscaling.go +++ b/test/e2e/cluster_size_autoscaling.go @@ -28,7 +28,7 @@ import ( ) const ( - scaleTimeout = 2 * time.Minute + scaleTimeout = 5 * time.Minute ) var ...
Increase cluster resize timeout in e2e tests from 2 min to 5 min
diff --git a/xclim/indices/_anuclim.py b/xclim/indices/_anuclim.py index <HASH>..<HASH> 100644 --- a/xclim/indices/_anuclim.py +++ b/xclim/indices/_anuclim.py @@ -486,11 +486,9 @@ def prcptot(pr: xarray.DataArray, input_freq: str = None, freq: str = "YS"): Parameters ---------- pr : xarray.DataArray - ...
Update xclim/indices/_anuclim.py
diff --git a/src/Factory/Invoice.php b/src/Factory/Invoice.php index <HASH>..<HASH> 100644 --- a/src/Factory/Invoice.php +++ b/src/Factory/Invoice.php @@ -506,6 +506,9 @@ class Invoice } elseif ($mKey instanceof \stdClass) { $this->oCallbackData = new CallbackData($mKey); } else { + ...
Prevents phpe rror when passing in key/values to invoice and invoice item factories setCallbackData methods
diff --git a/java/client/src/org/openqa/selenium/support/ui/FluentWait.java b/java/client/src/org/openqa/selenium/support/ui/FluentWait.java index <HASH>..<HASH> 100644 --- a/java/client/src/org/openqa/selenium/support/ui/FluentWait.java +++ b/java/client/src/org/openqa/selenium/support/ui/FluentWait.java @@ -67,7 +67,...
java: Adding final modifier for a constant
diff --git a/spec/lib/sapience/appender/datadog_spec.rb b/spec/lib/sapience/appender/datadog_spec.rb index <HASH>..<HASH> 100644 --- a/spec/lib/sapience/appender/datadog_spec.rb +++ b/spec/lib/sapience/appender/datadog_spec.rb @@ -164,4 +164,13 @@ describe Sapience::Appender::Datadog do end end + describe "#...
Add tests for Statsd histogram method
diff --git a/odl/operator/operator.py b/odl/operator/operator.py index <HASH>..<HASH> 100644 --- a/odl/operator/operator.py +++ b/odl/operator/operator.py @@ -963,6 +963,8 @@ class Operator(object): else: return NotImplemented + __div__ = __truediv__ + def __neg__(self): """Retu...
ENH: add __div__ to operators, allows division by scalars in python 2
diff --git a/lib/Scan.js b/lib/Scan.js index <HASH>..<HASH> 100644 --- a/lib/Scan.js +++ b/lib/Scan.js @@ -65,7 +65,7 @@ Scan.prototype.exec = function (next) { function scanByRawFilter() { var deferred = Q.defer(); var dbClient = Model.$__.base.documentClient(); - var AWSSet = dbClient.createSe...
Removed redundant hasOwnProperty call. Renamed variable for better clarity.
diff --git a/tests/unit/errorBag.js b/tests/unit/errorBag.js index <HASH>..<HASH> 100644 --- a/tests/unit/errorBag.js +++ b/tests/unit/errorBag.js @@ -356,11 +356,11 @@ test('groups errors by field name', () => { }); expect(errors.collect(null, undefined, false)).toEqual({ email: [ - { field: 'email', m...
tests: fix test case with vmId being injected into the errorbag
diff --git a/devices.js b/devices.js index <HASH>..<HASH> 100755 --- a/devices.js +++ b/devices.js @@ -3025,6 +3025,14 @@ const devices = [ supports: 'on/off, brightness, color temperature, color', }, { + zigbeeModel: ['GL-B-007ZS'], + model: 'GL-B-007ZS', + vendor: 'Gledopto', +...
GLEDOPTO GL-B-<I>ZS Bulb (#<I>) Support for this bulb
diff --git a/plugins/Goals/API.php b/plugins/Goals/API.php index <HASH>..<HASH> 100644 --- a/plugins/Goals/API.php +++ b/plugins/Goals/API.php @@ -192,7 +192,7 @@ class API extends \Piwik\Plugin\API WHERE idsite = ? AND idgoal = ?", array($idSite, $idGoal)); - Db::deleteAllRow...
Goal delete fix Disallow to delete all conversions for given idgoal (across all websites) after goal (soft)delete.
diff --git a/packages/vuetifyjs.com/build/webpack.base.config.js b/packages/vuetifyjs.com/build/webpack.base.config.js index <HASH>..<HASH> 100755 --- a/packages/vuetifyjs.com/build/webpack.base.config.js +++ b/packages/vuetifyjs.com/build/webpack.base.config.js @@ -24,7 +24,8 @@ module.exports = { alias: { ...
don't let webpack resolve symlinks allows linked packages to have their own babel configs
diff --git a/library/Services/ShopInstaller/ShopInstaller.php b/library/Services/ShopInstaller/ShopInstaller.php index <HASH>..<HASH> 100644 --- a/library/Services/ShopInstaller/ShopInstaller.php +++ b/library/Services/ShopInstaller/ShopInstaller.php @@ -128,7 +128,7 @@ class ShopInstaller implements ShopServiceInterfa...
ESDEV-<I> Use different script to generate views The new script is operating system independent.
diff --git a/chef/spec/unit/mixin/find_preferred_file_spec.rb b/chef/spec/unit/mixin/find_preferred_file_spec.rb index <HASH>..<HASH> 100644 --- a/chef/spec/unit/mixin/find_preferred_file_spec.rb +++ b/chef/spec/unit/mixin/find_preferred_file_spec.rb @@ -69,6 +69,17 @@ describe Chef::Mixin::FindPreferredFile do ...
[CHEF-<I>] New spec for - Filenames with brackets need regular expression escaping
diff --git a/mempool/reactor_test.go b/mempool/reactor_test.go index <HASH>..<HASH> 100644 --- a/mempool/reactor_test.go +++ b/mempool/reactor_test.go @@ -76,6 +76,11 @@ func TestReactorNoBroadcastToSender(t *testing.T) { } } }() + for _, r := range reactors { + for _, peer := range r.Switch.Peers().List() { ...
mempool/reactor: fix reactor broadcast test (#<I>) found out this issue when trying to decouple mempool reactor with its underlying clist implementation. according to its comment, the test `TestReactorNoBroadcastToSender` is intended to make sure that a peer shouldn't send tx back to its origin. however, the cur...
diff --git a/src/Classifier.php b/src/Classifier.php index <HASH>..<HASH> 100644 --- a/src/Classifier.php +++ b/src/Classifier.php @@ -68,7 +68,13 @@ class Classifier throw new Exception("Classifier {$classifier} does not implement ".ClassifierContract::class.'.'); } - if ($c-...
Wrap satisfies call within rescue helper
diff --git a/lib/arel/engines/sql/relations/table.rb b/lib/arel/engines/sql/relations/table.rb index <HASH>..<HASH> 100644 --- a/lib/arel/engines/sql/relations/table.rb +++ b/lib/arel/engines/sql/relations/table.rb @@ -20,10 +20,16 @@ module Arel if @engine.connection begin require "arel/engi...
Allow externally defined AR adapters to define their own compiler.
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -21,6 +21,10 @@ ENCODING = "utf8" pkg_info = {} +def need_pytest(): + return set(["pytest", "test", "ptr"]).intersection(sys.argv) + + with open(os.path.join(MODULE_NAME, "__version__.py")) as f: exec(f.read(), p...
Extract a function that gets pytest-runner requirement
diff --git a/Docs/WebFrontend/Geocode.js b/Docs/WebFrontend/Geocode.js index <HASH>..<HASH> 100644 --- a/Docs/WebFrontend/Geocode.js +++ b/Docs/WebFrontend/Geocode.js @@ -50,7 +50,7 @@ function geocodeAddress(tf){ freeform = document.getElementById('tfEndSearch').value; } - if(freeform.match(/^\s*[-+]?[0-9]*\.?[...
support coordinates as start/end point: also accept semicolon as separator
diff --git a/lib/lifx/transport/tcp.rb b/lib/lifx/transport/tcp.rb index <HASH>..<HASH> 100644 --- a/lib/lifx/transport/tcp.rb +++ b/lib/lifx/transport/tcp.rb @@ -6,9 +6,6 @@ module LIFX def initialize(host, port) super connect - at_exit do - close - end end ...
Probably not the best method at this stage
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100755 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ except ImportError: long_description = 'A pedigree parser.' setup(name="ped_parser", - version="1.4", + version="1.5", description="A ped file parser.", author="Mans Magnusson", author_ema...
Bumped version to <I>
diff --git a/src/main/java/sklearn/preprocessing/FunctionTransformer.java b/src/main/java/sklearn/preprocessing/FunctionTransformer.java index <HASH>..<HASH> 100644 --- a/src/main/java/sklearn/preprocessing/FunctionTransformer.java +++ b/src/main/java/sklearn/preprocessing/FunctionTransformer.java @@ -117,7 +117,9 @@ p...
Fixed the name of a Numpy universal function. Fixes #<I>
diff --git a/lib/jazzy/sourcekitten.rb b/lib/jazzy/sourcekitten.rb index <HASH>..<HASH> 100644 --- a/lib/jazzy/sourcekitten.rb +++ b/lib/jazzy/sourcekitten.rb @@ -47,7 +47,6 @@ module Jazzy def self.run_sourcekitten(arguments) bin_path = Pathname(__FILE__).parent + 'sourcekitten/sourcekitten' command...
[SourceKitten] Don't print command
diff --git a/lxd/device/device_utils_network.go b/lxd/device/device_utils_network.go index <HASH>..<HASH> 100644 --- a/lxd/device/device_utils_network.go +++ b/lxd/device/device_utils_network.go @@ -1,8 +1,6 @@ package device import ( - "crypto/rand" - "encoding/hex" "fmt" "io/ioutil" "strconv" @@ -210,21 +20...
lxd/device/device/utils/network: Removes networkRandomDevName Moving to network package.
diff --git a/conn.go b/conn.go index <HASH>..<HASH> 100644 --- a/conn.go +++ b/conn.go @@ -499,9 +499,7 @@ func (conn *Conn) sendReply(dest string, serial uint32, values ...interface{}) { // The caller has to make sure that ch is sufficiently buffered; if a message // arrives when a write to c is not possible, it is ...
conn: add RemoveSignal method to *Conn this loops over all conn.signals and removes all that match the given signal. Possible fix for #<I>
diff --git a/project/library/CM/Action/Abstract.php b/project/library/CM/Action/Abstract.php index <HASH>..<HASH> 100644 --- a/project/library/CM/Action/Abstract.php +++ b/project/library/CM/Action/Abstract.php @@ -276,4 +276,30 @@ abstract class CM_Action_Abstract extends CM_Class_Abstract implements CM_ArrayC CM_...
t<I>: New methods for events naming
diff --git a/src/Feature.php b/src/Feature.php index <HASH>..<HASH> 100644 --- a/src/Feature.php +++ b/src/Feature.php @@ -1,6 +1,6 @@ <?php /** - * + * */ namespace Opensoft\Rollout; @@ -183,7 +183,7 @@ class Feature */ private function isUserInPercentage(RolloutUserInterface $user) { - ...
[fix] fix for Feature::isUserInPercentage() method The CRC<I> % <I> returns negative numbers that are *always* lower than percentage.
diff --git a/Migrations/DatabaseMigrationRepository.php b/Migrations/DatabaseMigrationRepository.php index <HASH>..<HASH> 100755 --- a/Migrations/DatabaseMigrationRepository.php +++ b/Migrations/DatabaseMigrationRepository.php @@ -135,9 +135,7 @@ class DatabaseMigrationRepository implements MigrationRepositoryInterface...
Fix bug in migration table builder.
diff --git a/lib/rails-action-args/vm_args.rb b/lib/rails-action-args/vm_args.rb index <HASH>..<HASH> 100644 --- a/lib/rails-action-args/vm_args.rb +++ b/lib/rails-action-args/vm_args.rb @@ -1,7 +1,9 @@ begin require "methopara" -rescue - puts "make sure you have methora http://github.com/genki/methopara installed...
Make vm_args ruby <I> friendly Starting with <I>, we don't need methopara any more
diff --git a/library/src/main/java/com/github/sundeepk/compactcalendarview/CompactCalendarController.java b/library/src/main/java/com/github/sundeepk/compactcalendarview/CompactCalendarController.java index <HASH>..<HASH> 100644 --- a/library/src/main/java/com/github/sundeepk/compactcalendarview/CompactCalendarControll...
Fixed big where first event was not being added
diff --git a/warehouse/views.py b/warehouse/views.py index <HASH>..<HASH> 100644 --- a/warehouse/views.py +++ b/warehouse/views.py @@ -452,6 +452,9 @@ def session_notifications(request): renderer="includes/sidebar-sponsor-logo.html", uses_session=False, has_translations=False, + decorator=[ + c...
Add cache_control to sidebar logo (#<I>)
diff --git a/cmsplugin_cascade/bootstrap3/gallery.py b/cmsplugin_cascade/bootstrap3/gallery.py index <HASH>..<HASH> 100644 --- a/cmsplugin_cascade/bootstrap3/gallery.py +++ b/cmsplugin_cascade/bootstrap3/gallery.py @@ -1,5 +1,6 @@ # -*- coding: utf-8 -*- from __future__ import unicode_literals + from django.forms im...
We need at least one extra Gallery Plugin
diff --git a/tests/TwigJs/Tests/FullIntegrationTest.php b/tests/TwigJs/Tests/FullIntegrationTest.php index <HASH>..<HASH> 100644 --- a/tests/TwigJs/Tests/FullIntegrationTest.php +++ b/tests/TwigJs/Tests/FullIntegrationTest.php @@ -86,7 +86,7 @@ class FullIntegrationTest extends PHPUnit_Framework_TestCase retur...
Fix another test suite fatal error to unblock the Travis build
diff --git a/serf/serf.go b/serf/serf.go index <HASH>..<HASH> 100644 --- a/serf/serf.go +++ b/serf/serf.go @@ -190,13 +190,18 @@ func (s *Serf) Leave() error { panic("Leave after Shutdown") } - s.memberLock.RLock() - defer s.memberLock.RUnlock() + // Construct the message for the graceful leave + msg := messageL...
serf: process leave locally right away
diff --git a/openid/consumer/discover.py b/openid/consumer/discover.py index <HASH>..<HASH> 100644 --- a/openid/consumer/discover.py +++ b/openid/consumer/discover.py @@ -61,10 +61,14 @@ class OpenIDServiceEndpoint(object): return OPENID_1_0_MESSAGE_NS def supportsType(self, type_uri): - """D...
[project @ consumer.discover.OpenIDServiceEndpoint.supportsType: clarification]