diff
stringlengths
65
26.7k
message
stringlengths
7
9.92k
diff --git a/examples/webhooks.php b/examples/webhooks.php index <HASH>..<HASH> 100644 --- a/examples/webhooks.php +++ b/examples/webhooks.php @@ -1,5 +1,13 @@ <?php +// You can use this script with the webhook testing tool in the developer tab. +// At the moment, the best way to learn about the different webhooks i...
Added intro and docs link to webhook example
diff --git a/tests/OSS/Tests/BucketLiveChannelTest.php b/tests/OSS/Tests/BucketLiveChannelTest.php index <HASH>..<HASH> 100644 --- a/tests/OSS/Tests/BucketLiveChannelTest.php +++ b/tests/OSS/Tests/BucketLiveChannelTest.php @@ -20,6 +20,7 @@ class BucketLiveChannelTest extends \PHPUnit_Framework_TestCase $this-...
add sleep to fix bucket not exsit
diff --git a/lib/ahoy_email.rb b/lib/ahoy_email.rb index <HASH>..<HASH> 100644 --- a/lib/ahoy_email.rb +++ b/lib/ahoy_email.rb @@ -75,5 +75,5 @@ end ActiveSupport.on_load(:action_mailer) do include AhoyEmail::Mailer register_observer AhoyEmail::Observer - Mail::Message.attr_accessor :ahoy_data, :ahoy_message + ...
Fixed error with attr_accessor being private in earlier versions of Ruby - fixes #<I>
diff --git a/spec/theatre/invocation_spec.rb b/spec/theatre/invocation_spec.rb index <HASH>..<HASH> 100644 --- a/spec/theatre/invocation_spec.rb +++ b/spec/theatre/invocation_spec.rb @@ -56,6 +56,7 @@ describe "Using Invocations that've been ran through the Theatre" do end it "should have a status of :error if ...
Set theatre tests pending where they were failing pre-cleanup
diff --git a/languagetool-core/src/main/java/org/languagetool/rules/patterns/PasswordAuthenticator.java b/languagetool-core/src/main/java/org/languagetool/rules/patterns/PasswordAuthenticator.java index <HASH>..<HASH> 100644 --- a/languagetool-core/src/main/java/org/languagetool/rules/patterns/PasswordAuthenticator.jav...
avoid NPE which can occur under some (unclear) conditions
diff --git a/Person.php b/Person.php index <HASH>..<HASH> 100644 --- a/Person.php +++ b/Person.php @@ -9,20 +9,24 @@ use Vundi\Potato\Exceptions\IDShouldBeNumber; class Person extends Model { protected static $entity_table = 'Person'; - protected static $entity_class = 'Person'; } - $dotenv = new Dotenv...
(Fix) Remove the dotenv initializer from the child class.Moved to Database class
diff --git a/fmn/rules/__init__.py b/fmn/rules/__init__.py index <HASH>..<HASH> 100644 --- a/fmn/rules/__init__.py +++ b/fmn/rules/__init__.py @@ -1,3 +1,4 @@ +from fmn.rules.anitya import * from fmn.rules.ansible import * from fmn.rules.askbot import * from fmn.rules.bodhi import *
Import the anitya rules at the module level
diff --git a/src/Guzzle/Http/Client.php b/src/Guzzle/Http/Client.php index <HASH>..<HASH> 100644 --- a/src/Guzzle/Http/Client.php +++ b/src/Guzzle/Http/Client.php @@ -222,7 +222,7 @@ class Client extends AbstractHasDispatcher implements ClientInterface if (!is_array($uri)) { $templateVars = null; ...
Fix error in Client::createRequest
diff --git a/tests/Tests.php b/tests/Tests.php index <HASH>..<HASH> 100644 --- a/tests/Tests.php +++ b/tests/Tests.php @@ -634,4 +634,13 @@ abstract class Tests extends TestBase $test->get('/barcodes?transform=1'); $test->expect('{"barcodes":[{"id":1,"product_id":1,"hex":"00ff01","bin":"AP8B"}]}'); ...
Add test case for Escaped JSON Issue #<I>
diff --git a/src/jquery.gridster.js b/src/jquery.gridster.js index <HASH>..<HASH> 100755 --- a/src/jquery.gridster.js +++ b/src/jquery.gridster.js @@ -31,6 +31,7 @@ autogrow_cols: false, autogenerate_stylesheet: true, avoid_overlapped_widgets: true, + auto_init: true, serializ...
feature(gridster): added `auto_init` config option, default to true Useful when using `positionschanged` event, fired before gridster instance is cached.
diff --git a/projections.py b/projections.py index <HASH>..<HASH> 100644 --- a/projections.py +++ b/projections.py @@ -219,6 +219,14 @@ class Projections(): self.year = str(self.dateArr[0]) self.month = str(self.dateArr[1] + 1) self.day = str(self.dateArr[2]) + ...
Worked on exporting data to database.
diff --git a/res/template/GeneratedPuliFactory.tpl.php b/res/template/GeneratedPuliFactory.tpl.php index <HASH>..<HASH> 100644 --- a/res/template/GeneratedPuliFactory.tpl.php +++ b/res/template/GeneratedPuliFactory.tpl.php @@ -23,7 +23,7 @@ use <?php echo $import ?>; * * Otherwise any modifications will be overwrit...
Removed superfluous linebreak from GeneratedPuliFactory
diff --git a/src/Listeners/CascadeDeleteListener.php b/src/Listeners/CascadeDeleteListener.php index <HASH>..<HASH> 100755 --- a/src/Listeners/CascadeDeleteListener.php +++ b/src/Listeners/CascadeDeleteListener.php @@ -9,8 +9,8 @@ class CascadeDeleteListener /** * Handel the event for eloquent delete. ...
Apply fixes from StyleCI (#<I>)
diff --git a/src/js/pannellum.js b/src/js/pannellum.js index <HASH>..<HASH> 100644 --- a/src/js/pannellum.js +++ b/src/js/pannellum.js @@ -187,7 +187,7 @@ controls.orientation.className = 'pnlm-orientation-button pnlm-sprite pnlm-contr if (window.DeviceOrientationEvent) { window.addEventListener('deviceorientatio...
Don't show device orientation button on desktop Chrome.
diff --git a/lib/cache.js b/lib/cache.js index <HASH>..<HASH> 100644 --- a/lib/cache.js +++ b/lib/cache.js @@ -385,10 +385,10 @@ function setRoute(options) { CTZN.cache.routes[options.route] = { route: options.route, contentType: options.contentType, - view: { - identity: option...
Renamed route cache contents to 'render' for consistency
diff --git a/activesupport/test/core_ext/string_ext_test.rb b/activesupport/test/core_ext/string_ext_test.rb index <HASH>..<HASH> 100644 --- a/activesupport/test/core_ext/string_ext_test.rb +++ b/activesupport/test/core_ext/string_ext_test.rb @@ -414,7 +414,7 @@ class StringConversionsTest < ActiveSupport::TestCase ...
tests, add note about the usage of a specific timezone. Closes #<I>.
diff --git a/src/index.js b/src/index.js index <HASH>..<HASH> 100644 --- a/src/index.js +++ b/src/index.js @@ -63,7 +63,7 @@ export default class Api { else { if( !(ep instanceof Object) ) ep = { name: ep }; - const { name, options = {} } = ep; + const {name, options={...
* Use default include options. * By default use plurals.
diff --git a/lib/ruby_gems_gems_gem_simple.rb b/lib/ruby_gems_gems_gem_simple.rb index <HASH>..<HASH> 100644 --- a/lib/ruby_gems_gems_gem_simple.rb +++ b/lib/ruby_gems_gems_gem_simple.rb @@ -13,10 +13,17 @@ class RubyGemsGems_GemSimple < GemSimple if from_git? return nil end - gem_uri = "#{@gems_url...
add support for username and password in the url
diff --git a/tests/Parts/Channel/ChannelTest.php b/tests/Parts/Channel/ChannelTest.php index <HASH>..<HASH> 100644 --- a/tests/Parts/Channel/ChannelTest.php +++ b/tests/Parts/Channel/ChannelTest.php @@ -266,7 +266,7 @@ final class ChannelTest extends DiscordTestCase /** * @covers \Discord\Parts\Channel\Chann...
test: remove allowText assertion on voice channel
diff --git a/library/Garp/Cache/Store/Versioned.php b/library/Garp/Cache/Store/Versioned.php index <HASH>..<HASH> 100755 --- a/library/Garp/Cache/Store/Versioned.php +++ b/library/Garp/Cache/Store/Versioned.php @@ -57,8 +57,7 @@ class Garp_Cache_Store_Versioned { public function read($key) { $cache = Zend...
Prevent unnecessary call to backend cache
diff --git a/pkg/oauth/server/osinserver/tokengen.go b/pkg/oauth/server/osinserver/tokengen.go index <HASH>..<HASH> 100644 --- a/pkg/oauth/server/osinserver/tokengen.go +++ b/pkg/oauth/server/osinserver/tokengen.go @@ -2,7 +2,6 @@ package osinserver import ( "encoding/base64" - "io" "strings" "crypto/rand" @...
Simplify reading of random bytes No need to use io.ReadFull, no need to convert error to string.
diff --git a/webwhatsapi/__init__.py b/webwhatsapi/__init__.py index <HASH>..<HASH> 100755 --- a/webwhatsapi/__init__.py +++ b/webwhatsapi/__init__.py @@ -234,12 +234,16 @@ class WhatsAPIDriver(object): EC.visibility_of_element_located((By.CSS_SELECTOR, self._SELECTORS['mainPage'])) ) - def g...
Added custom filename option for get_qr
diff --git a/src/Prettus/Repository/Eloquent/BaseRepository.php b/src/Prettus/Repository/Eloquent/BaseRepository.php index <HASH>..<HASH> 100644 --- a/src/Prettus/Repository/Eloquent/BaseRepository.php +++ b/src/Prettus/Repository/Eloquent/BaseRepository.php @@ -670,10 +670,13 @@ abstract class BaseRepository implement...
BUGFIX: If an array $attributes exists in the model, its data is written to the table when the repository is updated (#<I>) Details in test: <URL>
diff --git a/api/log_test.go b/api/log_test.go index <HASH>..<HASH> 100644 --- a/api/log_test.go +++ b/api/log_test.go @@ -52,7 +52,7 @@ func (s *LogSuite) TearDownSuite(c *gocheck.C) { func (s *LogSuite) TestLogRemoveAll(c *gocheck.C) { a := app.App{Name: "words"} - request, err := http.NewRequest("DELETE", "/log...
api: fixed url for log in tests.
diff --git a/openquake/commands/engine.py b/openquake/commands/engine.py index <HASH>..<HASH> 100644 --- a/openquake/commands/engine.py +++ b/openquake/commands/engine.py @@ -76,13 +76,6 @@ def run_job(job_ini, log_level='info', log_file=None, exports='', return job_id -def run_tile(job_ini, sites_slice): - ...
Removed unused code [skip CI]
diff --git a/test/test_trace_output.rb b/test/test_trace_output.rb index <HASH>..<HASH> 100644 --- a/test/test_trace_output.rb +++ b/test/test_trace_output.rb @@ -41,13 +41,17 @@ class TestTraceOutput < Rake::TestCase # :nodoc: end def test_trace_issues_single_io_for_args_multiple_strings_and_alternate_sep + ...
Suppress deprecation warning for $\ since ruby <I>
diff --git a/cake/tests/cases/console/libs/tasks/model.test.php b/cake/tests/cases/console/libs/tasks/model.test.php index <HASH>..<HASH> 100644 --- a/cake/tests/cases/console/libs/tasks/model.test.php +++ b/cake/tests/cases/console/libs/tasks/model.test.php @@ -647,8 +647,9 @@ array( //'on' => 'create', // Limit ...
Fix Model validation bake tests for Windows.
diff --git a/services/transaction/get_receipt.js b/services/transaction/get_receipt.js index <HASH>..<HASH> 100644 --- a/services/transaction/get_receipt.js +++ b/services/transaction/get_receipt.js @@ -29,6 +29,7 @@ const GetReceiptKlass = function(params) { params = params || {}; oThis.transactionHash = params....
name to map handle in receipt service.
diff --git a/setting.go b/setting.go index <HASH>..<HASH> 100644 --- a/setting.go +++ b/setting.go @@ -28,8 +28,8 @@ type QorWidgetSettingInterface interface { // QorWidgetSetting default qor widget setting struct type QorWidgetSetting struct { Name string `gorm:"primary_key"` - WidgetType string `gorm:"pri...
Set max length for widget type, scope
diff --git a/src/DjangoPassword.php b/src/DjangoPassword.php index <HASH>..<HASH> 100644 --- a/src/DjangoPassword.php +++ b/src/DjangoPassword.php @@ -87,7 +87,7 @@ class DjangoPassword implements PasswordInterface { if (strpos($hash, '$') === false) { return true; } else { - l...
Scrutinizer Auto-Fixes (#2) This commit consists of patches automatically generated for this project on <URL>
diff --git a/index.js b/index.js index <HASH>..<HASH> 100755 --- a/index.js +++ b/index.js @@ -286,6 +286,8 @@ function attemptInstall (packages, attempts, cb) { log('-- installing %j', packages) var done = once(function (err) { + clearTimeout(timeout) + if (!err) return cb() if (++attempts <= 10...
fix: gracefully handle npm timeouts (#6)
diff --git a/lib/codemirror.js b/lib/codemirror.js index <HASH>..<HASH> 100644 --- a/lib/codemirror.js +++ b/lib/codemirror.js @@ -1276,7 +1276,7 @@ var CodeMirror = (function() { var tc = textChanged; // textChanged can be reset by cursoractivity callback if (selectionChanged && options.onCursorActivity)...
don't fire onChange during editor initialization
diff --git a/src/DayPicker.js b/src/DayPicker.js index <HASH>..<HASH> 100644 --- a/src/DayPicker.js +++ b/src/DayPicker.js @@ -12,7 +12,7 @@ const keys = { SPACE: 32 }; -class Caption extends Component { +class Caption extends Component { // eslint-disable-line render() { const { date, locale, localeUti...
[wip] Disable eslint not working well Need to investigate 🤔
diff --git a/smack-resolver-javax/src/main/java/org/jivesoftware/smack/util/dns/javax/JavaxResolver.java b/smack-resolver-javax/src/main/java/org/jivesoftware/smack/util/dns/javax/JavaxResolver.java index <HASH>..<HASH> 100644 --- a/smack-resolver-javax/src/main/java/org/jivesoftware/smack/util/dns/javax/JavaxResolver....
Reduce scope of catched Exceptions in JavaxResolver
diff --git a/lib/phusion_passenger/admin_tools/instance_registry.rb b/lib/phusion_passenger/admin_tools/instance_registry.rb index <HASH>..<HASH> 100644 --- a/lib/phusion_passenger/admin_tools/instance_registry.rb +++ b/lib/phusion_passenger/admin_tools/instance_registry.rb @@ -105,7 +105,7 @@ module PhusionPassenger ...
When cleaning stale instance directories, rescue all system call exceptions
diff --git a/spring-boot-devtools/src/main/java/org/springframework/boot/devtools/restart/Restarter.java b/spring-boot-devtools/src/main/java/org/springframework/boot/devtools/restart/Restarter.java index <HASH>..<HASH> 100644 --- a/spring-boot-devtools/src/main/java/org/springframework/boot/devtools/restart/Restarter....
Fix broken locking in Restarter.initialize Closes gh-<I>
diff --git a/view/frontend/web/js/view/payment/method-renderer/embedded.js b/view/frontend/web/js/view/payment/method-renderer/embedded.js index <HASH>..<HASH> 100755 --- a/view/frontend/web/js/view/payment/method-renderer/embedded.js +++ b/view/frontend/web/js/view/payment/method-renderer/embedded.js @@ -198,6 +198,9 ...
Frontend JS update Added fullscreen loader to Frames and connected Frames debug mode to module config.
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100755 --- a/setup.py +++ b/setup.py @@ -12,13 +12,9 @@ install_requires = [ 'backports.functools_lru_cache; python_version<"3.2"', 'jedi>=0.17.0,<0.18.0', 'python-jsonrpc-server>=0.4.0', - 'pluggy'] - -if sys.version_info[0] == 2: ...
Fix ujson dep for python2 (#<I>)
diff --git a/scripts/typescript-declarations/generate.js b/scripts/typescript-declarations/generate.js index <HASH>..<HASH> 100644 --- a/scripts/typescript-declarations/generate.js +++ b/scripts/typescript-declarations/generate.js @@ -81,8 +81,8 @@ async function execute() { // Replace callback type by simply "fun...
Inlcude curly brackets in replacement
diff --git a/shell/src/main/java/org/jboss/seam/forge/shell/ShellImpl.java b/shell/src/main/java/org/jboss/seam/forge/shell/ShellImpl.java index <HASH>..<HASH> 100644 --- a/shell/src/main/java/org/jboss/seam/forge/shell/ShellImpl.java +++ b/shell/src/main/java/org/jboss/seam/forge/shell/ShellImpl.java @@ -679,11 +679,1...
fixed NPE when using basic completion (such as the one use for 'install' for facet name)
diff --git a/gstreamer.py b/gstreamer.py index <HASH>..<HASH> 100644 --- a/gstreamer.py +++ b/gstreamer.py @@ -102,7 +102,8 @@ class GstPlayer(Player): try: self._play(media) except Exception: - self.idleCond.notifyAll() + with self.idleCond: + self.idleCond.notifyAll() self.idle = True raise ...
gstreamer: bugfix: forgot acquiring of locks
diff --git a/src/plotypus_scripts/plotypus.py b/src/plotypus_scripts/plotypus.py index <HASH>..<HASH> 100644 --- a/src/plotypus_scripts/plotypus.py +++ b/src/plotypus_scripts/plotypus.py @@ -209,7 +209,7 @@ def _print_star(results, max_degree, fmt): end='\t') print('\t'.join(map(formatter, coefficients_...
Added extra needed trailing zero in output table.
diff --git a/src/Three/Bank.php b/src/Three/Bank.php index <HASH>..<HASH> 100644 --- a/src/Three/Bank.php +++ b/src/Three/Bank.php @@ -5,6 +5,18 @@ namespace Billplz\Three; class Bank extends Request { /** + * Check Bank Account Number. + * + * @param string|int $number + * + * @return \Lar...
Passthrough request to check bank account.
diff --git a/jmxtrans-output/jmxtrans-output-core/src/main/java/com/googlecode/jmxtrans/model/output/support/opentsdb/OpenTSDBMessageFormatter.java b/jmxtrans-output/jmxtrans-output-core/src/main/java/com/googlecode/jmxtrans/model/output/support/opentsdb/OpenTSDBMessageFormatter.java index <HASH>..<HASH> 100644 --- a/j...
....need to be tidier
diff --git a/src/MvcCore/Router/RouteMethods.php b/src/MvcCore/Router/RouteMethods.php index <HASH>..<HASH> 100644 --- a/src/MvcCore/Router/RouteMethods.php +++ b/src/MvcCore/Router/RouteMethods.php @@ -287,6 +287,16 @@ trait RouteMethods if ($errorMsgs) { //var_dump($this->routes); $selfClass = version_c...
router - duplicate routes exception rendering from bootstrap
diff --git a/tests/python_package_test/test_basic.py b/tests/python_package_test/test_basic.py index <HASH>..<HASH> 100644 --- a/tests/python_package_test/test_basic.py +++ b/tests/python_package_test/test_basic.py @@ -1,6 +1,5 @@ # coding: utf-8 import os -import tempfile import lightgbm as lgb import numpy as n...
completely remove tempfile from test_basic (#<I>)
diff --git a/openquake/calculators/views.py b/openquake/calculators/views.py index <HASH>..<HASH> 100644 --- a/openquake/calculators/views.py +++ b/openquake/calculators/views.py @@ -754,6 +754,16 @@ def view_global_poes(token, dstore): return rst_table(tbl, header=header) +@view.add('global_gmfs') +def view_g...
Added view global_gmfs [skip CI] Former-commit-id: 5d<I>e<I>aa6fb<I>fb<I>
diff --git a/mapchete/io/raster.py b/mapchete/io/raster.py index <HASH>..<HASH> 100644 --- a/mapchete/io/raster.py +++ b/mapchete/io/raster.py @@ -71,7 +71,7 @@ def read_raster_window( with rasterio.Env( **get_gdal_options(gdal_opts, is_remote=path_is_remote(input_file, s3=True)) ) as env: - l...
more concise log messages when reading raster
diff --git a/qtpy/QtWidgets.py b/qtpy/QtWidgets.py index <HASH>..<HASH> 100644 --- a/qtpy/QtWidgets.py +++ b/qtpy/QtWidgets.py @@ -63,7 +63,8 @@ elif os.environ[QT_API] in PYQT4_API: QPrintPreviewDialog, QPrintPreviewWidget, QPrinter, QPrinterInfo) # These objects belong to QtCore - del (QItemSelect...
QtWidgets: Remove QItemSelectionModel for PyQt4 and PySide - It belongs to QtCore in PyQt5 - This finishes PR #<I>
diff --git a/plugin/index.js b/plugin/index.js index <HASH>..<HASH> 100644 --- a/plugin/index.js +++ b/plugin/index.js @@ -16,7 +16,7 @@ const expandImports = (source, resolvePath, reference) => { let defs = queryAST.definitions lines.some(line => { if (line[0] === '#' && line.slice(1).split(' ')[0] === 'import'...
Temp fix for Windows This worked for the one person I had testing for me, but I suspect it will break the package on non-windows systems.. Will investigate later.
diff --git a/addon/components/document-title.js b/addon/components/document-title.js index <HASH>..<HASH> 100644 --- a/addon/components/document-title.js +++ b/addon/components/document-title.js @@ -45,7 +45,8 @@ export default Ember.Component.extend({ set(previous, 'showSeparatorBefore', false); } ...
fix document-title to work on Ember <I>
diff --git a/database/factories/CurrencyFactory.php b/database/factories/CurrencyFactory.php index <HASH>..<HASH> 100644 --- a/database/factories/CurrencyFactory.php +++ b/database/factories/CurrencyFactory.php @@ -1,5 +1,5 @@ <?php -namespace AvoRed\Framework\Database\Factories; +namespace Database\Factories; use Il...
Update CurrencyFactory.php
diff --git a/testapps/on_device_unit_tests/test_app/app_flask.py b/testapps/on_device_unit_tests/test_app/app_flask.py index <HASH>..<HASH> 100644 --- a/testapps/on_device_unit_tests/test_app/app_flask.py +++ b/testapps/on_device_unit_tests/test_app/app_flask.py @@ -110,6 +110,7 @@ def loadUrl(): print('asked to o...
Return proper HTTP responses in webview testapp Current Flask throws an exception if a view function returns `None`: ``` python : TypeError: The view function for 'vibrate' did not return a valid response. The function either returned None or ended without a return statement. ``` Maybe that was different in the pas...
diff --git a/Tests/Controller/Admin/DictionaryControllerTest.php b/Tests/Controller/Admin/DictionaryControllerTest.php index <HASH>..<HASH> 100755 --- a/Tests/Controller/Admin/DictionaryControllerTest.php +++ b/Tests/Controller/Admin/DictionaryControllerTest.php @@ -63,7 +63,10 @@ class DictionaryControllerTest extends...
Factory fixes, fixed repositories, tests, entities
diff --git a/khard/address_book.py b/khard/address_book.py index <HASH>..<HASH> 100644 --- a/khard/address_book.py +++ b/khard/address_book.py @@ -1,4 +1,5 @@ # -*- coding: utf-8 -*- +"""A simple class to load and manage the vcard files from disk.""" import glob import logging @@ -9,6 +10,10 @@ from .carddav_objec...
Add docstrings to khard.address_book
diff --git a/cli/command_agent.go b/cli/command_agent.go index <HASH>..<HASH> 100644 --- a/cli/command_agent.go +++ b/cli/command_agent.go @@ -19,12 +19,19 @@ func (c *AgentCommand) Help() string { func (c *AgentCommand) Run(_ []string, ui Ui) int { config := &serf.Config{} + + ui.Output("Starting Serf agent...") ...
cli: Say that the agent is running
diff --git a/src/FieldBuilder.php b/src/FieldBuilder.php index <HASH>..<HASH> 100644 --- a/src/FieldBuilder.php +++ b/src/FieldBuilder.php @@ -32,6 +32,7 @@ namespace StoutLogic\AcfBuilder; * @method FieldBuilder addGoogleMap(string $name, array $args = []) * @method FieldBuilder addLink(string $name, array $args =...
Added missing annotation for addRange function addRange was added to FieldsBuilder as part of <I> in <I>, however individual functions return instances of FieldBuilder, which doesn't include the function. IDE's display function undefined warnings as a result. addRange does however work as intended, so this just adds...
diff --git a/app/models/foreman_chef/fact_parser.rb b/app/models/foreman_chef/fact_parser.rb index <HASH>..<HASH> 100644 --- a/app/models/foreman_chef/fact_parser.rb +++ b/app/models/foreman_chef/fact_parser.rb @@ -32,9 +32,9 @@ module ForemanChef klass.where(args).first || klass.new(args.merge(:description => d...
Fixes #<I> - stop parsing chef environment as puppet environment
diff --git a/src/HtmlForm/Elements/Range.php b/src/HtmlForm/Elements/Range.php index <HASH>..<HASH> 100644 --- a/src/HtmlForm/Elements/Range.php +++ b/src/HtmlForm/Elements/Range.php @@ -37,7 +37,10 @@ class Range extends Parents\Textbox */ public function __construct($name, $label, $min, $max, $args = array()) ...
Added min and max to attributes array
diff --git a/prow/clonerefs/run.go b/prow/clonerefs/run.go index <HASH>..<HASH> 100644 --- a/prow/clonerefs/run.go +++ b/prow/clonerefs/run.go @@ -38,7 +38,11 @@ func (o Options) Run() error { var err error env, err = addSSHKeys(o.KeyFiles) if err != nil { - return fmt.Errorf("failed to add SSH keys: %v", er...
Make clonerefs write errors to log on ssh error.
diff --git a/bin/pfdicom b/bin/pfdicom index <HASH>..<HASH> 100755 --- a/bin/pfdicom +++ b/bin/pfdicom @@ -19,7 +19,7 @@ import pfmisc from pfmisc._colors import Colors from pfmisc import other -str_version = "1.4.16" +str_version = "1.4.18" str_desc = Colors.CYAN + """ __ _ ...
Bump for pypi
diff --git a/raven.js b/raven.js index <HASH>..<HASH> 100644 --- a/raven.js +++ b/raven.js @@ -25,18 +25,20 @@ Database.prototype.getCollections = function(cb) { Database.prototype.save = function(collection, doc, cb) { request.put({ - headers: {'Raven-Entity-Name': collection}, - uri: this.getUrl() + '/do...
little bit of cleanup and todos
diff --git a/src/formats/kml/features/KmlNetworkLink.js b/src/formats/kml/features/KmlNetworkLink.js index <HASH>..<HASH> 100644 --- a/src/formats/kml/features/KmlNetworkLink.js +++ b/src/formats/kml/features/KmlNetworkLink.js @@ -108,6 +108,18 @@ define([ return; } + if(this.kmlLink.kmlR...
Start implementation of refresh for the link.
diff --git a/discovery/manager_test.go b/discovery/manager_test.go index <HASH>..<HASH> 100644 --- a/discovery/manager_test.go +++ b/discovery/manager_test.go @@ -51,7 +51,7 @@ func TestTargetUpdatesOrder(t *testing.T) { expectedTargets: nil, }, { - title: "Multips TPs no updates", + title: "Multiple TPs ...
Fix misspell in manager_test.go (#<I>)
diff --git a/src/Drupal/DrupalExtension/Context/DrupalContext.php b/src/Drupal/DrupalExtension/Context/DrupalContext.php index <HASH>..<HASH> 100644 --- a/src/Drupal/DrupalExtension/Context/DrupalContext.php +++ b/src/Drupal/DrupalExtension/Context/DrupalContext.php @@ -1,6 +1,6 @@ <?php -namespace Drupal\DrupalExte...
Fixing typo in DrupalContext.php.
diff --git a/lib/feed2email/feed.rb b/lib/feed2email/feed.rb index <HASH>..<HASH> 100644 --- a/lib/feed2email/feed.rb +++ b/lib/feed2email/feed.rb @@ -14,7 +14,6 @@ require 'feed2email/version' module Feed2Email class Feed < Sequel::Model(:feeds) - plugin :dirty plugin :timestamps one_to_many :entr...
Use instance variables to restore last_modified/etag Thus removing the dependency of the "dirty" Sequel plugin.
diff --git a/wafer/talks/forms.py b/wafer/talks/forms.py index <HASH>..<HASH> 100644 --- a/wafer/talks/forms.py +++ b/wafer/talks/forms.py @@ -148,6 +148,11 @@ class ReviewForm(forms.Form): super(ReviewForm, self).__init__(*args, **kwargs) + review_range =_("(Score range: %(min)d to %(max)d)") % { ...
Add the review score range to the widget label, so it's obvious to reviewers
diff --git a/openpnm/utils/misc.py b/openpnm/utils/misc.py index <HASH>..<HASH> 100644 --- a/openpnm/utils/misc.py +++ b/openpnm/utils/misc.py @@ -5,10 +5,8 @@ import numpy as _np import scipy as _sp import time as _time import copy -from dataclasses import dataclass from collections import OrderedDict from docrep...
oops forgot to remove dataclasses import from a file
diff --git a/lib/chef/node_map.rb b/lib/chef/node_map.rb index <HASH>..<HASH> 100644 --- a/lib/chef/node_map.rb +++ b/lib/chef/node_map.rb @@ -38,12 +38,12 @@ class Chef class NodeMap COLLISION_WARNING_14 = <<~EOH.gsub(/\s+/, " ").strip - %{type_caps} %{key} from a cookbook is overriding the %{type} from ...
replace "core" with "the client" because users don't grok "core"
diff --git a/lib/less/parser/parser.js b/lib/less/parser/parser.js index <HASH>..<HASH> 100644 --- a/lib/less/parser/parser.js +++ b/lib/less/parser/parser.js @@ -704,10 +704,7 @@ var Parser = function Parser(context, imports, fileInfo) { expressionContainsNamed = true; ...
parser – fix #<I>: allow detached rulesets as mixin argument defaults
diff --git a/src/CouchDB/Database.php b/src/CouchDB/Database.php index <HASH>..<HASH> 100644 --- a/src/CouchDB/Database.php +++ b/src/CouchDB/Database.php @@ -33,6 +33,16 @@ class Database } /** + * Gets the current connection + * + * @return Connection + */ + public function getConnectio...
Add getConnection method to Database
diff --git a/parseany.go b/parseany.go index <HASH>..<HASH> 100644 --- a/parseany.go +++ b/parseany.go @@ -7,10 +7,10 @@ import ( "unicode" ) -type DateState int +type dateState int const ( - st_START DateState = iota + st_START dateState = iota st_DIGIT st_DIGITDASH st_DIGITDASHALPHA
state constants dont need to be public
diff --git a/signer/signer_test.go b/signer/signer_test.go index <HASH>..<HASH> 100644 --- a/signer/signer_test.go +++ b/signer/signer_test.go @@ -1,7 +1,6 @@ package signer_test import ( - "fmt" "github.com/cloudfoundry/bosh-davcli/signer" . "github.com/onsi/ginkgo" . "github.com/onsi/gomega"
Fix imported and not used: "fmt"
diff --git a/lib/build-graph.js b/lib/build-graph.js index <HASH>..<HASH> 100644 --- a/lib/build-graph.js +++ b/lib/build-graph.js @@ -11,7 +11,7 @@ function buildGraph(parseTree) { defaultStack = [{ node: {}, edge: {} }], id = parseTree.id, g = new Graph({ directed: isDirected, multigraph: isMulti...
Fix code style for graph id patch
diff --git a/pact/pact-compiler/src/main/java/eu/stratosphere/pact/compiler/plan/OptimizerNode.java b/pact/pact-compiler/src/main/java/eu/stratosphere/pact/compiler/plan/OptimizerNode.java index <HASH>..<HASH> 100644 --- a/pact/pact-compiler/src/main/java/eu/stratosphere/pact/compiler/plan/OptimizerNode.java +++ b/pact...
Fixed bug in uniqueness determination in optimizer node
diff --git a/randomized-runner/src/main/java/com/carrotsearch/randomizedtesting/ThreadLeakControl.java b/randomized-runner/src/main/java/com/carrotsearch/randomizedtesting/ThreadLeakControl.java index <HASH>..<HASH> 100644 --- a/randomized-runner/src/main/java/com/carrotsearch/randomizedtesting/ThreadLeakControl.java +...
Never fail on missing mx bean,
diff --git a/lib/lanes/api/root.rb b/lib/lanes/api/root.rb index <HASH>..<HASH> 100644 --- a/lib/lanes/api/root.rb +++ b/lib/lanes/api/root.rb @@ -38,7 +38,7 @@ module Lanes end prefix = Lanes.config.mounted_at + (parent_attribute || '') - puts "#{prefix}/#{path}" + ...
remove debugging puts that got checked in
diff --git a/aws/resource_aws_sfn_activity_test.go b/aws/resource_aws_sfn_activity_test.go index <HASH>..<HASH> 100644 --- a/aws/resource_aws_sfn_activity_test.go +++ b/aws/resource_aws_sfn_activity_test.go @@ -19,6 +19,7 @@ func TestAccAWSSfnActivity_basic(t *testing.T) { resource.ParallelTest(t, resource.TestCase...
tests/r/sfn_activity: Add ErrorCheck
diff --git a/globus_cli/helpers/printing.py b/globus_cli/helpers/printing.py index <HASH>..<HASH> 100644 --- a/globus_cli/helpers/printing.py +++ b/globus_cli/helpers/printing.py @@ -49,17 +49,23 @@ def print_table(iterable, headers_and_keys, print_headers=True): # the same order as the headers_and_keys array ...
Fix table printing to handle unicode This is not sufficient for us to claim broad unicode support, but rather a patch for something I just encountered. If there is unicode data in a table we want to print for output, we need to handle two things: 1. str(value) is unsafe, so only do it on types that don't support __...
diff --git a/ServiceProvider.php b/ServiceProvider.php index <HASH>..<HASH> 100755 --- a/ServiceProvider.php +++ b/ServiceProvider.php @@ -113,7 +113,12 @@ abstract class ServiceProvider { if ($group) { - static::$publishGroups[$group] = $paths; + if ( ! array_key_exists($group, static::$publishGroups)) + ...
Bugfix for Support: ServiceProvider - method publish() - merging tagged (marked with group) paths with already registered ones - method pathsToPublish() - added support for selecting by both provider and group
diff --git a/test.js b/test.js index <HASH>..<HASH> 100644 --- a/test.js +++ b/test.js @@ -35,6 +35,22 @@ test('split two lines on two writes', function (t) { input.end() }) +test('split four lines on three writes', function (t) { + t.plan(2) + + var input = split() + + input.pipe(strcb(function (err, list) { ...
test: add a test case for char-grouped streams Given the other test cases, I could not determine if split supports such a use case in that chunks are split in-line.
diff --git a/karma.conf.js b/karma.conf.js index <HASH>..<HASH> 100644 --- a/karma.conf.js +++ b/karma.conf.js @@ -17,9 +17,13 @@ module.exports = function(config) { browsers: ['ChromeHeadlessNoSandbox', 'ie11'], + browserDisconnectTimeout: '60000', + browserNoActivityTimeout: '60000', + client: { ...
Increase the Karma timeout to 1 minute
diff --git a/query/src/test/java/org/infinispan/query/affinity/AffinityRpcTest.java b/query/src/test/java/org/infinispan/query/affinity/AffinityRpcTest.java index <HASH>..<HASH> 100644 --- a/query/src/test/java/org/infinispan/query/affinity/AffinityRpcTest.java +++ b/query/src/test/java/org/infinispan/query/affinity/Af...
ISPN-<I> Remove workaround in AffinityRpcTest
diff --git a/karma.conf.js b/karma.conf.js index <HASH>..<HASH> 100644 --- a/karma.conf.js +++ b/karma.conf.js @@ -34,11 +34,11 @@ module.exports = function (config) { port: 8080, - logLevel: config.LOG_INFO, + logLevel: config.LOG_DEBUG, autoWatch: false, - browsers: ['Ph...
Switched back to Chrome in test suite.
diff --git a/ctfile/ctfile.py b/ctfile/ctfile.py index <HASH>..<HASH> 100644 --- a/ctfile/ctfile.py +++ b/ctfile/ctfile.py @@ -587,6 +587,11 @@ class Molfile(CTfile): """ return self['Ctab'].hydrogen_atoms + @property + def as_sdfile(self): + """Create ``SDfile`` from ``Molfile``.""" + ...
Added property that converts "Molfile" into "SDfile".
diff --git a/source/rafcon/mvc/controllers/state_transitions.py b/source/rafcon/mvc/controllers/state_transitions.py index <HASH>..<HASH> 100644 --- a/source/rafcon/mvc/controllers/state_transitions.py +++ b/source/rafcon/mvc/controllers/state_transitions.py @@ -499,6 +499,10 @@ class StateTransitionsListController(Ext...
Check for exception in state_transition observer The notification method in the state transition controller now checks for exceptions caused by the changing method. If one occurred, nothing is being updated.
diff --git a/src/modelbase.js b/src/modelbase.js index <HASH>..<HASH> 100644 --- a/src/modelbase.js +++ b/src/modelbase.js @@ -166,7 +166,7 @@ module.exports = function(ngin) { self.fromList(data, function(err, list) { // check for a single page request - if (options.page || !pagination |...
Check query.page when testing for single page
diff --git a/ipuz/structures/direction.py b/ipuz/structures/direction.py index <HASH>..<HASH> 100644 --- a/ipuz/structures/direction.py +++ b/ipuz/structures/direction.py @@ -2,9 +2,9 @@ def validate_direction(direction): splitted = direction.split(':') - direction_name = direction if len(splitted) > 2:...
Minor change in logic for direction name calculation
diff --git a/code/SVGTemplate.php b/code/SVGTemplate.php index <HASH>..<HASH> 100755 --- a/code/SVGTemplate.php +++ b/code/SVGTemplate.php @@ -48,7 +48,7 @@ class SVGTemplate extends ViewableData /** * @var string */ - private $custom_base; + private $custom_base_path; /** * @var arr...
Renaming SVGTemplate::$custom_base to $custom_base_path
diff --git a/lib/cli/lib/initiate.js b/lib/cli/lib/initiate.js index <HASH>..<HASH> 100644 --- a/lib/cli/lib/initiate.js +++ b/lib/cli/lib/initiate.js @@ -73,7 +73,7 @@ export default function(options, pkg) { logger.log(); paddedLog('There seems to be a storybook already available in this project.'); ...
Update missed getstorybook occurrences
diff --git a/src/Service.php b/src/Service.php index <HASH>..<HASH> 100644 --- a/src/Service.php +++ b/src/Service.php @@ -193,7 +193,7 @@ class Service extends Component $decodedJson = $this->_getAssetContents($asset); // Automatic refreshing of Instagram embedded assets every seven days, s...
Set providerName to lowercase Apparently the platformName variable is not always stored consistent as capitalized. It varies between "Instagram" and lowercase "instagram". This resulted in some embeds weren't getting refreshed.
diff --git a/src/draw/handler/Draw.Marker.js b/src/draw/handler/Draw.Marker.js index <HASH>..<HASH> 100644 --- a/src/draw/handler/Draw.Marker.js +++ b/src/draw/handler/Draw.Marker.js @@ -47,18 +47,18 @@ L.Draw.Marker = L.Draw.Feature.extend({ if (this._map) { if (this._marker) { - this._marker.off('click', ...
Pass the context in removeHooks so events will be removed correctly in the latest leaflet build.
diff --git a/src/search/FindReplace.js b/src/search/FindReplace.js index <HASH>..<HASH> 100644 --- a/src/search/FindReplace.js +++ b/src/search/FindReplace.js @@ -178,7 +178,7 @@ define(function (require, exports, module) { if (state.matchIndex !== -1) { // Convert to 1-based by adding one...
Use resultSet array length for total match count rather than using the length of Marked Text.
diff --git a/src/passes/pass.js b/src/passes/pass.js index <HASH>..<HASH> 100644 --- a/src/passes/pass.js +++ b/src/passes/pass.js @@ -65,6 +65,12 @@ export class Pass { this.quad = quad; + if(this.quad !== null) { + + this.quad.frustumCulled = false; + + } + /** * Indicates whether the read and write...
Don't let the quad be clipped. See mrdoob/three.js#<I>.
diff --git a/src/Collection.php b/src/Collection.php index <HASH>..<HASH> 100644 --- a/src/Collection.php +++ b/src/Collection.php @@ -32,7 +32,7 @@ abstract class Collection extends \Illuminate\Support\Collection $class = $collection->get($key); if (class_exists($class)) { - return new $...
Resolving collection instances from the container
diff --git a/lib/mongoid/field.rb b/lib/mongoid/field.rb index <HASH>..<HASH> 100644 --- a/lib/mongoid/field.rb +++ b/lib/mongoid/field.rb @@ -34,7 +34,7 @@ module Mongoid #:nodoc: # <tt>Field.new(:score, :default => 0)</tt> def initialize(name, options = {}) check_name!(name) - @type = options[:t...
Changing default field type to Object instead of String
diff --git a/src/test/java/org/eclipse/jetty/nosql/memcached/MemcachedTestServer.java b/src/test/java/org/eclipse/jetty/nosql/memcached/MemcachedTestServer.java index <HASH>..<HASH> 100644 --- a/src/test/java/org/eclipse/jetty/nosql/memcached/MemcachedTestServer.java +++ b/src/test/java/org/eclipse/jetty/nosql/memcache...
set workerName for MemcachedSessionIdManager.
diff --git a/stackinternal_test.go b/stackinternal_test.go index <HASH>..<HASH> 100644 --- a/stackinternal_test.go +++ b/stackinternal_test.go @@ -31,3 +31,34 @@ func TestCaller(t *testing.T) { t.Errorf("got line == %v, want line == %v", got, want) } } + +type fholder struct { + f func() CallStack +} + +func (fh ...
Add additional test for Trace().
diff --git a/test/features/pagecontent/content_negotiation.js b/test/features/pagecontent/content_negotiation.js index <HASH>..<HASH> 100644 --- a/test/features/pagecontent/content_negotiation.js +++ b/test/features/pagecontent/content_negotiation.js @@ -49,7 +49,6 @@ describe('Content negotiation', function() { ...
Minor: Remove superfluous console.log()
diff --git a/aegea/batch.py b/aegea/batch.py index <HASH>..<HASH> 100644 --- a/aegea/batch.py +++ b/aegea/batch.py @@ -438,7 +438,7 @@ def watch(args): logger.info("Job %s %s", args.job_id, format_job_status(job_desc["status"])) last_status = job_desc["status"] if job_desc["status...
aegea batch watch: fix logic error when job fails before starting