diff
stringlengths
65
26.7k
message
stringlengths
7
9.92k
diff --git a/upload/admin/controller/openbay/amazon.php b/upload/admin/controller/openbay/amazon.php index <HASH>..<HASH> 100644 --- a/upload/admin/controller/openbay/amazon.php +++ b/upload/admin/controller/openbay/amazon.php @@ -164,7 +164,7 @@ class ControllerOpenbayAmazon extends Controller { $response = simpl...
Removed empty array element from plan array.
diff --git a/internal/config/cgmgr/systemd.go b/internal/config/cgmgr/systemd.go index <HASH>..<HASH> 100644 --- a/internal/config/cgmgr/systemd.go +++ b/internal/config/cgmgr/systemd.go @@ -156,12 +156,9 @@ func (m *SystemdManager) SandboxCgroupPath(sbParent, sbID string) (cgParent, cgP if !strings.HasSuffix(filepat...
cgmgr/systemd: don't recalculate cgroup path from the looks of it, we were expanding the slice unnecessarily, as we're already passed a path
diff --git a/quickplots/charts.py b/quickplots/charts.py index <HASH>..<HASH> 100644 --- a/quickplots/charts.py +++ b/quickplots/charts.py @@ -494,7 +494,9 @@ class AxisChart(Chart): line_width=0, name="block-s" ) - canvas._graphics.append(canvas._graphics.pop(0)) # Dirty hack + ...
Make use of new omnicanvas graphic reordering to bring title forwards
diff --git a/formats.js b/formats.js index <HASH>..<HASH> 100644 --- a/formats.js +++ b/formats.js @@ -28,7 +28,7 @@ exports['hostname'] = function (input) { } exports['alpha'] = /^[a-zA-Z]+$/ exports['alphanumeric'] = /^[a-zA-Z0-9]+$/ -exports['style'] = /\s*(.+?):\s*([^;]+);?/g +exports['style'] = /.:\s*[^;]/g ex...
Fix a ReDoS in 'style' format As there are no `^` or `$` anchors in the regex, this should be equivalent. Patch deliberately does not change the behavior.
diff --git a/Core.php b/Core.php index <HASH>..<HASH> 100644 --- a/Core.php +++ b/Core.php @@ -812,12 +812,15 @@ class Core implements iCore if($requirement != 'samsonos/php_core') { // Try developer relative path - $path = '../../vendor'.$requir...
Added patch for local developer module development by trying to find relative ../../vendor path
diff --git a/src/wyil/transforms/TypePropagation.java b/src/wyil/transforms/TypePropagation.java index <HASH>..<HASH> 100755 --- a/src/wyil/transforms/TypePropagation.java +++ b/src/wyil/transforms/TypePropagation.java @@ -1027,7 +1027,7 @@ public class TypePropagation extends ForwardFlowAnalysis<TypePropagation.Env> {...
Another bug fix for forward flow analysis and type propagation.
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -36,7 +36,7 @@ MongoDOWN.prototype._open = function (options, callback) { if (!options.createIfMissing) dbExists(self.location, function (err, exists) { if (err) return callback(err); - if (!exists) return ...
Use common error messages This error message is expected by abstract-down
diff --git a/src/ossos-pipeline/ossos/astrom.py b/src/ossos-pipeline/ossos/astrom.py index <HASH>..<HASH> 100644 --- a/src/ossos-pipeline/ossos/astrom.py +++ b/src/ossos-pipeline/ossos/astrom.py @@ -902,6 +902,9 @@ class Observation(object): # TODO Remove get_image_uri from here, use the storage methods. de...
Hardcoded that p images are not in a CCD directory: TODO Fix this better
diff --git a/test/assert.js b/test/assert.js index <HASH>..<HASH> 100644 --- a/test/assert.js +++ b/test/assert.js @@ -256,10 +256,10 @@ suite('assert', function () { test('doesNotThrow', function() { assert.doesNotThrow(function() { }); + assert.doesNotThrow(function() { }, 'foo'); err(function () ...
Update `assert.doesNotThrow` test in order to check the use case when type is a string.
diff --git a/slither/solc_parsing/expressions/expression_parsing.py b/slither/solc_parsing/expressions/expression_parsing.py index <HASH>..<HASH> 100644 --- a/slither/solc_parsing/expressions/expression_parsing.py +++ b/slither/solc_parsing/expressions/expression_parsing.py @@ -241,7 +241,10 @@ def convert_subdenominat...
Added hexadecimal support for subdenominations
diff --git a/RAPIDpy/helper_functions.py b/RAPIDpy/helper_functions.py index <HASH>..<HASH> 100644 --- a/RAPIDpy/helper_functions.py +++ b/RAPIDpy/helper_functions.py @@ -58,7 +58,7 @@ def get_rivid_list_from_file(in_rapid_connect): """ rapid_connect_rivid_list = [] with open(in_rapid_connect, "rb") as c...
Added delimiter for rivid function
diff --git a/library/src/main/java/com/github/ksoichiro/android/observablescrollview/ObservableRecyclerView.java b/library/src/main/java/com/github/ksoichiro/android/observablescrollview/ObservableRecyclerView.java index <HASH>..<HASH> 100644 --- a/library/src/main/java/com/github/ksoichiro/android/observablescrollview...
Fixed NPE when mChildrenHeights.indexOfKey(i) < 0 in ObservableRecyclerView.
diff --git a/liberty-starter-application/src/main/java/com/ibm/liberty/starter/client/BxCodegenClient.java b/liberty-starter-application/src/main/java/com/ibm/liberty/starter/client/BxCodegenClient.java index <HASH>..<HASH> 100644 --- a/liberty-starter-application/src/main/java/com/ibm/liberty/starter/client/BxCodegenC...
Increase number of retries to bx codegen.
diff --git a/blueprints/ember-cli-lazy-load/files/config/bundles.js b/blueprints/ember-cli-lazy-load/files/config/bundles.js index <HASH>..<HASH> 100644 --- a/blueprints/ember-cli-lazy-load/files/config/bundles.js +++ b/blueprints/ember-cli-lazy-load/files/config/bundles.js @@ -10,13 +10,15 @@ module.exports = function...
- replace doc with doc from readme
diff --git a/openquake/calculators/event_based_risk.py b/openquake/calculators/event_based_risk.py index <HASH>..<HASH> 100644 --- a/openquake/calculators/event_based_risk.py +++ b/openquake/calculators/event_based_risk.py @@ -231,7 +231,8 @@ class EventBasedStats(object): [(ltype, (F32, cbuilder.curve_res...
Computing the stats also for the ebrisk calculator Former-commit-id: <I>d<I>b<I>a<I>a<I>ba<I>ad<I>a9d<I>
diff --git a/spec/unit/type_factory/factory/test_tuple_type.rb b/spec/unit/type_factory/factory/test_tuple_type.rb index <HASH>..<HASH> 100644 --- a/spec/unit/type_factory/factory/test_tuple_type.rb +++ b/spec/unit/type_factory/factory/test_tuple_type.rb @@ -22,5 +22,22 @@ module Qrb end end + context ...
Make sure Range can be used for tuple attribute types.
diff --git a/src/directives/array.js b/src/directives/array.js index <HASH>..<HASH> 100644 --- a/src/directives/array.js +++ b/src/directives/array.js @@ -130,7 +130,11 @@ angular.module('schemaForm').directive('sfArray', ['sfSelect', 'schemaForm', 'sf if (scope.validateArray) { scope.valida...
Surround with a check since its not available in <I>
diff --git a/www/browser/push.js b/www/browser/push.js index <HASH>..<HASH> 100644 --- a/www/browser/push.js +++ b/www/browser/push.js @@ -367,7 +367,10 @@ module.exports = { }, hasPermission: function(successCallback, errorCallback) { - successCallback(true); + const granted = Notification &&...
:sparkles: PushNotification.hasPermission() is now supported in the browser (#<I>)
diff --git a/theme/afterburner/config.php b/theme/afterburner/config.php index <HASH>..<HASH> 100644 --- a/theme/afterburner/config.php +++ b/theme/afterburner/config.php @@ -59,6 +59,7 @@ $THEME->layouts = array( 'file' => 'default.php', 'regions' => array('side-pre', 'side-post'), 'defaultr...
MDL-<I> theme_afterburner: added lang menu to frontpage layout in config.php
diff --git a/nomad/resources_endpoint.go b/nomad/resources_endpoint.go index <HASH>..<HASH> 100644 --- a/nomad/resources_endpoint.go +++ b/nomad/resources_endpoint.go @@ -114,19 +114,16 @@ func (r *Resources) List(args *structs.ResourceListRequest, } // Set the index for the context. If the context has been s...
max index for any resource, if context is unspecified
diff --git a/mongo_connector/doc_managers/solr_doc_manager.py b/mongo_connector/doc_managers/solr_doc_manager.py index <HASH>..<HASH> 100755 --- a/mongo_connector/doc_managers/solr_doc_manager.py +++ b/mongo_connector/doc_managers/solr_doc_manager.py @@ -79,10 +79,10 @@ class DocManager(): for wc_pattern in se...
fix: dynamicFields should match nested field names
diff --git a/src/main/java/com/apruve/models/SubscriptionAdjustment.java b/src/main/java/com/apruve/models/SubscriptionAdjustment.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/apruve/models/SubscriptionAdjustment.java +++ b/src/main/java/com/apruve/models/SubscriptionAdjustment.java @@ -53,6 +53,8 @@ public ...
Implemented merchant_notes in subscription_adjustment
diff --git a/azurerm/provider.go b/azurerm/provider.go index <HASH>..<HASH> 100644 --- a/azurerm/provider.go +++ b/azurerm/provider.go @@ -257,15 +257,19 @@ func (c *Config) LoadTokensFromAzureCLI() error { return fmt.Errorf("Azure CLI Authorization Profile was not found. Please ensure the Azure CLI is installed and...
Conditional loading of the Subscription ID / Tenant ID / Environment
diff --git a/lib/dry/initializer/plugins/type_constraint.rb b/lib/dry/initializer/plugins/type_constraint.rb index <HASH>..<HASH> 100644 --- a/lib/dry/initializer/plugins/type_constraint.rb +++ b/lib/dry/initializer/plugins/type_constraint.rb @@ -11,8 +11,10 @@ module Dry::Initializer::Plugins ivar = :"@#{rename...
Do not return from lambda So that MRI won't fail
diff --git a/src/Command/ApiCompare.php b/src/Command/ApiCompare.php index <HASH>..<HASH> 100644 --- a/src/Command/ApiCompare.php +++ b/src/Command/ApiCompare.php @@ -146,9 +146,10 @@ final class ApiCompare extends Command */ private function determineFromRevisionFromRepository(CheckedOutRepository $reposito...
Don't need that variable lying around there like a waste of bytes
diff --git a/test/read.js b/test/read.js index <HASH>..<HASH> 100644 --- a/test/read.js +++ b/test/read.js @@ -66,7 +66,7 @@ tape('read pixels', function (t) { throws('throws if attempt use object to null fbo', [{data: {}}]) // now do it for an uint8 fbo - let fbo = regl.framebuffer({ + var fbo = regl.framebu...
test/read.js: Fix to ES6.
diff --git a/soco/services.py b/soco/services.py index <HASH>..<HASH> 100644 --- a/soco/services.py +++ b/soco/services.py @@ -428,7 +428,7 @@ class Service: return (headers, body) def send_command( - self, action, args=None, cache=None, cache_timeout=None, timeout=5, **kwargs + self, acti...
Revert service call timeout reduction (#<I>)
diff --git a/core/src/main/java/com/orientechnologies/orient/core/metadata/security/OSecurityShared.java b/core/src/main/java/com/orientechnologies/orient/core/metadata/security/OSecurityShared.java index <HASH>..<HASH> 100644 --- a/core/src/main/java/com/orientechnologies/orient/core/metadata/security/OSecurityShared....
OSecurityShared class now implements OSecurity interface
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ setup(name='rhaptos.cnxmlutils', zip_safe=False, install_requires=[ 'setuptools', - 'lxml', + #'lxml', #'argparse', # -*- Extra requirements: -*- ...
revert lxml depend: do it as a system package
diff --git a/sos/R/kernel.py b/sos/R/kernel.py index <HASH>..<HASH> 100644 --- a/sos/R/kernel.py +++ b/sos/R/kernel.py @@ -224,16 +224,12 @@ class sos_R: def lan_to_sos(self, items): # first let us get all variables with names starting with sos - response = self.sos_kernel.get_response('..py.repr...
Properly implement magic variables during kernel switch #<I> and document the updated interface
diff --git a/lib/knife-attribute/version.rb b/lib/knife-attribute/version.rb index <HASH>..<HASH> 100644 --- a/lib/knife-attribute/version.rb +++ b/lib/knife-attribute/version.rb @@ -1,3 +1,3 @@ module KnifeAttribute - VERSION = "0.1.2" + VERSION = '1.0.0' end
Bump to version <I> - initial design goals implemented!
diff --git a/question/type/gapselect/questiontypebase.php b/question/type/gapselect/questiontypebase.php index <HASH>..<HASH> 100755 --- a/question/type/gapselect/questiontypebase.php +++ b/question/type/gapselect/questiontypebase.php @@ -84,7 +84,7 @@ abstract class qtype_gapselect_base extends question_type { ...
MDL-<I> gapselect: NOBUG noticed use of deprecated database function.
diff --git a/shared/teams/team/container.js b/shared/teams/team/container.js index <HASH>..<HASH> 100644 --- a/shared/teams/team/container.js +++ b/shared/teams/team/container.js @@ -234,6 +234,7 @@ const mergeProps = (stateProps, dispatchProps, ownProps) => { onInviteByEmail, onCreateSubteam, onLeaveTea...
Pipe through onManageChat in team container (#<I>)
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -1,16 +1,16 @@ var sitemap = require("./lib/sitemap"); -// sitemap.getSites("http://www.cbs.com/sitemaps/show/show_siteMap_index.xml", function(err, sites){ -// if(!err)console.log(sites);else console.log(err); -// }); +si...
Changing the index.js file to run CBS instead of walmart
diff --git a/pydsl/Grammar/Symbol.py b/pydsl/Grammar/Symbol.py index <HASH>..<HASH> 100644 --- a/pydsl/Grammar/Symbol.py +++ b/pydsl/Grammar/Symbol.py @@ -114,15 +114,6 @@ class StringTerminalSymbol(TerminalSymbol): return "<StringTS: '" + self.definition + "'>" -class CharTerminalSymbol(StringTerminalSymb...
deleted CharTerminalSymbol (II)
diff --git a/lib/Cisco.php b/lib/Cisco.php index <HASH>..<HASH> 100755 --- a/lib/Cisco.php +++ b/lib/Cisco.php @@ -173,7 +173,7 @@ class Cisco $invlines = explode("\r\n", $show_inventory); foreach ($invlines as $line) { // LEGACY PERL CODE: $x =~ /^\s*PID:\s(\S+).*SN:\s+(\S+)\s*$/; - ...
Update Cisco.php Modified inventory-to-model detection to remove commas at end
diff --git a/lib/stompede/stomp.rb b/lib/stompede/stomp.rb index <HASH>..<HASH> 100644 --- a/lib/stompede/stomp.rb +++ b/lib/stompede/stomp.rb @@ -13,6 +13,8 @@ module Stompede module Stomp Parser = if defined?(CParser) CParser + elsif defined?(JavaParser) + JavaParser else RubyParser...
Enable JavaParser by default on JRuby
diff --git a/andes/models/renewable/reeca1.py b/andes/models/renewable/reeca1.py index <HASH>..<HASH> 100644 --- a/andes/models/renewable/reeca1.py +++ b/andes/models/renewable/reeca1.py @@ -332,7 +332,7 @@ class REECA1Model(Model): self.Iqcmd = ExtAlgeb(model='RenGen', src='Iqcmd', indexer=self.reg, export=...
Fixed Iqcmd equations in REECA1.
diff --git a/examples/js/basic-chart.js b/examples/js/basic-chart.js index <HASH>..<HASH> 100644 --- a/examples/js/basic-chart.js +++ b/examples/js/basic-chart.js @@ -11,6 +11,9 @@ require ('ansicolor').nice; (async function main () { + // experimental, not yet implemented for all exchanges + // your contrib...
added a comment to basic-chart.js [ci skip]
diff --git a/lib/nucleon/project/github.rb b/lib/nucleon/project/github.rb index <HASH>..<HASH> 100644 --- a/lib/nucleon/project/github.rb +++ b/lib/nucleon/project/github.rb @@ -12,10 +12,10 @@ class Github < Git def normalize if reference = delete(:reference, nil) - myself.name = reference + ...
Fixing name issues that prevent key loading/saving in the github project provider.
diff --git a/src/ServiceManager.php b/src/ServiceManager.php index <HASH>..<HASH> 100644 --- a/src/ServiceManager.php +++ b/src/ServiceManager.php @@ -146,9 +146,10 @@ class ServiceManager implements ServiceLocatorInterface } if ($this->allowOverride === false && $this->has($name)) { - th...
Allow merging Service Manager configuration - Allows specifying a "service_manager" key in module / application configuration - Configuration provided by a module is merged with internal services configuration - During loadModules.post, all merged service configuration is then used to configure the ServiceManage...
diff --git a/tests/api/RestfulServiceTest.php b/tests/api/RestfulServiceTest.php index <HASH>..<HASH> 100644 --- a/tests/api/RestfulServiceTest.php +++ b/tests/api/RestfulServiceTest.php @@ -172,12 +172,14 @@ class RestfulServiceTest extends SapphireTest { public function testHttpHeaderParseing() { $headers = "con...
Adding test to prove issue with HTTP Header parsing in RestfulService I have a header like: X-BB-Auth: xxxx and it is being given back to me as X-Bb-Auth - i want to prove the issue and the fix
diff --git a/PHPDaemon/DNode/Generic.php b/PHPDaemon/DNode/Generic.php index <HASH>..<HASH> 100755 --- a/PHPDaemon/DNode/Generic.php +++ b/PHPDaemon/DNode/Generic.php @@ -24,6 +24,7 @@ abstract class Generic extends \PHPDaemon\WebSocket\Route { protected $localMethods = []; protected $ioMode = false; protected $t...
DNode: traceCalls property
diff --git a/install/local/portableSharedLibraries/OAT/scale.raphael.js b/install/local/portableSharedLibraries/OAT/scale.raphael.js index <HASH>..<HASH> 100644 --- a/install/local/portableSharedLibraries/OAT/scale.raphael.js +++ b/install/local/portableSharedLibraries/OAT/scale.raphael.js @@ -9,7 +9,7 @@ * @author B...
(re)fixed typo in shared lib ns
diff --git a/aegean.py b/aegean.py index <HASH>..<HASH> 100755 --- a/aegean.py +++ b/aegean.py @@ -123,25 +123,6 @@ class IslandFittingData(object): self.doislandflux = doislandflux -class DummyMP(object): - """ - A dummy copy of the mpfit class that just holds the parinfo variables - This class d...
removed DummyMP as it is no longer used.
diff --git a/test/send.js b/test/send.js index <HASH>..<HASH> 100644 --- a/test/send.js +++ b/test/send.js @@ -529,7 +529,7 @@ allocCluster.test('send() with requestDefaults', 2, function t(cluster, assert) subOne.handler.register('foo', function foo(req, res) { res.headers.as = 'raw'; - res.sen...
test/send: switch to req.callerName
diff --git a/src/Traits/LoadsTranslatedCachedRoutes.php b/src/Traits/LoadsTranslatedCachedRoutes.php index <HASH>..<HASH> 100644 --- a/src/Traits/LoadsTranslatedCachedRoutes.php +++ b/src/Traits/LoadsTranslatedCachedRoutes.php @@ -58,7 +58,8 @@ trait LoadsTranslatedCachedRoutes { $path = $this->getDefault...
Fixed an issue where route:trans:list wouldn’t show the correct routes
diff --git a/woven/deployment.py b/woven/deployment.py index <HASH>..<HASH> 100644 --- a/woven/deployment.py +++ b/woven/deployment.py @@ -121,10 +121,8 @@ def deploy_files(local_dir, remote_dir, pattern = '',rsync_exclude=['*.pyc','.*' run(' '.join(['mkdir -pv',remote_staging_dir])).split('\n') creat...
fixed issue with extra_opts for rsync custom port
diff --git a/src/pybel/parser/parse_metadata.py b/src/pybel/parser/parse_metadata.py index <HASH>..<HASH> 100644 --- a/src/pybel/parser/parse_metadata.py +++ b/src/pybel/parser/parse_metadata.py @@ -205,6 +205,9 @@ class MetadataParser(BaseParser): def handle_annotation_pattern(self, s, l, tokens): name...
Remove url rewriting and better logging
diff --git a/hrpg/core.py b/hrpg/core.py index <HASH>..<HASH> 100644 --- a/hrpg/core.py +++ b/hrpg/core.py @@ -77,7 +77,7 @@ def cli(): hrpg dailies done <task-id> hrpg dailies undo <task-id> hrpg todos done <task-id> - hrpg todos add <task> + hrpg todos add <task>... hrpg server ...
close #2 `todos add` arg no longer requires quotes
diff --git a/holoviews/core/pprint.py b/holoviews/core/pprint.py index <HASH>..<HASH> 100644 --- a/holoviews/core/pprint.py +++ b/holoviews/core/pprint.py @@ -124,9 +124,10 @@ class Info(object): if hasattr(node.last, 'children'): # Must be an Overlay overlay_info = cls.overlay_info(level, node.l...
Temporary fix to pprinter for UniformNdMappings
diff --git a/src/AntiCSRF.php b/src/AntiCSRF.php index <HASH>..<HASH> 100644 --- a/src/AntiCSRF.php +++ b/src/AntiCSRF.php @@ -77,7 +77,7 @@ class AntiCSRF if( $echo ) { echo $ret; - return; + return null; } return $ret; }
consistent return value "null" is returned anyway if called with no value
diff --git a/pynlpir/nlpir.py b/pynlpir/nlpir.py index <HASH>..<HASH> 100644 --- a/pynlpir/nlpir.py +++ b/pynlpir/nlpir.py @@ -15,7 +15,8 @@ logger.debug("Loading NLPIR module on a %s %s system." % ('64-bit' if is_64bit if not is_linux and not is_windows: logger.error("Platform '%s' is not supported by NLPIR." % ...
Clarifies comments on module-level constants.
diff --git a/pkg/terminal/terminal.go b/pkg/terminal/terminal.go index <HASH>..<HASH> 100644 --- a/pkg/terminal/terminal.go +++ b/pkg/terminal/terminal.go @@ -247,10 +247,10 @@ func (t *Term) handleExit() (int, error) { func (t *Term) loadConfig() api.LoadConfig { r := api.LoadConfig{true, 1, 64, 64, -1} - if t.co...
check that t.conf is not nil in loadConfig
diff --git a/actionpack/lib/action_controller/metal/renderers.rb b/actionpack/lib/action_controller/metal/renderers.rb index <HASH>..<HASH> 100644 --- a/actionpack/lib/action_controller/metal/renderers.rb +++ b/actionpack/lib/action_controller/metal/renderers.rb @@ -8,8 +8,7 @@ module ActionController class Missin...
Do not use instance variables if they are not reused elsewhere
diff --git a/empyrical/stats.py b/empyrical/stats.py index <HASH>..<HASH> 100644 --- a/empyrical/stats.py +++ b/empyrical/stats.py @@ -714,7 +714,8 @@ def beta(returns, factor_returns, risk_free=0.0): if np.absolute(joint.var().iloc[1]) < 1.0e-30: return np.nan - return np.cov(joint.values.T, ddof=0)...
MAINT Beta calculation does not require explicity variance calculation.
diff --git a/see/context/resources/network.py b/see/context/resources/network.py index <HASH>..<HASH> 100644 --- a/see/context/resources/network.py +++ b/see/context/resources/network.py @@ -76,15 +76,15 @@ def create(hypervisor, identifier, configuration): """ with open(configuration['configuration']) as x...
network: fix creation attempts error handling The XML configuration was overwritten thus causing the next attempt to fail because the IP being already set within it.
diff --git a/vendor/k8s.io/kubernetes/pkg/volume/util/operationexecutor/operation_generator.go b/vendor/k8s.io/kubernetes/pkg/volume/util/operationexecutor/operation_generator.go index <HASH>..<HASH> 100644 --- a/vendor/k8s.io/kubernetes/pkg/volume/util/operationexecutor/operation_generator.go +++ b/vendor/k8s.io/kuber...
UPSTREAM: <I>: Fix c-m crash while verifying attached volumes
diff --git a/echo_test.go b/echo_test.go index <HASH>..<HASH> 100644 --- a/echo_test.go +++ b/echo_test.go @@ -6,6 +6,7 @@ import ( "errors" "fmt" "io/ioutil" + "net" "net/http" "net/http/httptest" "reflect" @@ -730,8 +731,24 @@ var listenerNetworkTests = []struct { {"tcp6 ipv6 address", "tcp6", "[::1]:13...
Fix failing tests on systems not supporting IPv6
diff --git a/src/key.js b/src/key.js index <HASH>..<HASH> 100644 --- a/src/key.js +++ b/src/key.js @@ -793,6 +793,7 @@ steal('src/synthetic.js','src/browsers.js',function(Syn) { if ( defaultResult !== null ) { setTimeout(function() { + Syn.trigger('input', Syn.key.options(key, 'input'), element) ...
added input event to type() and respective test
diff --git a/src/SocialShare/SocialShare.php b/src/SocialShare/SocialShare.php index <HASH>..<HASH> 100644 --- a/src/SocialShare/SocialShare.php +++ b/src/SocialShare/SocialShare.php @@ -110,6 +110,22 @@ class SocialShare } /** + * Gets the total number of share of the given URL for all providers + ...
Add method to get the total number of shares (#5)
diff --git a/devices/useelink.js b/devices/useelink.js index <HASH>..<HASH> 100644 --- a/devices/useelink.js +++ b/devices/useelink.js @@ -36,6 +36,9 @@ module.exports = [ await reporting.bind(device.getEndpoint(ID), coordinatorEndpoint, ['genOnOff']); } }, + endpoint: (dev...
Missing endpoint mapping (#<I>)
diff --git a/yandextank/plugins/Telegraf/tests/test_plugin.py b/yandextank/plugins/Telegraf/tests/test_plugin.py index <HASH>..<HASH> 100644 --- a/yandextank/plugins/Telegraf/tests/test_plugin.py +++ b/yandextank/plugins/Telegraf/tests/test_plugin.py @@ -28,4 +28,4 @@ class TestTelegrafPlugin(object): try: ...
pytests for telegraf
diff --git a/nautilus/services/service.py b/nautilus/services/service.py index <HASH>..<HASH> 100644 --- a/nautilus/services/service.py +++ b/nautilus/services/service.py @@ -93,6 +93,7 @@ class Service: # base the service on a flask app self.app = self.tornado_app + # setup various functiona...
added missing codeblock directive in service.route documentation
diff --git a/openapi_core/schema/operations/generators.py b/openapi_core/schema/operations/generators.py index <HASH>..<HASH> 100644 --- a/openapi_core/schema/operations/generators.py +++ b/openapi_core/schema/operations/generators.py @@ -31,6 +31,7 @@ class OperationsGenerator(object): parameters_list = o...
Populate operation_id attr
diff --git a/src/components/Image/Image.js b/src/components/Image/Image.js index <HASH>..<HASH> 100644 --- a/src/components/Image/Image.js +++ b/src/components/Image/Image.js @@ -120,7 +120,7 @@ class Image extends CloudinaryComponent { containerWidth = Util.width(element); } } - return containe...
Round off containerWidth fixes issue #<I>
diff --git a/source/rafcon/gui/mygaphas/aspect.py b/source/rafcon/gui/mygaphas/aspect.py index <HASH>..<HASH> 100644 --- a/source/rafcon/gui/mygaphas/aspect.py +++ b/source/rafcon/gui/mygaphas/aspect.py @@ -188,7 +188,10 @@ class SegmentHandleSelection(ItemHandleSelection): after = handles[handle_index + 1] ...
fix(SegmentHandleSelection): Properly merge segments The merging of segments (removal of waypoints) should now properly work on all zoom and hierarchy levels. The commit fixes the issues, where it was no longer possible to create new waypoints on a deeply nested state.
diff --git a/lib/nydp.rb b/lib/nydp.rb index <HASH>..<HASH> 100644 --- a/lib/nydp.rb +++ b/lib/nydp.rb @@ -2,6 +2,8 @@ require 'date' require 'set' module Nydp + class Namespace < Hash + end def self.apply_function ns, function_name, *args function = r2n(function_name.to_sym, ns).value args = r2n...
vm: use Namespace class instead of plain hash, so plugins can decorate with useful features
diff --git a/salt/returners/slack_webhook_return.py b/salt/returners/slack_webhook_return.py index <HASH>..<HASH> 100644 --- a/salt/returners/slack_webhook_return.py +++ b/salt/returners/slack_webhook_return.py @@ -176,7 +176,6 @@ def _generate_payload(author_icon, title, report): text += "Total: {}\n".format(...
bugfix: Fix bug introduced resolving conflicts
diff --git a/lib/index.js b/lib/index.js index <HASH>..<HASH> 100644 --- a/lib/index.js +++ b/lib/index.js @@ -12,6 +12,10 @@ var stampit = require('stampit'); var _ = require('lodash'); var EventEmitter = require('events').EventEmitter; +var AssignFirstArgument = stampit({ init(opts) { + Object.assign(this, opts)...
fixed breaking changes: statics, init signature, assignment of first argument
diff --git a/bosh_cli/lib/cli/validation.rb b/bosh_cli/lib/cli/validation.rb index <HASH>..<HASH> 100644 --- a/bosh_cli/lib/cli/validation.rb +++ b/bosh_cli/lib/cli/validation.rb @@ -29,9 +29,11 @@ module Bosh::Cli private def step(name, error_message, kind = :non_fatal, &block) + say("%-60s " % [name]...
Show step message before long-running block result [finishes #<I>] This means #step can be used to display what is currently happening whilst determining OK/FAILED.
diff --git a/tests/test_flask_kvsession.py b/tests/test_flask_kvsession.py index <HASH>..<HASH> 100644 --- a/tests/test_flask_kvsession.py +++ b/tests/test_flask_kvsession.py @@ -167,7 +167,7 @@ def test_session_expires_without_backend_support(app, client): s = json_dec(rv.data) assert s['k1'] == 'value1' -...
Properly use return value in permanency/expiration test.
diff --git a/lib/exception_handling/version.rb b/lib/exception_handling/version.rb index <HASH>..<HASH> 100644 --- a/lib/exception_handling/version.rb +++ b/lib/exception_handling/version.rb @@ -1,3 +1,3 @@ module ExceptionHandling - VERSION = "1.3.0" + VERSION = "1.3.0".freeze end
TECH-<I> honeybadger upgrade: add freeze to version constant
diff --git a/tensorboard/defs/rollup_config.js b/tensorboard/defs/rollup_config.js index <HASH>..<HASH> 100644 --- a/tensorboard/defs/rollup_config.js +++ b/tensorboard/defs/rollup_config.js @@ -23,4 +23,7 @@ module.exports = { }), commonjs(), ], + output: { + strict: false, + }, };
sync: relax rollup config for imperfect deps (#<I>) Projector depends on Weblas, a 3rd party dependency that throws runtime errors when run in a browser's strict mode: <URL>: `blaze run tensorboard/plugins/projector/polymer3/vz_projector:standalone`
diff --git a/modeltranslation/settings.py b/modeltranslation/settings.py index <HASH>..<HASH> 100644 --- a/modeltranslation/settings.py +++ b/modeltranslation/settings.py @@ -5,8 +5,8 @@ from django.core.exceptions import ImproperlyConfigured TRANSLATION_FILES = tuple(getattr(settings, 'MODELTRANSLATION_TRANSLATION_...
Ensure AVAILABLE_LANGUAGES is a list (close #<I>).
diff --git a/lib/index.js b/lib/index.js index <HASH>..<HASH> 100644 --- a/lib/index.js +++ b/lib/index.js @@ -1,6 +1,7 @@ 'use strict'; var AWS; +/* istanbul ignore if */ if (process.LLTRACE_ON) { AWS = require('lltrace-aws-sdk').AWS; } else { @@ -28,6 +29,7 @@ var AwsHelper = { // initialisation method (O...
Ignore ifs for coverage
diff --git a/eventkit/models.py b/eventkit/models.py index <HASH>..<HASH> 100644 --- a/eventkit/models.py +++ b/eventkit/models.py @@ -281,6 +281,16 @@ class AbstractEvent(PolymorphicMPTTModel, AbstractBaseModel): missing = rruleset.between(starts, end_repeat) return missing + @property + def ...
Add `period` property. Returns "AM" or "PM" for the localised starts time.
diff --git a/src/sap.m/src/sap/m/WheelSlider.js b/src/sap.m/src/sap/m/WheelSlider.js index <HASH>..<HASH> 100644 --- a/src/sap.m/src/sap/m/WheelSlider.js +++ b/src/sap.m/src/sap/m/WheelSlider.js @@ -911,8 +911,8 @@ sap.ui.define([ $aItems.eq(this._iSelectedItemIndex).addClass("sapMWSItemSelected"); //WAI-ARIA r...
[INTERNAL] sap.m.WheelSlider: Corrected API usage Change-Id: Ibca4e4d<I>e0cf<I>d3ceeea<I>ae<I>a<I>a8
diff --git a/grab/spider/task.py b/grab/spider/task.py index <HASH>..<HASH> 100644 --- a/grab/spider/task.py +++ b/grab/spider/task.py @@ -53,5 +53,8 @@ class Task(object): for key, value in kwargs.items(): setattr(task, key, value) + + if 'grab' in kwargs: + task.u...
Fix bug in Task clone method
diff --git a/src/transformers/trainer.py b/src/transformers/trainer.py index <HASH>..<HASH> 100755 --- a/src/transformers/trainer.py +++ b/src/transformers/trainer.py @@ -1511,7 +1511,7 @@ class Trainer: return else: rng_file = os.path.join(checkpoint, "rng_state.pth") - ...
Trainer._load_rng_state() path fix (#<I>) (#<I>)
diff --git a/src/Core.php b/src/Core.php index <HASH>..<HASH> 100755 --- a/src/Core.php +++ b/src/Core.php @@ -138,7 +138,7 @@ } catch (Exception $e) { - if (self::getService('core.logger') instanceof Logger) { + if (self::hasService('core.logger')) { ...
Add Core::hasService method Fix a bug when Core log service was called while not yet registered
diff --git a/src/jash.js b/src/jash.js index <HASH>..<HASH> 100644 --- a/src/jash.js +++ b/src/jash.js @@ -143,7 +143,8 @@ function addBinaries(binaries) { } //if the last arg is an object, it's the options object - if (typeof args[args.length-1] == 'object') { + var lastArg = args[args.length-1]; + if ...
fix a bug where passing args as an array with nothing else broke
diff --git a/presto-product-tests/src/main/java/com/facebook/presto/tests/hive/TestTablePartitioningSelect.java b/presto-product-tests/src/main/java/com/facebook/presto/tests/hive/TestTablePartitioningSelect.java index <HASH>..<HASH> 100644 --- a/presto-product-tests/src/main/java/com/facebook/presto/tests/hive/TestTab...
Unquarantine TestTablePartitioningSelect This test was failling because of the resources filtering issue
diff --git a/unpack-browser.js b/unpack-browser.js index <HASH>..<HASH> 100644 --- a/unpack-browser.js +++ b/unpack-browser.js @@ -6,12 +6,12 @@ var ndarray = require("ndarray") function unpackPNG(w, h, c, str) { var canvas = document.createElement("canvas") - canvas.width = w - canvas.height = h + canvas.widt...
Fix image orientation in unpack-browser.js width/height were reversed :)
diff --git a/lib/worker.js b/lib/worker.js index <HASH>..<HASH> 100644 --- a/lib/worker.js +++ b/lib/worker.js @@ -213,13 +213,13 @@ module.exports = function(opts, done) { */ if (opts.topology === 'cluster') { server = startCluster(opts); - delay = 1000; + delay = 10000; } else if (opts.topology =...
:zap: more debug
diff --git a/config/construction/Init.php b/config/construction/Init.php index <HASH>..<HASH> 100644 --- a/config/construction/Init.php +++ b/config/construction/Init.php @@ -4,7 +4,7 @@ * @Author: Cleberson Bieleski * @Date: 2017-12-23 04:54:45 * @Last Modified by: Cleberson Bieleski - * @Last Modified time:...
controller access without the need of the view
diff --git a/activesupport/test/array_inquirer_test.rb b/activesupport/test/array_inquirer_test.rb index <HASH>..<HASH> 100644 --- a/activesupport/test/array_inquirer_test.rb +++ b/activesupport/test/array_inquirer_test.rb @@ -51,6 +51,11 @@ class ArrayInquirerTest < ActiveSupport::TestCase assert_respond_to arr, ...
It would be safer not to totally undef core classes' respond_to_missing? instead, rewrite them to no-op
diff --git a/lib/plugins/aws/deployFunction/index.js b/lib/plugins/aws/deployFunction/index.js index <HASH>..<HASH> 100644 --- a/lib/plugins/aws/deployFunction/index.js +++ b/lib/plugins/aws/deployFunction/index.js @@ -69,16 +69,14 @@ class AwsDeployFunction { ZipFile: data, }; - this.sdk.request( + ...
Fix Promise chain in deployFunction plugin
diff --git a/firebase.go b/firebase.go index <HASH>..<HASH> 100644 --- a/firebase.go +++ b/firebase.go @@ -143,6 +143,10 @@ func (fb *Firebase) doRequest(method string, body []byte) ([]byte, error) { if e1.Timeout() { return nil, ErrTimeout{err} } + case net.Error: + if err.Timeout() { + return nil, ErrTim...
also handler net.Errors directly
diff --git a/steam/util/binary.py b/steam/util/binary.py index <HASH>..<HASH> 100644 --- a/steam/util/binary.py +++ b/steam/util/binary.py @@ -8,10 +8,21 @@ class StructReader(object): :type data: :class:`bytes` """ if not isinstance(data, bytes): - raise ValueError("Requires byte...
StructReader: added __len__() and rlen()
diff --git a/tests/LaTeX.js b/tests/LaTeX.js index <HASH>..<HASH> 100644 --- a/tests/LaTeX.js +++ b/tests/LaTeX.js @@ -128,8 +128,12 @@ var cases = { decimal_TeX: '\\frac{x \\cdot \\left(x+1\\right)}{x^{2}+2 \\cdot x+1}' }, 'x^2+2*x+y^2+y+6': { - TeX: '\\frac{x \\cdot \\left(x+1\\right)}{x^{2}...
Update tests to include issue #<I>
diff --git a/src/MediaBundle/Provider/YoutubeProvider.php b/src/MediaBundle/Provider/YoutubeProvider.php index <HASH>..<HASH> 100644 --- a/src/MediaBundle/Provider/YoutubeProvider.php +++ b/src/MediaBundle/Provider/YoutubeProvider.php @@ -215,4 +215,19 @@ class YoutubeProvider extends AbstractProvider return...
Added youtubeprovider getUrl method
diff --git a/cmd/syncthing/main.go b/cmd/syncthing/main.go index <HASH>..<HASH> 100644 --- a/cmd/syncthing/main.go +++ b/cmd/syncthing/main.go @@ -695,6 +695,7 @@ func expandTilde(p string) string { return getHomeDir() } + p = filepath.FromSlash(p) if !strings.HasPrefix(p, fmt.Sprintf("~%c", os.PathSeparator))...
Expand tilde on Windows as well (fixes #<I>)
diff --git a/src/LdapTools/ParameterResolver.php b/src/LdapTools/ParameterResolver.php index <HASH>..<HASH> 100644 --- a/src/LdapTools/ParameterResolver.php +++ b/src/LdapTools/ParameterResolver.php @@ -241,7 +241,7 @@ class ParameterResolver } elseif (array_key_exists(strtolower($parameter), array_change_...
Use the constant designated for the parameter marker character.
diff --git a/app.js b/app.js index <HASH>..<HASH> 100644 --- a/app.js +++ b/app.js @@ -118,8 +118,8 @@ if(process.env.CONN_NAME && process.env.DB_USERNAME && process.env.DB_PASSWORD & connection_string: 'mongodb://' + process.env.DB_USERNAME + ':' + process.env.DB_PASSWORD + '@' + process.env.DB_HOST + ':' + p...
#<I> Override default config.json with connection from env
diff --git a/test/main.js b/test/main.js index <HASH>..<HASH> 100644 --- a/test/main.js +++ b/test/main.js @@ -50,6 +50,14 @@ describe('gulp-browserify', function() { }).end(fakeFile); }); + it('should return a browserify require file without entry point contents', function(done) { + var fakeFile = createF...
Add a test for no entry point contents.
diff --git a/pyramid/__init__.py b/pyramid/__init__.py index <HASH>..<HASH> 100644 --- a/pyramid/__init__.py +++ b/pyramid/__init__.py @@ -4,7 +4,7 @@ # # The pyramid module -__version__ = "0.7.0-dev" +__version__ = "0.7.0-dev0" try: # this var is injected in the setup build to enable
[ci skip] Bump to dev version
diff --git a/pyp2rpm/name_convertor.py b/pyp2rpm/name_convertor.py index <HASH>..<HASH> 100644 --- a/pyp2rpm/name_convertor.py +++ b/pyp2rpm/name_convertor.py @@ -43,6 +43,10 @@ class NameConvertor(object): rpmized_name = name if self.distro == 'mageia': exclude_string = 'python-' + ...
remove initial "py" to fit mageia conventions
diff --git a/test.py b/test.py index <HASH>..<HASH> 100644 --- a/test.py +++ b/test.py @@ -1,8 +1,9 @@ from contextlib import contextmanager -import unittest import logging import os +import stat import sys +import unittest from os.path import expanduser, join, abspath from textwrap import dedent @@ -276,9 +277...
Make sure the secured file is secured On a fresh git clone the permissions are lost.
diff --git a/tabu_sampler.py b/tabu_sampler.py index <HASH>..<HASH> 100644 --- a/tabu_sampler.py +++ b/tabu_sampler.py @@ -127,7 +127,7 @@ class TabuSampler(Sampler): def _bqm_sample_to_tabu_sample(self, sample, bqm): assert len(sample) == len(bqm) _, values = zip(*sorted(sample_as_dict(sample).i...
Bugfix: properly handle BQMs with string variable names