diff
stringlengths
65
26.7k
message
stringlengths
7
9.92k
diff --git a/riak/client/__init__.py b/riak/client/__init__.py index <HASH>..<HASH> 100644 --- a/riak/client/__init__.py +++ b/riak/client/__init__.py @@ -296,11 +296,9 @@ class RiakClient(RiakMapReduceChain, RiakClientOperations): Iterate through all of the connections and close each one. """ ...
Use built-in pool clear() method instead of explicitly iterating on client close()
diff --git a/src/Admin/Appearance/Widgets.php b/src/Admin/Appearance/Widgets.php index <HASH>..<HASH> 100644 --- a/src/Admin/Appearance/Widgets.php +++ b/src/Admin/Appearance/Widgets.php @@ -165,9 +165,11 @@ class Widgets add_filter('use_widgets_block_editor', '__return_false'); } - if ($...
Fix warning ErrorException (E_WARNING) Cannot modify header information - headers already sent by (output started at [...]web/app/mu-plugins/intervention/src/Admin/Appearance/Widgets.php:<I>)
diff --git a/pusher/notification_client.py b/pusher/notification_client.py index <HASH>..<HASH> 100644 --- a/pusher/notification_client.py +++ b/pusher/notification_client.py @@ -20,7 +20,7 @@ GCM_TTL = 241920 class NotificationClient(Client): def __init__( self, app_id, key, secret, ssl=True, host=N...
bump notification_client timeout to <I>s
diff --git a/src/FlexiPeeHP/FlexiBeeRO.php b/src/FlexiPeeHP/FlexiBeeRO.php index <HASH>..<HASH> 100644 --- a/src/FlexiPeeHP/FlexiBeeRO.php +++ b/src/FlexiPeeHP/FlexiBeeRO.php @@ -291,7 +291,8 @@ class FlexiBeeRO extends \Ease\Brick /** * SetUp Object to be ready for connect * - * @param array $opti...
Debug Added to FlexiBeeRO class accepted options
diff --git a/src/components/MultiSelect/FilterableMultiSelect.js b/src/components/MultiSelect/FilterableMultiSelect.js index <HASH>..<HASH> 100644 --- a/src/components/MultiSelect/FilterableMultiSelect.js +++ b/src/components/MultiSelect/FilterableMultiSelect.js @@ -86,6 +86,11 @@ export default class FilterableMultiSe...
fix(multi-select): introduce translateWithId (#<I>) Fixes #<I>.
diff --git a/src/parse.js b/src/parse.js index <HASH>..<HASH> 100644 --- a/src/parse.js +++ b/src/parse.js @@ -81,6 +81,7 @@ Parse.register('group', require('./transformers/group')); Parse.register('spec', require('./transformers/spec')); Parse.register('date', require('./transformers/date')); Parse.register('bool',...
[number] Enable NumberTransformer
diff --git a/src/Taxonomy.php b/src/Taxonomy.php index <HASH>..<HASH> 100644 --- a/src/Taxonomy.php +++ b/src/Taxonomy.php @@ -76,12 +76,12 @@ class Taxonomy { /** * Create a new term in a specific vocabulary * - * @param string $name - * The name of the term - * * @param int $vid * The Vocab...
Removed trailing ; in if
diff --git a/core/src/main/java/com/orientechnologies/orient/core/config/OGlobalConfiguration.java b/core/src/main/java/com/orientechnologies/orient/core/config/OGlobalConfiguration.java index <HASH>..<HASH> 100755 --- a/core/src/main/java/com/orientechnologies/orient/core/config/OGlobalConfiguration.java +++ b/core/sr...
chore: disabled memory pre-allocation
diff --git a/client/state/jetpack-connect/actions.js b/client/state/jetpack-connect/actions.js index <HASH>..<HASH> 100644 --- a/client/state/jetpack-connect/actions.js +++ b/client/state/jetpack-connect/actions.js @@ -378,6 +378,11 @@ export function isUserConnected( siteId, siteIsOnSitesList ) { } } ) .c...
Jetpack Connect: Add tracks to site request failure (#<I>)
diff --git a/packages/neos-ui/src/Containers/Modals/SelectNodeType/index.js b/packages/neos-ui/src/Containers/Modals/SelectNodeType/index.js index <HASH>..<HASH> 100644 --- a/packages/neos-ui/src/Containers/Modals/SelectNodeType/index.js +++ b/packages/neos-ui/src/Containers/Modals/SelectNodeType/index.js @@ -195,7 +19...
Bugfix don't pass the create dialog title as array
diff --git a/haproxy_exporter.go b/haproxy_exporter.go index <HASH>..<HASH> 100644 --- a/haproxy_exporter.go +++ b/haproxy_exporter.go @@ -382,7 +382,7 @@ func (e *Exporter) scrape(ch chan<- prometheus.Metric) (up float64) { info, err := e.parseInfo(infoReader) if err != nil { - level.Debug(e.logger).Log("msg...
Correct a typo in haproxy_exporter.go (#<I>)
diff --git a/tests/test_aggregator.py b/tests/test_aggregator.py index <HASH>..<HASH> 100644 --- a/tests/test_aggregator.py +++ b/tests/test_aggregator.py @@ -182,6 +182,6 @@ def test_issue_61(): latex = r'\frac{x + 4}{x + \frac{123 \left(\sqrt{x} + 5\right)}{x + 4} - 8}' expected = [r'\frac', ['x', '+', '4']...
Make work for pycodestyle
diff --git a/modules/custom/d_geysir/src/Utility/ModalDetector.php b/modules/custom/d_geysir/src/Utility/ModalDetector.php index <HASH>..<HASH> 100644 --- a/modules/custom/d_geysir/src/Utility/ModalDetector.php +++ b/modules/custom/d_geysir/src/Utility/ModalDetector.php @@ -46,12 +46,21 @@ class ModalDetector implement...
Issue #<I> by gpietrzak: (v <I>) Form buttons broken after paragraph save
diff --git a/lib/cli/parse.js b/lib/cli/parse.js index <HASH>..<HASH> 100644 --- a/lib/cli/parse.js +++ b/lib/cli/parse.js @@ -153,13 +153,19 @@ module.exports = function parse(options, callback) { }; function firstErrorDescription(node) { + if (!node.hasError) return null; + if (node.type === 'ERROR') { r...
Fix first error description when there are missing tokens
diff --git a/library/CM/FormField/Textarea.js b/library/CM/FormField/Textarea.js index <HASH>..<HASH> 100644 --- a/library/CM/FormField/Textarea.js +++ b/library/CM/FormField/Textarea.js @@ -8,6 +8,7 @@ var CM_FormField_Textarea = CM_FormField_Text.extend({ events: { 'blur [contenteditable]': function() { ...
Introduce "disableTriggerChangeOnInput" for Textarea, trigger change on "blur" event
diff --git a/spec/helpers/fortitude_rails_helpers.rb b/spec/helpers/fortitude_rails_helpers.rb index <HASH>..<HASH> 100644 --- a/spec/helpers/fortitude_rails_helpers.rb +++ b/spec/helpers/fortitude_rails_helpers.rb @@ -9,7 +9,6 @@ module Spec out = [ "gem 'fortitude', :path => '#{rails_server_projec...
Try not spec'ing any i<I>n gem version at all on the server itself.
diff --git a/mithril.js b/mithril.js index <HASH>..<HASH> 100644 --- a/mithril.js +++ b/mithril.js @@ -553,10 +553,11 @@ var m = (function app(window, undefined) { //routing var modes = {pathname: "", hash: "#", search: "?"}; - var redirect = function() {}, routeParams = {}, currentRoute; + var redirect = functio...
show error message if m.route.param is called before m.route(el, defRoute, routes)
diff --git a/src/Synapse/Mapper/AbstractMapper.php b/src/Synapse/Mapper/AbstractMapper.php index <HASH>..<HASH> 100644 --- a/src/Synapse/Mapper/AbstractMapper.php +++ b/src/Synapse/Mapper/AbstractMapper.php @@ -158,17 +158,20 @@ abstract class AbstractMapper implements LoggerAwareInterface return $this; }...
Refs #<I> - Add missing DocBlocks and fix coding standards.
diff --git a/Command/DebugRouterCommand.php b/Command/DebugRouterCommand.php index <HASH>..<HASH> 100644 --- a/Command/DebugRouterCommand.php +++ b/Command/DebugRouterCommand.php @@ -8,6 +8,8 @@ use Symfony\Component\Console\Helper\Table; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Conso...
Update DebugRouterCommand.php I get VERSION_ID from Kernel, hope this is a right way.
diff --git a/bin/fasta-subset.py b/bin/fasta-subset.py index <HASH>..<HASH> 100755 --- a/bin/fasta-subset.py +++ b/bin/fasta-subset.py @@ -1,7 +1,7 @@ #!/usr/bin/env python """ -Given a set of FASTA sequence identifiers from sys.argv or in a file, read +Given a set of FASTA sequence identifiers from sys.argv and/or...
Tiny change to docstring.
diff --git a/src/Component/Filter/StringFilter.php b/src/Component/Filter/StringFilter.php index <HASH>..<HASH> 100644 --- a/src/Component/Filter/StringFilter.php +++ b/src/Component/Filter/StringFilter.php @@ -53,18 +53,17 @@ class StringFilter implements FilterInterface } if (1 === count($fields))...
[Grid] Decrease nesting level in StringFilter
diff --git a/errors.go b/errors.go index <HASH>..<HASH> 100644 --- a/errors.go +++ b/errors.go @@ -14,6 +14,10 @@ type Error struct { } func (e Error) Error() string { + if e.Type == "genericError" { + return e.Message + } + return fmt.Sprintf("kite error %s - %s - %s", e.Type, e.Message, e.Code) }
kite/errors: return user errors as it is
diff --git a/restcomm/restcomm.testsuite/src/test/java/org/restcomm/connect/testsuite/telephony/DialRecordingTest.java b/restcomm/restcomm.testsuite/src/test/java/org/restcomm/connect/testsuite/telephony/DialRecordingTest.java index <HASH>..<HASH> 100644 --- a/restcomm/restcomm.testsuite/src/test/java/org/restcomm/conn...
removed resetMappings as it requires java8
diff --git a/txkoji/task.py b/txkoji/task.py index <HASH>..<HASH> 100644 --- a/txkoji/task.py +++ b/txkoji/task.py @@ -163,7 +163,7 @@ class Task(Munch): return self.params[0] # params[0] is the source URL for these tasks: if self.method not in ('build', 'buildArch', 'buildContainer', - ...
task: add .target and .package support for maven tasks Populate .target and .package for maven tasks
diff --git a/apiserver/facades/client/applicationoffers/state.go b/apiserver/facades/client/applicationoffers/state.go index <HASH>..<HASH> 100644 --- a/apiserver/facades/client/applicationoffers/state.go +++ b/apiserver/facades/client/applicationoffers/state.go @@ -62,7 +62,6 @@ type Backend interface { OfferConnect...
Remove the duplicated function The function UserPermission was duplicated in both commoncrossmodel.Backend and Backend, which emits a warning. Static analysis should have picked this up, but for some reason it hasn't. This fixes the issue, but we need to work out why it wasn't caught.
diff --git a/docs/conf.py b/docs/conf.py index <HASH>..<HASH> 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -16,9 +16,9 @@ import sys, os # If extensions (or modules to document with autodoc) are in another directory, # add these directories to sys.path here. If the directory is relative to the # documentation roo...
Dynamically set pulsar version from docs.
diff --git a/tests/Symfony/Tests/Component/Form/AbstractDivLayoutTest.php b/tests/Symfony/Tests/Component/Form/AbstractDivLayoutTest.php index <HASH>..<HASH> 100644 --- a/tests/Symfony/Tests/Component/Form/AbstractDivLayoutTest.php +++ b/tests/Symfony/Tests/Component/Form/AbstractDivLayoutTest.php @@ -409,20 +409,4 @@ ...
[Form] Remove a test which is no more relevant (after recent FileType refactoring)
diff --git a/wffweb/src/main/java/com/webfirmframework/wffweb/tag/html/html5/stylesandsemantics/Summary.java b/wffweb/src/main/java/com/webfirmframework/wffweb/tag/html/html5/stylesandsemantics/Summary.java index <HASH>..<HASH> 100644 --- a/wffweb/src/main/java/com/webfirmframework/wffweb/tag/html/html5/stylesandsemant...
Code formatting improvement Added needful comment in empty method body
diff --git a/otsrdflib/ots.py b/otsrdflib/ots.py index <HASH>..<HASH> 100644 --- a/otsrdflib/ots.py +++ b/otsrdflib/ots.py @@ -29,7 +29,7 @@ class OrderedTurtleSerializer(TurtleSerializer): # Instance order: self.sorters = [ - ('.*?([0-9]+)$', lambda x: int(x[0])) + ('.*?/[A-Za...
Fix so default sorter doesn't match uuids
diff --git a/hooks/pre_gen_project.py b/hooks/pre_gen_project.py index <HASH>..<HASH> 100644 --- a/hooks/pre_gen_project.py +++ b/hooks/pre_gen_project.py @@ -9,3 +9,23 @@ docker = '{{ cookiecutter.use_docker }}'.lower() if elasticbeanstalk == 'y' and (heroku == 'y' or docker == 'y'): raise Exception("Cookiecut...
Add a pre-hook that checks the python version (#<I>) Closes #<I>
diff --git a/lib/sass/plugin.rb b/lib/sass/plugin.rb index <HASH>..<HASH> 100644 --- a/lib/sass/plugin.rb +++ b/lib/sass/plugin.rb @@ -75,7 +75,7 @@ module Sass template_location_array.each do |template_location, css_location| - Dir.glob(File.join(template_location, "**", "*.s[ca]ss")).each do |file| ...
[Sass] Sort files for consistent compilation order.
diff --git a/lib/dm-core/resource.rb b/lib/dm-core/resource.rb index <HASH>..<HASH> 100644 --- a/lib/dm-core/resource.rb +++ b/lib/dm-core/resource.rb @@ -299,9 +299,11 @@ module DataMapper # true if resource and storage state match # # @api public - def update(attributes = {}) - self.attribute...
Wrap Resource#update in a chainable block to allow overriding in modules
diff --git a/test/util.js b/test/util.js index <HASH>..<HASH> 100644 --- a/test/util.js +++ b/test/util.js @@ -172,7 +172,11 @@ var setupTest = function setupTest(refImageId) { getRefImage(refImageId, function gotRefImage(refImgData) { if (!refImgData && ALLOWNOREF) { - ok(true, 'Skip the test; no ...
Print data URL if there is no reference image
diff --git a/lib/loaders/base_js.js b/lib/loaders/base_js.js index <HASH>..<HASH> 100644 --- a/lib/loaders/base_js.js +++ b/lib/loaders/base_js.js @@ -115,6 +115,7 @@ module.exports = class BaseJavascriptModule { async _completeLoading(deviceClass) { if (this._config) this._config.install(dev...
Expose Thingpedia manifests to JS devices Expose it as "deviceClass.manifest" (aka this.constructor.manifest). This allows devices to access their own Thingpedia definition for reflection, and allows writing generic JS packages that can be instantiated with multiple JS classes (e.g. for schema.org). It can be an alter...
diff --git a/src/graphql_relay/connection/connection.py b/src/graphql_relay/connection/connection.py index <HASH>..<HASH> 100644 --- a/src/graphql_relay/connection/connection.py +++ b/src/graphql_relay/connection/connection.py @@ -106,8 +106,6 @@ def connection_definitions( The nodes of the returned object types w...
Minor simplification Replicates graphql/graphql-relay-js@8b5a9a<I>f<I>fddd8b<I>fe<I>e7fdf<I>
diff --git a/lib/collection.js b/lib/collection.js index <HASH>..<HASH> 100644 --- a/lib/collection.js +++ b/lib/collection.js @@ -2039,7 +2039,7 @@ Collection.prototype.mapReduce = function(map, reduce, options, callback) { }; /** - * Initiate a Out of order batch write operation. All operations will be buffered i...
docs(collection): fix typo & run-on sentence for initializeOrderedBulkOp
diff --git a/View/Helper/QrCodeHelper.php b/View/Helper/QrCodeHelper.php index <HASH>..<HASH> 100644 --- a/View/Helper/QrCodeHelper.php +++ b/View/Helper/QrCodeHelper.php @@ -86,7 +86,7 @@ class QrCodeHelper extends AppHelper { * Note: cannot be url() due to AppHelper conflicts * * @param string $text - * @re...
remove deprecated method that is not E_STRICT
diff --git a/bugtool/cmd/configuration.go b/bugtool/cmd/configuration.go index <HASH>..<HASH> 100644 --- a/bugtool/cmd/configuration.go +++ b/bugtool/cmd/configuration.go @@ -333,6 +333,7 @@ func copyCiliumInfoCommands(cmdDir string, k8sPods []string) []string { "cilium bpf bandwidth list", "cilium bpf tunnel lis...
bugtool: Include listing of egress gateway map
diff --git a/aeron-driver/src/main/java/io/aeron/driver/media/UdpChannel.java b/aeron-driver/src/main/java/io/aeron/driver/media/UdpChannel.java index <HASH>..<HASH> 100644 --- a/aeron-driver/src/main/java/io/aeron/driver/media/UdpChannel.java +++ b/aeron-driver/src/main/java/io/aeron/driver/media/UdpChannel.java @@ -3...
[Java] Tidy up constants used for media type.
diff --git a/flask_mobility/mobility.py b/flask_mobility/mobility.py index <HASH>..<HASH> 100644 --- a/flask_mobility/mobility.py +++ b/flask_mobility/mobility.py @@ -8,10 +8,9 @@ class Mobility(object): self.app = app if self.app is not None: - self.init_app(self.app) + self.i...
Tweaks to get in line with Flask doc recommendations
diff --git a/test/e2e/util.go b/test/e2e/util.go index <HASH>..<HASH> 100644 --- a/test/e2e/util.go +++ b/test/e2e/util.go @@ -723,13 +723,17 @@ func RunRC(config RCConfig) error { image := config.Image replicas := config.Replicas interval := config.PollInterval - maxContainerFailures := int(math.Max(1.0, float...
Default RunRC to check every <I> seconds if an internval isn't provided. #<I>
diff --git a/chevron/renderer.py b/chevron/renderer.py index <HASH>..<HASH> 100644 --- a/chevron/renderer.py +++ b/chevron/renderer.py @@ -292,7 +292,7 @@ def render(template='', data={}, partials_path='.', partials_ext='mustache', padding=padding, def_ldel=de...
Pass `keep` to recursive calls of `chevron.renderer.render()`
diff --git a/test/test-cli.js b/test/test-cli.js index <HASH>..<HASH> 100644 --- a/test/test-cli.js +++ b/test/test-cli.js @@ -19,6 +19,9 @@ function runWithInputAndExpect (input, args, expectedOutput, done) { } describe('cli arguments', function () { + + this.timeout(5000); + it('should output nothing with emp...
Let CLI tests more time for slow machines
diff --git a/Classes/SolrService.php b/Classes/SolrService.php index <HASH>..<HASH> 100644 --- a/Classes/SolrService.php +++ b/Classes/SolrService.php @@ -553,8 +553,8 @@ class Tx_Solr_SolrService extends Apache_Solr_Service { $language = 'english'; $schema = $this->getSchema(); - - if(is_array($schema)){ + ...
[BUGFIX] SolrService checks synonyms for wrong type It checked for an array, but json_decode provides a stdClass. In test it worked, because the fallback to default language matched. Resolves: #<I> Change-Id: Ia<I>c6af<I>a<I>d5e0cb<I>bfe1b<I> Reviewed-on: <URL>
diff --git a/tracer.go b/tracer.go index <HASH>..<HASH> 100644 --- a/tracer.go +++ b/tracer.go @@ -21,6 +21,7 @@ import ( ) var TraceBufferSize = 1 << 16 // 64K ought to be enough for everyone; famous last words. +var MinTraceBatchSize = 16 type basicTracer struct { ch chan struct{} @@ -187,10 +188,17 @@ fu...
don't blanket wait for 1s to accumulate a batch. Instead check the batch size and poll every <I>ms (up to 1s) until the minimum batch size is accumulated.
diff --git a/cmd/juju/model/destroy.go b/cmd/juju/model/destroy.go index <HASH>..<HASH> 100644 --- a/cmd/juju/model/destroy.go +++ b/cmd/juju/model/destroy.go @@ -338,9 +338,11 @@ func newTimedModelStatus(ctx *cmd.Context, api DestroyModelAPI, tag names.ModelT return nil } if status[0].Error != nil { - // T...
Address bug #<I>, don't tread model NotFound as an error when destroying that model
diff --git a/molgenis-app/src/main/java/org/molgenis/app/WebAppInitializer.java b/molgenis-app/src/main/java/org/molgenis/app/WebAppInitializer.java index <HASH>..<HASH> 100644 --- a/molgenis-app/src/main/java/org/molgenis/app/WebAppInitializer.java +++ b/molgenis-app/src/main/java/org/molgenis/app/WebAppInitializer.ja...
Increased the maximum upload size to accomodate bigger files
diff --git a/api/authz.go b/api/authz.go index <HASH>..<HASH> 100644 --- a/api/authz.go +++ b/api/authz.go @@ -82,6 +82,9 @@ func buildAuthz(ctx context.Context, reqs ...buildReq) error { } } } + if len(accountIDs) == 0 { + return nil + } projects, err := appdb.ProjectsByAccount(ctx, accountIDs...) if err...
api: fix authz for build with no account ids Closes chain/chainprv#<I>. Reviewers: @jeffomatic
diff --git a/src/main/java/org/graylog2/database/MongoConnection.java b/src/main/java/org/graylog2/database/MongoConnection.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/graylog2/database/MongoConnection.java +++ b/src/main/java/org/graylog2/database/MongoConnection.java @@ -142,6 +142,7 @@ public final clas...
_id is a standard index #NO_ISSUE
diff --git a/core/common/src/main/java/alluxio/network/netty/NettyRPC.java b/core/common/src/main/java/alluxio/network/netty/NettyRPC.java index <HASH>..<HASH> 100644 --- a/core/common/src/main/java/alluxio/network/netty/NettyRPC.java +++ b/core/common/src/main/java/alluxio/network/netty/NettyRPC.java @@ -84,14 +84,21 ...
[SMALLFIX] Correct the use of monitor
diff --git a/tests/express-test-harness.js b/tests/express-test-harness.js index <HASH>..<HASH> 100644 --- a/tests/express-test-harness.js +++ b/tests/express-test-harness.js @@ -45,6 +45,33 @@ describe('express-http-context', function () { }); }); + it('returns undefined when key is not found', function (done) ...
test: assert that missing keys return undefined
diff --git a/mod/forum/lib.php b/mod/forum/lib.php index <HASH>..<HASH> 100644 --- a/mod/forum/lib.php +++ b/mod/forum/lib.php @@ -5957,7 +5957,7 @@ function forum_remove_user_tracking($userid, $context) { if (!is_enrolled($context, $userid)) { if ($course = $DB->get_record('course', arra...
"MDL-<I>, added DISTINCT statements"
diff --git a/graph/history.go b/graph/history.go index <HASH>..<HASH> 100644 --- a/graph/history.go +++ b/graph/history.go @@ -27,8 +27,7 @@ func (graph *Graph) WalkHistory(img *image.Image, handler func(image.Image) erro return nil } -// depth returns the number of parents for a -// current image +// depth return...
Refactor some code to use simply format
diff --git a/database.py b/database.py index <HASH>..<HASH> 100644 --- a/database.py +++ b/database.py @@ -5,6 +5,9 @@ import types from collection import Collection from errors import InvalidName +ASCENDING = 1 +DESCENDING = -1 + class Database(object): """A Mongo database. """ diff --git a/mongo.py b/m...
move ASC and DESC constants to the base db class. mirror them in the enhanced class
diff --git a/src/main/java/org/openqa/selenium/WebElement.java b/src/main/java/org/openqa/selenium/WebElement.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/openqa/selenium/WebElement.java +++ b/src/main/java/org/openqa/selenium/WebElement.java @@ -1,7 +1,7 @@ /* Copyright 2007-2009 WebDriver committers Co...
DanielWagnerHall: s/Conservatory/Conservancy/g r<I>
diff --git a/Tests/Command/Ec2/AuthenticationCommandsTest.php b/Tests/Command/Ec2/AuthenticationCommandsTest.php index <HASH>..<HASH> 100644 --- a/Tests/Command/Ec2/AuthenticationCommandsTest.php +++ b/Tests/Command/Ec2/AuthenticationCommandsTest.php @@ -6,9 +6,8 @@ use Guzzle\Common\Event; use Guzzle\Http\Plugin\Cook...
Refactored Ec2\AuthenticationCommands to be proper unit tests
diff --git a/runtests.py b/runtests.py index <HASH>..<HASH> 100644 --- a/runtests.py +++ b/runtests.py @@ -32,6 +32,7 @@ DEFAULT_SETTINGS = { ), 'ROOT_URLCONF': 'tests.urls', 'STATIC_URL': '/static/', + 'SPATIALITE_LIBRARY_PATH': 'mod_spatialite.so', 'TEMPLATES': [{ 'BACKEND': 'django.te...
Need to force loading of mod_spatialite, not libspatialite
diff --git a/tests/test-merge.js b/tests/test-merge.js index <HASH>..<HASH> 100644 --- a/tests/test-merge.js +++ b/tests/test-merge.js @@ -1,5 +1,6 @@ /* eslint-env mocha */ const assert = require('assert'); +const webpack = require('webpack'); const webpackMerge = require('..'); const mergeTests = require('./merge...
test - Add plugin customization test This could be better, but good enough for now.
diff --git a/lib/rambling/trie/version.rb b/lib/rambling/trie/version.rb index <HASH>..<HASH> 100644 --- a/lib/rambling/trie/version.rb +++ b/lib/rambling/trie/version.rb @@ -1,6 +1,6 @@ module Rambling module Trie # Current version of the rambling-trie. - VERSION = '0.5.0' + VERSION = '0.5.1' end en...
Bumped to version <I>.
diff --git a/packages/webiny-ui/src/List/DataList/DataList.js b/packages/webiny-ui/src/List/DataList/DataList.js index <HASH>..<HASH> 100644 --- a/packages/webiny-ui/src/List/DataList/DataList.js +++ b/packages/webiny-ui/src/List/DataList/DataList.js @@ -246,7 +246,7 @@ const Pagination = (props: Props) => { ret...
fix: Fix incorrect pagination info in DataList component (#<I>) A "0" would be outputted in the pagination section if there were no records to show.
diff --git a/js/impress.js b/js/impress.js index <HASH>..<HASH> 100644 --- a/js/impress.js +++ b/js/impress.js @@ -185,6 +185,7 @@ // making given step active var active = null; + var hashTimeout = null; var select = function ( el ) { if ( !el || !el.stepData || el == active) { @@ -21...
yeah, that's what happens when you do quick fixes using timeouts...
diff --git a/worker/agent.go b/worker/agent.go index <HASH>..<HASH> 100644 --- a/worker/agent.go +++ b/worker/agent.go @@ -159,8 +159,9 @@ func (a *agent) reconnect() error { a.conn = conn a.rw = bufio.NewReadWriter(bufio.NewReader(a.conn), bufio.NewWriter(a.conn)) - a.grab() + a.worker.reRegisterFuncsForAgent...
fix worker reconnect errors, send cando after reconnection. * fix worker reconnect errors, send cando after reconnection.
diff --git a/helpers/api.js b/helpers/api.js index <HASH>..<HASH> 100644 --- a/helpers/api.js +++ b/helpers/api.js @@ -1,5 +1,5 @@ exports.getBaseUrl = () => { - // If DDENV is defined, use it, otherwise default to prod - const env = process.env.DDENV ? "_" + process.env.DDENV : ""; - return `https://api${env}.dron...
Minor adjustment for when env is explicitly prod
diff --git a/lib/addMethod/index.js b/lib/addMethod/index.js index <HASH>..<HASH> 100644 --- a/lib/addMethod/index.js +++ b/lib/addMethod/index.js @@ -3,7 +3,7 @@ const _ = require('lodash'); const addMethodREST = require('./addMethodREST'); const addMethodSOAP = require('./addMethodSOAP'); -const INVALID_TYPE_ERRO...
review feedback - changed main string to backticks
diff --git a/go/cmd/vtbackup/vtbackup.go b/go/cmd/vtbackup/vtbackup.go index <HASH>..<HASH> 100644 --- a/go/cmd/vtbackup/vtbackup.go +++ b/go/cmd/vtbackup/vtbackup.go @@ -281,13 +281,6 @@ func takeBackup(ctx context.Context, topoServer *topo.Server, backupStorage back // to the goal position). backupTime := time.No...
Still take a new backup even if nothing changed. We need to create a backup with the new timestamp so we know that our backups are fresh.
diff --git a/test/javascript/test_oracles.js b/test/javascript/test_oracles.js index <HASH>..<HASH> 100644 --- a/test/javascript/test_oracles.js +++ b/test/javascript/test_oracles.js @@ -148,6 +148,13 @@ contract('Oracle', function (accounts) { await etherToken.approve(ultimateOracle.address, 100, { from: acco...
added testcase to test increase leading vote after challenge
diff --git a/src/Generator.php b/src/Generator.php index <HASH>..<HASH> 100644 --- a/src/Generator.php +++ b/src/Generator.php @@ -18,7 +18,7 @@ class Generator } File::makeDirectory($docDir); $excludeDirs = config('l5-swagger.paths.excludes'); - $swagger = \Swagger\sca...
Fixes excluded directories Excluded directories were not being correctly passed to the $options of Swagger\scan()
diff --git a/charcoal/charcoal.py b/charcoal/charcoal.py index <HASH>..<HASH> 100644 --- a/charcoal/charcoal.py +++ b/charcoal/charcoal.py @@ -219,9 +219,9 @@ class Charcoal(object): else: message, status = self.warn_test("Insecure request made and ignored") ...
Do not record request output in TCP test TCP tests will not have request status code or header data so only add them to output if the test is not TCP. Previously, trying to add the data was resulting in a stacktrace as the req object did not exist.
diff --git a/lib/couchrest/model/persistence.rb b/lib/couchrest/model/persistence.rb index <HASH>..<HASH> 100644 --- a/lib/couchrest/model/persistence.rb +++ b/lib/couchrest/model/persistence.rb @@ -118,8 +118,8 @@ module CouchRest # # ==== Returns # returns the reloaded document - de...
add init block support to #create and #create!
diff --git a/zipline/utils/sentinel.py b/zipline/utils/sentinel.py index <HASH>..<HASH> 100644 --- a/zipline/utils/sentinel.py +++ b/zipline/utils/sentinel.py @@ -13,6 +13,10 @@ class _Sentinel(object): __slots__ = ('__weakref__',) +def is_sentinel(obj): + return isinstance(obj, _Sentinel) + + def sentinel...
MAINT: Move is_sentinel up to top of file.
diff --git a/lib/guard/jasmine/inspector.rb b/lib/guard/jasmine/inspector.rb index <HASH>..<HASH> 100644 --- a/lib/guard/jasmine/inspector.rb +++ b/lib/guard/jasmine/inspector.rb @@ -37,7 +37,7 @@ module Guard # @return [Boolean] when the file valid # def jasmine_spec?(path) - path =...
Support cjsx (react jsx flavored coffeescript)
diff --git a/twitter_scraper.py b/twitter_scraper.py index <HASH>..<HASH> 100644 --- a/twitter_scraper.py +++ b/twitter_scraper.py @@ -17,7 +17,7 @@ def get_tweets(user, pages=25): while pages > 0: d = pq(r.json()['items_html']) - tweets = [tweet.text for tweet in d('.tweet-text')] + ...
Use `text_content()` instead of text Returns text content of '.tweet-text' including text of children (links)
diff --git a/mod/forum/lib.php b/mod/forum/lib.php index <HASH>..<HASH> 100644 --- a/mod/forum/lib.php +++ b/mod/forum/lib.php @@ -1475,7 +1475,7 @@ function forum_get_discussions($forum="0", $forumsort="d.timemodified DESC", } //TODO: there must be a nice way to do this that keeps both postgres and mysql 3...
Adding support for MSSQL and Oracle in this select. Not really sure why we need one OUTER join there, if every discussion has one usermodified but.....not time now.
diff --git a/spec/lib/appsignal/transaction_spec.rb b/spec/lib/appsignal/transaction_spec.rb index <HASH>..<HASH> 100644 --- a/spec/lib/appsignal/transaction_spec.rb +++ b/spec/lib/appsignal/transaction_spec.rb @@ -971,7 +971,7 @@ describe Appsignal::Transaction do end context "when there is a session" ...
Honor filter_parameters keys for session data (linting) - adhere to hash rocket hash syntax
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -9,11 +9,22 @@ with open('README.rst') as readme_file: with open('HISTORY.rst') as history_file: history = history_file.read() -with open('requirements.txt') as req_dev_file: - requirements = req_dev_file.read().spl...
return to manual setup.py requirements
diff --git a/phraseapp/lib.go b/phraseapp/lib.go index <HASH>..<HASH> 100644 --- a/phraseapp/lib.go +++ b/phraseapp/lib.go @@ -2991,5 +2991,5 @@ func (client *Client) VersionsList(project_id, translation_id string, page, perP } func GetUserAgent() string { - return "PhraseApp go (test)" + return "PhraseApp go (1.0....
<I>.rc<I> No more panics in wizard, minor wording changes
diff --git a/cmd/rlpdump/main.go b/cmd/rlpdump/main.go index <HASH>..<HASH> 100644 --- a/cmd/rlpdump/main.go +++ b/cmd/rlpdump/main.go @@ -19,7 +19,6 @@ package main import ( - "bufio" "bytes" "encoding/hex" "flag" @@ -67,7 +66,7 @@ func main() { die(err) } defer fd.Close() - r = bufio.NewReader(fd...
cmd/rlpdump: remove extra buffer
diff --git a/lib/discordrb/bot.rb b/lib/discordrb/bot.rb index <HASH>..<HASH> 100644 --- a/lib/discordrb/bot.rb +++ b/lib/discordrb/bot.rb @@ -16,13 +16,15 @@ module Discordrb @email = email @password = password - @token = login() - - Thread.new { websocket_connect() } + @token = login ...
Extegrate the websocket connection into a separate method
diff --git a/test/active_record_monkey_test.rb b/test/active_record_monkey_test.rb index <HASH>..<HASH> 100644 --- a/test/active_record_monkey_test.rb +++ b/test/active_record_monkey_test.rb @@ -10,7 +10,7 @@ class DatabaseRewinder::InsertRecorderTest < ActiveSupport::TestCase end test '#execute' do - cleane...
SQLite3 has .sqlite3 suffix to its DB name
diff --git a/tests/conftest.py b/tests/conftest.py index <HASH>..<HASH> 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -37,17 +37,17 @@ def sub_cmds(request): @pytest.fixture def cfile(tmpdir): from pathlib import Path - return Path(tmpdir) / 'config.toml' + return Path(str(tmpdir)) / 'config.to...
Convert tmpdir to str to make Path (py<I> and py<I>)
diff --git a/plugin/exo/Library/Options/Transfer.php b/plugin/exo/Library/Options/Transfer.php index <HASH>..<HASH> 100644 --- a/plugin/exo/Library/Options/Transfer.php +++ b/plugin/exo/Library/Options/Transfer.php @@ -2,6 +2,8 @@ namespace UJM\ExoBundle\Library\Options; +use Claroline\AppBundle\API\Options as Api...
[ExoBundle] fixes copy (#<I>)
diff --git a/test/command-mapper.js b/test/command-mapper.js index <HASH>..<HASH> 100644 --- a/test/command-mapper.js +++ b/test/command-mapper.js @@ -13,7 +13,7 @@ var expect = require("chai").expect, suite("CommandMapper", function() { test("should look like a CommandMapper object", function(){ - expect(Comm...
Use the 'itself' flag for 'respondTo' assertion. This will check that the CommandMapper constructor itself responds to the static method 'map' instead of the method on its prototype.
diff --git a/test/com/sun/javadoc/typeAnnotations/smoke/TestSmoke.java b/test/com/sun/javadoc/typeAnnotations/smoke/TestSmoke.java index <HASH>..<HASH> 100644 --- a/test/com/sun/javadoc/typeAnnotations/smoke/TestSmoke.java +++ b/test/com/sun/javadoc/typeAnnotations/smoke/TestSmoke.java @@ -69,7 +69,6 @@ public class Te...
Remove case that was removed from the underlying example: annotations on .class expressions.
diff --git a/tests/test_tokenizer.py b/tests/test_tokenizer.py index <HASH>..<HASH> 100644 --- a/tests/test_tokenizer.py +++ b/tests/test_tokenizer.py @@ -112,6 +112,8 @@ def test_no_ssplit(): def test_spacy(): nlp = stanza.Pipeline(processors='tokenize', dir=TEST_MODELS_DIR, lang='en', tokenize_with_spacy=True...
change unittest test_spacy
diff --git a/tests/__init__.py b/tests/__init__.py index <HASH>..<HASH> 100644 --- a/tests/__init__.py +++ b/tests/__init__.py @@ -25,6 +25,10 @@ class MemcachedTests(unittest.TestCase): self.client.set('test_key', 'test') self.assertEqual('test', self.client.get('test_key')) + def testGetEmptySt...
added a test to add empty strings
diff --git a/aiomanhole/__init__.py b/aiomanhole/__init__.py index <HASH>..<HASH> 100644 --- a/aiomanhole/__init__.py +++ b/aiomanhole/__init__.py @@ -60,8 +60,7 @@ class InteractiveInterpreter: raise ValueError("Cannot handle unknown banner type {!}, expected str or bytes".format(banner.__class__.__name__...
Pointless indirection, be gone!
diff --git a/lib/deliver/deliverfile/deliverfile_creator.rb b/lib/deliver/deliverfile/deliverfile_creator.rb index <HASH>..<HASH> 100644 --- a/lib/deliver/deliverfile/deliverfile_creator.rb +++ b/lib/deliver/deliverfile/deliverfile_creator.rb @@ -81,6 +81,10 @@ module Deliver FileUtils.mkdir_p metadata_path ...
Removed changelog from deliver generated app metadata
diff --git a/src/index.js b/src/index.js index <HASH>..<HASH> 100644 --- a/src/index.js +++ b/src/index.js @@ -25,7 +25,7 @@ function sortMentions(mentions) { * @return {RegExp} */ function mentionRegExp(mention) { - return new RegExp(`^${escapeStringRegExp(mention)}(?:\\b|\\s|$)`, 'i'); + return new RegExp(`^${...
fix mentions when username ends in punctuation. (#<I>)
diff --git a/core-bundle/src/Resources/contao/classes/Versions.php b/core-bundle/src/Resources/contao/classes/Versions.php index <HASH>..<HASH> 100644 --- a/core-bundle/src/Resources/contao/classes/Versions.php +++ b/core-bundle/src/Resources/contao/classes/Versions.php @@ -452,6 +452,7 @@ class Versions extends \Backe...
[Core] Limit the width of the table names in the version overview (see #<I>)
diff --git a/src/geshi/tcl.php b/src/geshi/tcl.php index <HASH>..<HASH> 100644 --- a/src/geshi/tcl.php +++ b/src/geshi/tcl.php @@ -187,9 +187,6 @@ $language_data = array ( 'PARSER_CONTROL' => array( 'COMMENTS' => array( 'DISALLOWED_BEFORE' => '\\' - ), - 'ENABLE_FLAGS' => array( ...
fix: Removed superfluous ENABLE_FLAGS entry from tcl.php
diff --git a/src/services/decoratelayer.js b/src/services/decoratelayer.js index <HASH>..<HASH> 100644 --- a/src/services/decoratelayer.js +++ b/src/services/decoratelayer.js @@ -1,3 +1,12 @@ +/** + * @fileoverview Provides a function that adds properties (using + * `Object.defineProperty`) to the layer, making it poss...
Add @fileoverview to decoratelayer.js
diff --git a/egcd/egcd.py b/egcd/egcd.py index <HASH>..<HASH> 100644 --- a/egcd/egcd.py +++ b/egcd/egcd.py @@ -15,9 +15,9 @@ def egcd(b: int, n: int) -> Tuple[int, int, int]: This implementation is adapted from the sources below: * `Extended Euclidean Algorithm <https://brilliant.org/wiki/extended-euclidean...
Fix formatting issue caused by errant whitespace in docstring.
diff --git a/mod/quiz/export.php b/mod/quiz/export.php index <HASH>..<HASH> 100644 --- a/mod/quiz/export.php +++ b/mod/quiz/export.php @@ -4,6 +4,10 @@ require_once("../../config.php"); require_once("locallib.php"); + // list formats that are supported for export + // need to change this if you add so...
Now only displays available export formats. List is now hard-coded in this file.
diff --git a/lib/flag_shih_tzu.rb b/lib/flag_shih_tzu.rb index <HASH>..<HASH> 100644 --- a/lib/flag_shih_tzu.rb +++ b/lib/flag_shih_tzu.rb @@ -68,7 +68,7 @@ module FlagShihTzu def check_flag_column unless columns.any? { |column| column.name == flag_column && column.type == :integer } - ra...
Changed flags column check to print an error instead of raising an exception. It avoids raising an error when installing the plugin in an existing application.
diff --git a/lib/ezutils/classes/ezsession.php b/lib/ezutils/classes/ezsession.php index <HASH>..<HASH> 100644 --- a/lib/ezutils/classes/ezsession.php +++ b/lib/ezutils/classes/ezsession.php @@ -56,12 +56,18 @@ function &eZSessionRead( $key ) $key =& $db->escapeString( $key ); - $sessionRes =& $db->arrayQue...
- Fixed missing patch to ezsession for handling user idle time. Needed to make new content search work properly. git-svn-id: file:///home/patrick.allaert/svn-git/ezp-repo/ezpublish/trunk@<I> a<I>eee8c-daba-<I>-acae-fa<I>f<I>
diff --git a/pkg/option/monitor.go b/pkg/option/monitor.go index <HASH>..<HASH> 100644 --- a/pkg/option/monitor.go +++ b/pkg/option/monitor.go @@ -52,7 +52,7 @@ const ( // MonitorAggregationLevelMax is the maximum level of aggregation // currently supported. - MonitorAggregationLevelMax = MonitorAggregationLevelM...
Fix setting monitorAggregationLevel to max reflects via CLI This PR fixes setting MonitorAggregationLevel to max to correctly reflect through CLI. Fixes: #<I>
diff --git a/brother_ql/__init__.py b/brother_ql/__init__.py index <HASH>..<HASH> 100644 --- a/brother_ql/__init__.py +++ b/brother_ql/__init__.py @@ -4,3 +4,7 @@ class BrotherQLUnsupportedCmd(BrotherQLError): pass class BrotherQLUnknownModel(BrotherQLError): pass class BrotherQLRasterError(BrotherQLError): pass +f...
make BrotherQLRaster & create_label avail. at package level
diff --git a/asana/version.py b/asana/version.py index <HASH>..<HASH> 100644 --- a/asana/version.py +++ b/asana/version.py @@ -1 +1 @@ -VERSION = '0.2.1' +VERSION = '0.2.2'
Releasing version <I>
diff --git a/src/core/TSDB.java b/src/core/TSDB.java index <HASH>..<HASH> 100644 --- a/src/core/TSDB.java +++ b/src/core/TSDB.java @@ -651,7 +651,7 @@ public final class TSDB { } Bytes.setInt(row, (int) base_time, metrics.width() + Const.SALT_WIDTH()); - Internal.prefixKeyWithSalt(row); + RowKey.p...
Point the TSDB to use the RowKey class for salting support
diff --git a/test/run.js b/test/run.js index <HASH>..<HASH> 100644 --- a/test/run.js +++ b/test/run.js @@ -16,14 +16,14 @@ describe('routes', function(){ it('should configure the module correctly', function(){ routes.configure({ basePath: 'http://local.host', - prefix: '/app/', + pref...
Updated tests Updated the tests to account for the new options parameter in the helper