diff
stringlengths
65
26.7k
message
stringlengths
7
9.92k
diff --git a/lib/flex/http_clients/rest_client.rb b/lib/flex/http_clients/rest_client.rb index <HASH>..<HASH> 100644 --- a/lib/flex/http_clients/rest_client.rb +++ b/lib/flex/http_clients/rest_client.rb @@ -5,7 +5,7 @@ module Flex def request(method, path, data=nil) options = Configuration.http_client...
fix for bad url in rest_client.rb
diff --git a/server.js b/server.js index <HASH>..<HASH> 100644 --- a/server.js +++ b/server.js @@ -127,6 +127,8 @@ Server.prototype.onHttpRequest = function (req, res) { var params try { params = parseHttpRequest(req, { trustProxy: self._trustProxy }) + params.httpReq = req + params.httpRes = res } ...
server: save HTTP req/res in params For GH issue #<I>
diff --git a/bridge.go b/bridge.go index <HASH>..<HASH> 100644 --- a/bridge.go +++ b/bridge.go @@ -353,6 +353,8 @@ func (b *bridge) SyncSourceFor(id ProjectIdentifier) error { return b.sm.SyncSourceFor(id) } +func (b *bridge) Release() { b.sm.Release() } + // versionTypeUnion represents a set of versions that are...
Add Release() to the SourceManager interface This is already being used by dep.
diff --git a/flubber/futures/_task.py b/flubber/futures/_task.py index <HASH>..<HASH> 100644 --- a/flubber/futures/_task.py +++ b/flubber/futures/_task.py @@ -2,6 +2,8 @@ # This file is part of flubber. See the NOTICE for more information. # +import sys + from flubber.futures._base import Executor, Future from fl...
Don't store full exc_info on futures
diff --git a/safe/engine/interpolation.py b/safe/engine/interpolation.py index <HASH>..<HASH> 100644 --- a/safe/engine/interpolation.py +++ b/safe/engine/interpolation.py @@ -313,6 +313,11 @@ def interpolate_polygon_raster(source, target, verify(source.is_vector) verify(source.is_polygon_data) + if attri...
dealt with case where attribute_name is None
diff --git a/tinydb/database.py b/tinydb/database.py index <HASH>..<HASH> 100644 --- a/tinydb/database.py +++ b/tinydb/database.py @@ -37,7 +37,7 @@ def _get_doc_id(doc_id, eid): if doc_id is not None: raise TypeError('cannot pass both eid and doc_id') - warnings.warn('eid has been rename...
Chore: Fix typo in warning, should be singular (#<I>)
diff --git a/src/Core/Request/AbstractApiRequest.php b/src/Core/Request/AbstractApiRequest.php index <HASH>..<HASH> 100644 --- a/src/Core/Request/AbstractApiRequest.php +++ b/src/Core/Request/AbstractApiRequest.php @@ -250,12 +250,12 @@ abstract class AbstractApiRequest implements ClientRequestInterface, ContextAwar ...
fix(ClientLogging): change priority of headers for external user id
diff --git a/lib/installlib.php b/lib/installlib.php index <HASH>..<HASH> 100644 --- a/lib/installlib.php +++ b/lib/installlib.php @@ -515,6 +515,7 @@ function install_cli_database(array $options, $interactive) { $CFG->version = ''; $CFG->release = ''; $version = null; + $release = null; // rea...
helping IDEs with undefined variable detection
diff --git a/src/livestreamer/plugins/ilive.py b/src/livestreamer/plugins/ilive.py index <HASH>..<HASH> 100644 --- a/src/livestreamer/plugins/ilive.py +++ b/src/livestreamer/plugins/ilive.py @@ -71,7 +71,7 @@ class ILive(Plugin): "live": True } - match = re.search("(http(s)?://.+/server.p...
Fix ilive Plugin Resolves #<I> Token now is requested by server2.php, regular expression will match this now Also mobile streams gone? or they need special plugin installed to work. Maybe someone can install it and take a look at the traffic...
diff --git a/code/model/LDAPGateway.php b/code/model/LDAPGateway.php index <HASH>..<HASH> 100644 --- a/code/model/LDAPGateway.php +++ b/code/model/LDAPGateway.php @@ -21,7 +21,11 @@ class LDAPGateway extends Object public function __construct() { parent::__construct(); - $this->ldap = new Zend...
FIX Zend LDAP will crash during DI when no LDAP settings are provided
diff --git a/simplesqlite/core.py b/simplesqlite/core.py index <HASH>..<HASH> 100644 --- a/simplesqlite/core.py +++ b/simplesqlite/core.py @@ -126,6 +126,8 @@ class SimpleSQLite(object): if isinstance(database_src, SimpleSQLite): self.__connection = database_src.connection self.__data...
Modify to passing debug_query flag
diff --git a/examples/Example2_ScheduledReporters.py b/examples/Example2_ScheduledReporters.py index <HASH>..<HASH> 100644 --- a/examples/Example2_ScheduledReporters.py +++ b/examples/Example2_ScheduledReporters.py @@ -50,8 +50,6 @@ results = workspace.getScheduledReporterResults() print('\t...and put these results ...
getScheduledReporterResults now returns a pandas dataframe. Example adjusted accordingly
diff --git a/src/parsers/markdown/standardize-ast/transformers-htmltag/br.js b/src/parsers/markdown/standardize-ast/transformers-htmltag/br.js index <HASH>..<HASH> 100644 --- a/src/parsers/markdown/standardize-ast/transformers-htmltag/br.js +++ b/src/parsers/markdown/standardize-ast/transformers-htmltag/br.js @@ -21,7 ...
Don't store BR tags as open (#<I>)
diff --git a/lib/ronin/engine/engine.rb b/lib/ronin/engine/engine.rb index <HASH>..<HASH> 100644 --- a/lib/ronin/engine/engine.rb +++ b/lib/ronin/engine/engine.rb @@ -28,6 +28,7 @@ require 'ronin/model/has_authors' require 'ronin/model/cacheable' require 'ronin/ui/output/helpers' +require 'data_paths/finders' requ...
Include DataPaths::Finders into all Engines.
diff --git a/lib/connection.js b/lib/connection.js index <HASH>..<HASH> 100644 --- a/lib/connection.js +++ b/lib/connection.js @@ -189,6 +189,9 @@ Connection.prototype._allocateId = function _allocateId(stream, id) { stream.id = id; this.emit('new_stream', stream, id); + // * handling stream errors as connecti...
Stream: rejecting invalid stream level frame with PROTOCOL_ERROR
diff --git a/src/compiler.js b/src/compiler.js index <HASH>..<HASH> 100644 --- a/src/compiler.js +++ b/src/compiler.js @@ -6,11 +6,14 @@ import { cond, equals, identity, + ifElse, join, map, pipe, toPairs, - type + type, + unary, + when } from 'ramda'; import { transf...
Replace cond by ifElse
diff --git a/pkg/social/google_oauth.go b/pkg/social/google_oauth.go index <HASH>..<HASH> 100644 --- a/pkg/social/google_oauth.go +++ b/pkg/social/google_oauth.go @@ -48,6 +48,7 @@ func (s *SocialGoogle) UserInfo(client *http.Client, token *oauth2.Token) (*Basi } return &BasicUserInfo{ + Id: fmt.Sprintf("%d",...
Added Id to BasicUserInfo returns
diff --git a/command/image/build.go b/command/image/build.go index <HASH>..<HASH> 100644 --- a/command/image/build.go +++ b/command/image/build.go @@ -138,7 +138,6 @@ func (out *lastProgressOutput) WriteProgress(prog progress.Progress) error { } func runBuild(dockerCli *command.DockerCli, options buildOptions) erro...
Some things just need to be line wrapped.
diff --git a/flask_appbuilder/static/appbuilder/js/ab_filters.js b/flask_appbuilder/static/appbuilder/js/ab_filters.js index <HASH>..<HASH> 100644 --- a/flask_appbuilder/static/appbuilder/js/ab_filters.js +++ b/flask_appbuilder/static/appbuilder/js/ab_filters.js @@ -92,7 +92,7 @@ var AdminFilters = function(element, la...
Update ab_filters.js
diff --git a/go/engine/login_current_device.go b/go/engine/login_current_device.go index <HASH>..<HASH> 100644 --- a/go/engine/login_current_device.go +++ b/go/engine/login_current_device.go @@ -72,6 +72,20 @@ func (e *LoginCurrentDevice) Run(ctx *Context) error { return errNoDevice } + // Make sure the device I...
check whether the current device is still valid during login
diff --git a/spec/lib/tox/client_spec.rb b/spec/lib/tox/client_spec.rb index <HASH>..<HASH> 100644 --- a/spec/lib/tox/client_spec.rb +++ b/spec/lib/tox/client_spec.rb @@ -80,4 +80,10 @@ RSpec.describe Tox::Client do end end end + + describe '#running?' do + it 'returns false by default' do + exp...
Add spec for Tox::Client#running?
diff --git a/user_management/api/views.py b/user_management/api/views.py index <HASH>..<HASH> 100644 --- a/user_management/api/views.py +++ b/user_management/api/views.py @@ -230,11 +230,10 @@ class VerifyAccountView(views.APIView): Set user as a class attribute or raise an `InvalidExpiredToken`. ""...
Replace getattr with a try..except
diff --git a/file_picker/views.py b/file_picker/views.py index <HASH>..<HASH> 100755 --- a/file_picker/views.py +++ b/file_picker/views.py @@ -32,7 +32,10 @@ class FilePickerBase(object): self.field_names = model._meta.get_all_field_names() self.field_labels = {} for field_name in model._meta...
don't die on fields that don't exist
diff --git a/hawtio-system/src/main/java/io/hawt/web/filters/ContentSecurityPolicyFilter.java b/hawtio-system/src/main/java/io/hawt/web/filters/ContentSecurityPolicyFilter.java index <HASH>..<HASH> 100644 --- a/hawtio-system/src/main/java/io/hawt/web/filters/ContentSecurityPolicyFilter.java +++ b/hawtio-system/src/main...
and new line, sheesh
diff --git a/lib/jitsu.js b/lib/jitsu.js index <HASH>..<HASH> 100644 --- a/lib/jitsu.js +++ b/lib/jitsu.js @@ -53,7 +53,7 @@ jitsu.use(flatiron.plugins.cli, { string: true }, raw: { - description: 'jitsu will only output line-delimited raw JSON ( useful for piping )', + description: 'jitsu wi...
[minor] Minor change in help text
diff --git a/provider/oracle/instance_test.go b/provider/oracle/instance_test.go index <HASH>..<HASH> 100644 --- a/provider/oracle/instance_test.go +++ b/provider/oracle/instance_test.go @@ -12,6 +12,7 @@ import ( gc "gopkg.in/check.v1" "github.com/juju/juju/core/instance" + corenetwork "github.com/juju/juju/core...
Fixes tests in provider/oracle for modules relocated to core/network.
diff --git a/src/components/DesktopComponent.js b/src/components/DesktopComponent.js index <HASH>..<HASH> 100644 --- a/src/components/DesktopComponent.js +++ b/src/components/DesktopComponent.js @@ -76,6 +76,12 @@ class DesktopComponent { // if it can have multiple ex. VerticalBox this.element.deleteAt(th...
Add support for deleting window. Fixes #<I>
diff --git a/app/aid/proxy/proxy.go b/app/aid/proxy/proxy.go index <HASH>..<HASH> 100644 --- a/app/aid/proxy/proxy.go +++ b/app/aid/proxy/proxy.go @@ -45,7 +45,7 @@ const ( func New() *Proxy { p := &Proxy{ ipRegexp: regexp.MustCompile(`[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+`), - proxyRegexp: regexp.MustCompile(`http[...
Proxy: support for filling in user name and password
diff --git a/requests_gpgauthlib/gpgauth_session.py b/requests_gpgauthlib/gpgauth_session.py index <HASH>..<HASH> 100644 --- a/requests_gpgauthlib/gpgauth_session.py +++ b/requests_gpgauthlib/gpgauth_session.py @@ -185,6 +185,7 @@ class GPGAuthSession(Session): .replace('\\\\', '\\') ).replace('\\...
Add debug statement to help debug stage1 errors
diff --git a/gulpfile.js b/gulpfile.js index <HASH>..<HASH> 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -155,4 +155,4 @@ exports.styles = _styles exports.vendor = _vendor exports.watch = _watch -exports.default = series(parallel(_styles, _scripts), _serve, _watch) +exports.default = series(parallel(_styles, _scri...
Run `serve` and `watch` tasks in parallel
diff --git a/main.go b/main.go index <HASH>..<HASH> 100644 --- a/main.go +++ b/main.go @@ -176,7 +176,6 @@ func setupRouteFetcher(logger lager.Logger, c *config.Config, registry rregistry uaaClient := newUaaClient(logger, clock, c) - logger.Info("fetching-token-from-uaa") _, err := uaaClient.FetchToken(false) ...
Update log messages in test [#<I>]
diff --git a/src/adapters/pouch.idb.js b/src/adapters/pouch.idb.js index <HASH>..<HASH> 100644 --- a/src/adapters/pouch.idb.js +++ b/src/adapters/pouch.idb.js @@ -837,6 +837,9 @@ IdbPouch.Changes = (function() { if (opts.filter && !opts.filter.apply(this, [change.doc])) { return; } + if (!op...
Dont include docs by default for feed
diff --git a/LiSE/LiSE/tests/test_character.py b/LiSE/LiSE/tests/test_character.py index <HASH>..<HASH> 100644 --- a/LiSE/LiSE/tests/test_character.py +++ b/LiSE/LiSE/tests/test_character.py @@ -40,6 +40,7 @@ class CharacterSetStorageTest(CharacterTest, allegedb.tests.test_all.SetStorageT def set_in_mapping(mapp, ...
Add docstrings to tests.test_character
diff --git a/spec/flatiron-lab-generator_spec.rb b/spec/flatiron-lab-generator_spec.rb index <HASH>..<HASH> 100644 --- a/spec/flatiron-lab-generator_spec.rb +++ b/spec/flatiron-lab-generator_spec.rb @@ -61,7 +61,9 @@ describe FlatironLabGenerator::TemplateMaker do end it "creates a sinatra-mvc lab" do - + ...
sinatra mvc lab now tested
diff --git a/src/dpdb/dpdb-cache.js b/src/dpdb/dpdb-cache.js index <HASH>..<HASH> 100644 --- a/src/dpdb/dpdb-cache.js +++ b/src/dpdb/dpdb-cache.js @@ -662,6 +662,17 @@ var DPDB_CACHE = { { "type": "android", "rules": [ + { "mdmh": "samsung/*/SM-N920W8/*" }, + { "ua": "SM-N920W8" } + ], + "d...
Add Note 5 user agent variant to Dpdb cache We found that for one of our devices (a Samsung Note 5) the distortions were not being applied correctly, the reason being that the model number is "SM-N<I>W8" for Canadian devices.
diff --git a/lib/opskeleton/push.rb b/lib/opskeleton/push.rb index <HASH>..<HASH> 100644 --- a/lib/opskeleton/push.rb +++ b/lib/opskeleton/push.rb @@ -11,7 +11,7 @@ module Opsk class Push < Thor::Group include Thorable, Thor::Actions - class_option :writable_remote, :type=> :string, :desc => 'add remote w...
push only if there are local changes to be pushed
diff --git a/source/git-api.js b/source/git-api.js index <HASH>..<HASH> 100644 --- a/source/git-api.js +++ b/source/git-api.js @@ -610,7 +610,7 @@ exports.registerApi = (env) => { if (config.dev) { app.post(`${exports.pathPrefix}/testing/createtempdir`, ensureAuthenticated, (req, res) => { - temp.mkdir('...
returning normalized path for temp dir creation
diff --git a/lib/manager.js b/lib/manager.js index <HASH>..<HASH> 100644 --- a/lib/manager.js +++ b/lib/manager.js @@ -3,8 +3,8 @@ var EventEmitter = require('events').EventEmitter; var LessFile = require('./lessfile'); function Manager(srcDir, dstDir) { - this.srcDir = srcDir; - this.dstDir = dstDir; + this.src...
Remove './' from beginning of file paths, it's unnecessary and breaks the file name creation logic
diff --git a/rollbar-payload/src/test/java/com/rollbar/payload/data/body/FrameTest.java b/rollbar-payload/src/test/java/com/rollbar/payload/data/body/FrameTest.java index <HASH>..<HASH> 100644 --- a/rollbar-payload/src/test/java/com/rollbar/payload/data/body/FrameTest.java +++ b/rollbar-payload/src/test/java/com/rollba...
unused throws clause, makes var private
diff --git a/tests.py b/tests.py index <HASH>..<HASH> 100755 --- a/tests.py +++ b/tests.py @@ -299,6 +299,11 @@ class TestSave(SaveAndCheck): [(unicode(s),)] ) + def test_save_and_drop(self): + scraperwiki.sql.save([], dict(foo=7), table_name="dropper") + scraperwiki.sql.execute...
Test that after dropping a table, can still save.
diff --git a/src/Bootstrap/Drupal.php b/src/Bootstrap/Drupal.php index <HASH>..<HASH> 100644 --- a/src/Bootstrap/Drupal.php +++ b/src/Bootstrap/Drupal.php @@ -4,6 +4,7 @@ namespace Drupal\Console\Bootstrap; use Doctrine\Common\Annotations\AnnotationRegistry; use Symfony\Component\HttpFoundation\Request; +use Drupal...
[BUGFIX #<I>] uri parameter not used (#<I>) - PB: it looks like the uri parameter is not taken in account anymore and the multisite doesn't work - FIX: read the uri option and generate a symfony request accordingly before initializing the drupal container
diff --git a/examples/usbcat/device.py b/examples/usbcat/device.py index <HASH>..<HASH> 100755 --- a/examples/usbcat/device.py +++ b/examples/usbcat/device.py @@ -37,7 +37,7 @@ def noIntr(func): while True: try: return func() - except IOError, exc: + except (IOError, OSError) as...
examples/usbcat/device: Also catch OSError to retry after EINTR libaio raises OSError (maybe wrongly ?).
diff --git a/DataFixtures/ORM/LoadProductStatusData.php b/DataFixtures/ORM/LoadProductStatusData.php index <HASH>..<HASH> 100755 --- a/DataFixtures/ORM/LoadProductStatusData.php +++ b/DataFixtures/ORM/LoadProductStatusData.php @@ -13,7 +13,7 @@ namespace WellCommerce\Bundle\ProductStatusBundle\DataFixtures\ORM; use...
Moved AbstractDataFixture to DoctrineBundle (cherry picked from commit <I>e<I>ccffb<I>b<I>b<I>d<I>c<I>a8)
diff --git a/code/model/EventTicket.php b/code/model/EventTicket.php index <HASH>..<HASH> 100644 --- a/code/model/EventTicket.php +++ b/code/model/EventTicket.php @@ -82,7 +82,7 @@ class EventTicket extends DataObject { * @return RequiredFields */ public function getValidator() { - return new RequiredFields('T...
Removed StartDate and EndDate validation requirements
diff --git a/src/lib/Behat/PageElement/LanguagePicker.php b/src/lib/Behat/PageElement/LanguagePicker.php index <HASH>..<HASH> 100644 --- a/src/lib/Behat/PageElement/LanguagePicker.php +++ b/src/lib/Behat/PageElement/LanguagePicker.php @@ -22,8 +22,8 @@ class LanguagePicker extends Element { parent::__cons...
[Behat] Adjusted language picker selector
diff --git a/src/Engine/Elasticsearch/ElasticsearchAdapter.php b/src/Engine/Elasticsearch/ElasticsearchAdapter.php index <HASH>..<HASH> 100644 --- a/src/Engine/Elasticsearch/ElasticsearchAdapter.php +++ b/src/Engine/Elasticsearch/ElasticsearchAdapter.php @@ -44,7 +44,7 @@ class ElasticsearchAdapter implements AdapterIn...
<I> - Removed array brackets.
diff --git a/lib/pay_dirt/use_case.rb b/lib/pay_dirt/use_case.rb index <HASH>..<HASH> 100644 --- a/lib/pay_dirt/use_case.rb +++ b/lib/pay_dirt/use_case.rb @@ -1,4 +1,3 @@ -require_relative "result" module PayDirt module UseCase def self.included(base)
Don't need to require this here
diff --git a/cmd/kubeadm/app/master/selfhosted.go b/cmd/kubeadm/app/master/selfhosted.go index <HASH>..<HASH> 100644 --- a/cmd/kubeadm/app/master/selfhosted.go +++ b/cmd/kubeadm/app/master/selfhosted.go @@ -219,6 +219,7 @@ func getAPIServerDS(cfg *kubeadmapi.MasterConfiguration, volumes []v1.Volume, vo }, ...
kubeadm: When self-hosting, cluster DNS should be used
diff --git a/src/frontend/org/voltdb/messaging/InitiateTaskMessage.java b/src/frontend/org/voltdb/messaging/InitiateTaskMessage.java index <HASH>..<HASH> 100644 --- a/src/frontend/org/voltdb/messaging/InitiateTaskMessage.java +++ b/src/frontend/org/voltdb/messaging/InitiateTaskMessage.java @@ -135,6 +135,7 @@ public cl...
We're gonna need an actual SPI() before we can fill it.
diff --git a/flusher.go b/flusher.go index <HASH>..<HASH> 100644 --- a/flusher.go +++ b/flusher.go @@ -94,6 +94,12 @@ func (s *Server) FlushLocal(interval time.Duration, metricLimit int) { // since not everything in tempMetrics is safe for sharing go s.flushForward(tempMetrics) + go func() { + for _, p := range ...
Enable plugins on local veneur (fleet) instances
diff --git a/client/my-sites/hosting/web-server-settings-card/index.js b/client/my-sites/hosting/web-server-settings-card/index.js index <HASH>..<HASH> 100644 --- a/client/my-sites/hosting/web-server-settings-card/index.js +++ b/client/my-sites/hosting/web-server-settings-card/index.js @@ -136,7 +136,7 @@ const WebServ...
WoA: Stop recommending default static file <I> (#<I>)
diff --git a/rivescript/rivescript.py b/rivescript/rivescript.py index <HASH>..<HASH> 100644 --- a/rivescript/rivescript.py +++ b/rivescript/rivescript.py @@ -182,12 +182,13 @@ class RiveScript(object): self._warn("Error: " + directory + " is not a directory.") return - for item in os...
Added recursive loading to load_directory
diff --git a/src/Window.js b/src/Window.js index <HASH>..<HASH> 100644 --- a/src/Window.js +++ b/src/Window.js @@ -1361,8 +1361,7 @@ const _normalizeUrl = utils._makeNormalizeUrl(options.baseUrl); GlobalContext.clearGamepads(); }; const _onmakeswapchain = context => { - const windowHandle = contex...
Perform XR context setTopLevel set in Window.js
diff --git a/mode/cobol/cobol.js b/mode/cobol/cobol.js index <HASH>..<HASH> 100644 --- a/mode/cobol/cobol.js +++ b/mode/cobol/cobol.js @@ -195,7 +195,7 @@ CodeMirror.defineMode("cobol", function () { case "string": // multi-line string parsing mode var next = false; while ((next = stream.next()...
[cobol mode] Highlight single or double quote inside single quotes as closed string
diff --git a/src/Composer/Command/ShowCommand.php b/src/Composer/Command/ShowCommand.php index <HASH>..<HASH> 100644 --- a/src/Composer/Command/ShowCommand.php +++ b/src/Composer/Command/ShowCommand.php @@ -248,7 +248,7 @@ EOT } else { $latestPackage = null; if ($input->ge...
Fix #<I> - inconsistent behavior with minor-only flag
diff --git a/test/karma.browserstack.js b/test/karma.browserstack.js index <HASH>..<HASH> 100644 --- a/test/karma.browserstack.js +++ b/test/karma.browserstack.js @@ -8,7 +8,7 @@ module.exports = { bs_firefox_latest_supported: { base: 'BrowserStack', browser: 'firefox', - browser_version: '50',...
Upgrade browser tests to browsers supporting IndexedDB <I>
diff --git a/lib/index.js b/lib/index.js index <HASH>..<HASH> 100644 --- a/lib/index.js +++ b/lib/index.js @@ -141,7 +141,7 @@ function tunnelProxy(server, proxy) { delete headers[pluginMgr.HOST_PORT_HEADER]; } - var realUrl = _rules.rule && _rules.rule.url; + var realUrl = _rules.rule...
refactor: Change https: to tunnel:
diff --git a/Kwf/Util/Update/Runner.php b/Kwf/Util/Update/Runner.php index <HASH>..<HASH> 100644 --- a/Kwf/Util/Update/Runner.php +++ b/Kwf/Util/Update/Runner.php @@ -101,7 +101,7 @@ class Kwf_Util_Update_Runner $this->_executeUpdatesAction('postUpdate'); if (!$this->_skipClearCache) { if...
fix logic, verbose means output
diff --git a/languagetool-language-modules/uk/src/main/java/org/languagetool/rules/uk/UkrainianWordRepeatRule.java b/languagetool-language-modules/uk/src/main/java/org/languagetool/rules/uk/UkrainianWordRepeatRule.java index <HASH>..<HASH> 100644 --- a/languagetool-language-modules/uk/src/main/java/org/languagetool/rul...
[uk] Give the rule unique id
diff --git a/master/buildbot/test/__init__.py b/master/buildbot/test/__init__.py index <HASH>..<HASH> 100644 --- a/master/buildbot/test/__init__.py +++ b/master/buildbot/test/__init__.py @@ -126,3 +126,9 @@ warnings.filterwarnings('ignore', "'U' mode is deprecated", DeprecationWarning) # sqlalchemy.migrate is calling ...
Ignore warnings about bytes filepaths on Windows with Python 3.
diff --git a/lib/specinfra/version.rb b/lib/specinfra/version.rb index <HASH>..<HASH> 100644 --- a/lib/specinfra/version.rb +++ b/lib/specinfra/version.rb @@ -1,3 +1,3 @@ module Specinfra - VERSION = "2.33.0" + VERSION = "2.33.1" end
Bump up version [skip ci]
diff --git a/tests/integration/adapters/pouch-test.js b/tests/integration/adapters/pouch-test.js index <HASH>..<HASH> 100644 --- a/tests/integration/adapters/pouch-test.js +++ b/tests/integration/adapters/pouch-test.js @@ -20,6 +20,17 @@ module('adapter:pouch [integration]', { // issue. (new PouchDB('ember-po...
Wait for app boot in integration test. In ember-data beta<I> and later, with ember <I> and later, the store is configured in an instance initializer. You have to wait for the app to boot in order for all the instance initializers to have been run.
diff --git a/src/main/java/skadistats/clarity/processor/runner/ControllableRunner.java b/src/main/java/skadistats/clarity/processor/runner/ControllableRunner.java index <HASH>..<HASH> 100644 --- a/src/main/java/skadistats/clarity/processor/runner/ControllableRunner.java +++ b/src/main/java/skadistats/clarity/processor/...
fix bug with end of tick 0 not properly emitted sometimes
diff --git a/blog/classes/privacy/provider.php b/blog/classes/privacy/provider.php index <HASH>..<HASH> 100644 --- a/blog/classes/privacy/provider.php +++ b/blog/classes/privacy/provider.php @@ -212,7 +212,7 @@ class provider implements // Loop over each blog entry in context. ...
MDL-<I> core_blog: Prevent randomness in comments order
diff --git a/terraform/eval_validate.go b/terraform/eval_validate.go index <HASH>..<HASH> 100644 --- a/terraform/eval_validate.go +++ b/terraform/eval_validate.go @@ -208,10 +208,8 @@ func (n *EvalValidateProvisioner) validateConnConfig(ctx EvalContext, config *co // exactly what is expected for a given connection typ...
core: Don't include "type" in connection block schema The config loader already extracts this during its initial pass and saves it as a separate field in a configs.Connection value, so requiring it again here causes confusing errors about this attribute being provided but not set.
diff --git a/test/kamerling/logging_test.rb b/test/kamerling/logging_test.rb index <HASH>..<HASH> 100644 --- a/test/kamerling/logging_test.rb +++ b/test/kamerling/logging_test.rb @@ -83,6 +83,7 @@ module Kamerling end it 'logs UDP server receives' do + run_all_threads 100.times { udp_cli...
The need to rewrite logging to synced: <I>%
diff --git a/src/saml2/saml.py b/src/saml2/saml.py index <HASH>..<HASH> 100644 --- a/src/saml2/saml.py +++ b/src/saml2/saml.py @@ -166,11 +166,16 @@ class AttributeValueBase(SamlBase): try: self.extension_attributes[XSI_TYPE] = typ - self.extension_attributes['xmlns:xs'] = XS_NAMESPAC...
It's cleaner to conditionally add this attribute As per @jgehrcke's comment
diff --git a/lib/vagrant/action/builtin/handle_forwarded_port_collisions.rb b/lib/vagrant/action/builtin/handle_forwarded_port_collisions.rb index <HASH>..<HASH> 100644 --- a/lib/vagrant/action/builtin/handle_forwarded_port_collisions.rb +++ b/lib/vagrant/action/builtin/handle_forwarded_port_collisions.rb @@ -156,8 +15...
Remove redundant app call from action "handle_forwarded_port_collisions" This call should not be in the `handle` helper method. It is specified in the `call` method already.
diff --git a/lib/sup/colormap.rb b/lib/sup/colormap.rb index <HASH>..<HASH> 100644 --- a/lib/sup/colormap.rb +++ b/lib/sup/colormap.rb @@ -213,7 +213,7 @@ class Colormap add symbol, fg, bg, attrs end - BufferManager.flash error if error + warn error if error end def self.instance; @@instance...
send color errors to the log instead of flashing During startup, when these errors are most likely to occur, not enough buffer initialization has been done for BufferManager.flash to work.
diff --git a/src/Route.php b/src/Route.php index <HASH>..<HASH> 100644 --- a/src/Route.php +++ b/src/Route.php @@ -374,10 +374,9 @@ class Route implements QueryRouteInterface { throw new \InvalidArgumentException; } $callback = $this->get( $which ); - if ( ! is_callable( $callback ...
Do not throw if no callable runAfter/Before
diff --git a/packages/wdio-cli/src/index.js b/packages/wdio-cli/src/index.js index <HASH>..<HASH> 100644 --- a/packages/wdio-cli/src/index.js +++ b/packages/wdio-cli/src/index.js @@ -19,6 +19,17 @@ for (const param of CLI_PARAMS) { } const params = pickBy(argv.argv) + +/** + * fail execution if more than one wdio c...
wdio-cli: make sure only one conf file was specified
diff --git a/lib/Models/GlobeOrMap.js b/lib/Models/GlobeOrMap.js index <HASH>..<HASH> 100644 --- a/lib/Models/GlobeOrMap.js +++ b/lib/Models/GlobeOrMap.js @@ -246,12 +246,14 @@ GlobeOrMap.prototype._highlightFeature = function(feature) { 'marker-color': this.terria.baseMapContrastColor ...
Wait for GeoJSON region selection layer to load before hiding it
diff --git a/lib/backup/cli/helpers.rb b/lib/backup/cli/helpers.rb index <HASH>..<HASH> 100644 --- a/lib/backup/cli/helpers.rb +++ b/lib/backup/cli/helpers.rb @@ -23,6 +23,10 @@ module Backup begin out, err = '', '' + # popen4 doesn't work in 1.8.7 with stock versions of ruby shipped + ...
Fix segfaults with Popen4 and Ruby <I>
diff --git a/tasklib/serializing.py b/tasklib/serializing.py index <HASH>..<HASH> 100644 --- a/tasklib/serializing.py +++ b/tasklib/serializing.py @@ -178,8 +178,8 @@ class SerializingObject(object): def deserialize_tags(self, tags): if isinstance(tags, six.string_types): - return tags.split(...
SerializingObject: Serialize tags into sets, not lists
diff --git a/confutils/__init__.py b/confutils/__init__.py index <HASH>..<HASH> 100644 --- a/confutils/__init__.py +++ b/confutils/__init__.py @@ -5,7 +5,7 @@ from __future__ import unicode_literals __author__ = "Raphaël Barrois <raphael.barrois+confutils@polytechnique.org>" -__version__ = '0.3.0' +__version__ = '0...
Version bump to <I>.
diff --git a/core-bundle/src/Resources/contao/library/Contao/Input.php b/core-bundle/src/Resources/contao/library/Contao/Input.php index <HASH>..<HASH> 100644 --- a/core-bundle/src/Resources/contao/library/Contao/Input.php +++ b/core-bundle/src/Resources/contao/library/Contao/Input.php @@ -462,6 +462,12 @@ class Input ...
[Core] Fix another weakness in the `Input` class and further harden the `deserialize()` function Fix another weakness in the `Input` class and further harden the `deserialize()` function. Thanks to Martin Auswöger for his input.
diff --git a/activesupport/lib/active_support/core_ext/class/attribute.rb b/activesupport/lib/active_support/core_ext/class/attribute.rb index <HASH>..<HASH> 100644 --- a/activesupport/lib/active_support/core_ext/class/attribute.rb +++ b/activesupport/lib/active_support/core_ext/class/attribute.rb @@ -69,7 +69,8 @@ cla...
Remove 'assigned but unused variable' warning
diff --git a/store_memory.go b/store_memory.go index <HASH>..<HASH> 100644 --- a/store_memory.go +++ b/store_memory.go @@ -67,7 +67,7 @@ func (s *MemoryStore) Get(key string, rate Rate) (Context, error) { return Context{ Limit: rate.Limit, Remaining: remaining, - Reset: time.Now().Add(time.Duration(ite...
deal with change of go-cache
diff --git a/tools/nni_cmd/config_schema.py b/tools/nni_cmd/config_schema.py index <HASH>..<HASH> 100644 --- a/tools/nni_cmd/config_schema.py +++ b/tools/nni_cmd/config_schema.py @@ -1,8 +1,9 @@ # Copyright (c) Microsoft Corporation. # Licensed under the MIT license. -import os import json +import logging +import ...
shut validator ipc warning (#<I>)
diff --git a/configure.py b/configure.py index <HASH>..<HASH> 100755 --- a/configure.py +++ b/configure.py @@ -133,7 +133,9 @@ class Bootstrap: return self.writer.newline() def variable(self, key, val): - self.vars[key] = self._expand(val) + # In bootstrap mode, we have no ninja process to...
win: Only drop /showIncludes in bootstrap builds. Fixes #<I>.
diff --git a/views/widget/header-logo.blade.php b/views/widget/header-logo.blade.php index <HASH>..<HASH> 100644 --- a/views/widget/header-logo.blade.php +++ b/views/widget/header-logo.blade.php @@ -1,6 +1,6 @@ @extends('widget.header-widget') @section('widget') - <div class="c-header__logo t-header__logo"...
Removes t-class from logo
diff --git a/channeldb/channel.go b/channeldb/channel.go index <HASH>..<HASH> 100644 --- a/channeldb/channel.go +++ b/channeldb/channel.go @@ -1239,11 +1239,11 @@ func syncNewChannel(tx *bbolt.Tx, c *OpenChannel, addrs []net.Addr) error { return putLinkNode(nodeInfoBucket, linkNode) } -// UpdateCommitment updates ...
channeldb: update UpdateCommitment description This method is only used to update the local commitment transaction. Updated comment accordingly.
diff --git a/cli/github/release_notes.py b/cli/github/release_notes.py index <HASH>..<HASH> 100644 --- a/cli/github/release_notes.py +++ b/cli/github/release_notes.py @@ -47,7 +47,8 @@ class BaseReleaseNotesGenerator(object): class BaseChangeNotesParser(object): - def __init__(self): + def __init__(self, tit...
title is required in init of BaseChangeNotesParser
diff --git a/src/directives/schema-form.js b/src/directives/schema-form.js index <HASH>..<HASH> 100644 --- a/src/directives/schema-form.js +++ b/src/directives/schema-form.js @@ -147,6 +147,18 @@ angular.module('schemaForm') // let it be. scope.externalDestructionInProgress = true; }); + ...
Eval expression in man sf-schema directive Needed for new bootrstrap decorators condition
diff --git a/src/Gitonomy/Git/Commit.php b/src/Gitonomy/Git/Commit.php index <HASH>..<HASH> 100644 --- a/src/Gitonomy/Git/Commit.php +++ b/src/Gitonomy/Git/Commit.php @@ -191,6 +191,14 @@ class Commit } /** + * Returns a fixed-with short hash. + */ + public function getFixedShortHash($length = 6)...
add a method to get fixed with commit hash
diff --git a/bcbio/install.py b/bcbio/install.py index <HASH>..<HASH> 100644 --- a/bcbio/install.py +++ b/bcbio/install.py @@ -724,7 +724,7 @@ def add_subparser(subparsers): action="append", default=[], type=_check_toolplus) parser.add_argument("--datatarget", help="Data to install. Allows...
added remaining modification for dbscsnv
diff --git a/src/Service/Config/Fallback.php b/src/Service/Config/Fallback.php index <HASH>..<HASH> 100644 --- a/src/Service/Config/Fallback.php +++ b/src/Service/Config/Fallback.php @@ -126,21 +126,21 @@ abstract class Fallback implements ConfigConstInterface * * @var string */ - protected const C...
Made the folder constants public, so plugins could use them.
diff --git a/src/base/head.js b/src/base/head.js index <HASH>..<HASH> 100644 --- a/src/base/head.js +++ b/src/base/head.js @@ -1,7 +1,7 @@ import { take } from './take' ; /** - * @function head * Same as {@link take}. + * @function head */ export const head = take ; diff --git a/src/map/filter.js b/src/map/fil...
fix order in documentation of head and filtertrue
diff --git a/pysd/py_backend/vensim/vensim2py.py b/pysd/py_backend/vensim/vensim2py.py index <HASH>..<HASH> 100644 --- a/pysd/py_backend/vensim/vensim2py.py +++ b/pysd/py_backend/vensim/vensim2py.py @@ -48,7 +48,7 @@ def get_file_sections(file_str): main = !":MACRO:" ~r".+(?!:MACRO:)" name = basic_id / esca...
Fix missing grammar definition for identifiers.
diff --git a/version/info.go b/version/info.go index <HASH>..<HASH> 100644 --- a/version/info.go +++ b/version/info.go @@ -26,7 +26,6 @@ var ( Branch string BuildUser string BuildDate string - GoVersion = runtime.Version() ) // Map provides the iterable version information. @@ -36,7 +35,7 @@ var Map = map[...
Simplify runtime version code more It's no longer a build-time injected variable (as the comment above its block indicates), so move it to the map below.
diff --git a/build-test.js b/build-test.js index <HASH>..<HASH> 100755 --- a/build-test.js +++ b/build-test.js @@ -1,3 +1,15 @@ #!/usr/bin/env node -require('./')() +process.env.NODE_ENV = 'test' + +var path = require('path') +var test = null + +try { + test = require(path.join(process.cwd(), 'package.json')).prebu...
support prebuild.test for test script setup
diff --git a/src/js/mep-feature-tracks.js b/src/js/mep-feature-tracks.js index <HASH>..<HASH> 100644 --- a/src/js/mep-feature-tracks.js +++ b/src/js/mep-feature-tracks.js @@ -589,7 +589,8 @@ type: 'GET', dataType: 'jsonp', success: function(d) { - callback(d.responseData.translatedText); + + ...
Fixes errors that come when Google translate is over capacity
diff --git a/backtrader/utils/autodict.py b/backtrader/utils/autodict.py index <HASH>..<HASH> 100644 --- a/backtrader/utils/autodict.py +++ b/backtrader/utils/autodict.py @@ -43,7 +43,13 @@ class AutoDict(dict): if isinstance(val, (AutoDict, AutoOrderedDict)): val._close() + def _open...
Add exception raising to AutoDict if closed and _open method
diff --git a/lib/dxruby_sdl/font.rb b/lib/dxruby_sdl/font.rb index <HASH>..<HASH> 100644 --- a/lib/dxruby_sdl/font.rb +++ b/lib/dxruby_sdl/font.rb @@ -19,6 +19,7 @@ module DXRubySDL private + # :nocov: if /darwin/ =~ RUBY_PLATFORM FONTS = { 'osaka' => '/Library/Fonts/osaka.ttf', @@ -31,...
added :nocov: in Font.
diff --git a/cmd/jujud/agent/machine.go b/cmd/jujud/agent/machine.go index <HASH>..<HASH> 100644 --- a/cmd/jujud/agent/machine.go +++ b/cmd/jujud/agent/machine.go @@ -720,6 +720,7 @@ func (a *MachineAgent) startAPIWorkers(apiConn api.Connection) (_ worker.Worker, IsFatal: agenterrors.ConnectionIsFatal(logger, ...
Add logger to runner for api workers. These run inside the unconverted-api-workers and their state changes are not always obvious. Allow for more detail from the runner.
diff --git a/Query/Builder.php b/Query/Builder.php index <HASH>..<HASH> 100755 --- a/Query/Builder.php +++ b/Query/Builder.php @@ -1289,7 +1289,7 @@ class Builder $this->wheres[] = compact('type', 'query', 'boolean'); - $this->addBinding($query->getBindings(), 'where'); + $this->a...
Ignore non-where bindings in nested where() constraints (#<I>)
diff --git a/test/common.js b/test/common.js index <HASH>..<HASH> 100644 --- a/test/common.js +++ b/test/common.js @@ -18,7 +18,7 @@ var Stormpath = require('../lib'); chai.use(sinonChai); function u(){} -u.BASE_URL = 'https://api.stormpath.com/v1'; +u.BASE_URL = 'https://api.stormpath.com'; /** adds '/v1' to rela...
`u.BASE_URL` should not contain `/v1` as this will be added by `u.v1()`
diff --git a/lib/active_merchant/billing/gateways/adyen.rb b/lib/active_merchant/billing/gateways/adyen.rb index <HASH>..<HASH> 100644 --- a/lib/active_merchant/billing/gateways/adyen.rb +++ b/lib/active_merchant/billing/gateways/adyen.rb @@ -14,8 +14,6 @@ module ActiveMerchant #:nodoc: def initialize(options ...
Reduce the reliance on instance variables.
diff --git a/src/Application.php b/src/Application.php index <HASH>..<HASH> 100644 --- a/src/Application.php +++ b/src/Application.php @@ -88,7 +88,9 @@ class Application extends BaseApplication )); } - $this['sandstone.push.event_forwarder']->forwardAllEvents($eventName); + $this-...
forward events once application is booting to avoid to use dispatcher prematurely
diff --git a/templates/ubuntu-10.04.3-server-amd64/definition.rb b/templates/ubuntu-10.04.3-server-amd64/definition.rb index <HASH>..<HASH> 100644 --- a/templates/ubuntu-10.04.3-server-amd64/definition.rb +++ b/templates/ubuntu-10.04.3-server-amd64/definition.rb @@ -7,7 +7,7 @@ Veewee::Session.declare( { ...
Add missing space so auto-install/enable isn't concatenated with next option.