diff
stringlengths
65
26.7k
message
stringlengths
7
9.92k
diff --git a/common/src/main/java/com/turn/ttorrent/common/TorrentGeneralMetadata.java b/common/src/main/java/com/turn/ttorrent/common/TorrentGeneralMetadata.java index <HASH>..<HASH> 100644 --- a/common/src/main/java/com/turn/ttorrent/common/TorrentGeneralMetadata.java +++ b/common/src/main/java/com/turn/ttorrent/comm...
added getHexInfoHash method to torrent general metadata interface.
diff --git a/db/db.py b/db/db.py index <HASH>..<HASH> 100644 --- a/db/db.py +++ b/db/db.py @@ -1235,7 +1235,7 @@ class DB(object): sys.stderr.write("Refreshing schema. Please wait...") if self.schemas is not None and isinstance(self.schemas, list) and 'schema_specified' in self._query_templates['syste...
Fix for schema_specified case in refresh_schema
diff --git a/pysoa/client/client.py b/pysoa/client/client.py index <HASH>..<HASH> 100644 --- a/pysoa/client/client.py +++ b/pysoa/client/client.py @@ -358,11 +358,12 @@ class Client(object): context['correlation_id'] = correlation_id elif 'correlation_id' not in context: context['corr...
Ensure that switches from Client.context are correctly merged with the switches passed to each request.
diff --git a/paramiko/server.py b/paramiko/server.py index <HASH>..<HASH> 100644 --- a/paramiko/server.py +++ b/paramiko/server.py @@ -179,6 +179,35 @@ class ServerInterface (object): @rtype: int """ return AUTH_FAILED + + def check_global_request(self, kind, msg): + """ + ...
[project @ Arch-1:<EMAIL><I>-public%secsh--dev--<I>--patch-<I>] oops (continued) er, part 2 of that.
diff --git a/kuyruk/worker.py b/kuyruk/worker.py index <HASH>..<HASH> 100644 --- a/kuyruk/worker.py +++ b/kuyruk/worker.py @@ -106,12 +106,13 @@ class Worker: try: signals.worker_start.send(self.kuyruk, worker=self) self._consume_messages() - signals.worker_shutdown.send(se...
always send worker_shutdown signal
diff --git a/grip/browser.py b/grip/browser.py index <HASH>..<HASH> 100644 --- a/grip/browser.py +++ b/grip/browser.py @@ -1,5 +1,6 @@ import socket import webbrowser +import time def is_server_running(host, port): @@ -8,7 +9,8 @@ def is_server_running(host, port): host and port. """ sock = socket...
Stop browser opening consuming all the sockets
diff --git a/mongorest/resource.py b/mongorest/resource.py index <HASH>..<HASH> 100644 --- a/mongorest/resource.py +++ b/mongorest/resource.py @@ -3,19 +3,17 @@ import six from werkzeug.routing import Map, Rule -from werkzeug.wrappers import Response from .collection import Collection -from .utils import deseria...
removing mixins cause they need fixing
diff --git a/lib/devise/rails/routes.rb b/lib/devise/rails/routes.rb index <HASH>..<HASH> 100644 --- a/lib/devise/rails/routes.rb +++ b/lib/devise/rails/routes.rb @@ -94,10 +94,24 @@ module ActionDispatch::Routing # # devise_for :users, path: 'accounts' # - # * singular: setup the singular name ...
[ci skip] Write how to use `singular` option of `ActionDispatch::Routing::Mapper#devise_for` * Replace "the instance variable name in controller" with "the helper methods names in controller". Devise dose not define instance variable for controllers but define helper methods for controllers. * Replace "the name ...
diff --git a/lib/main.js b/lib/main.js index <HASH>..<HASH> 100644 --- a/lib/main.js +++ b/lib/main.js @@ -222,7 +222,7 @@ function sendAction(cmd, type, msg, options) { }) .buffer("dataPacketType", 1) .tap(function (vars) { - var responseType = parseUtil.int8(vars.dataPacketType);...
Mask response type with 0x0F. See #<I>.
diff --git a/tests/MockTest.php b/tests/MockTest.php index <HASH>..<HASH> 100644 --- a/tests/MockTest.php +++ b/tests/MockTest.php @@ -63,4 +63,17 @@ class MockTest extends PHPUnit_Framework_TestCase { $this->assertEquals($result, 'hello["world"]'); $server->close(); } + public function testMi...
Added testMissingMethod2
diff --git a/gwpy/data/array.py b/gwpy/data/array.py index <HASH>..<HASH> 100644 --- a/gwpy/data/array.py +++ b/gwpy/data/array.py @@ -165,6 +165,17 @@ class Array(Quantity): prefixstr, arrstr, indent, metadata) # ------------------------------------------- + # Pickle helpers + + def dumps(sel...
Array: override dumps and tostring to enable pickling
diff --git a/examples/create_invite_link.py b/examples/create_invite_link.py index <HASH>..<HASH> 100644 --- a/examples/create_invite_link.py +++ b/examples/create_invite_link.py @@ -1,7 +1,7 @@ -import telebot, threading +import telebot from time import sleep, time -from telebot import InlineKeyboardMarkup as ikm #On...
Update create_invite_link.py Added .types while importing inline markup keyboards (fix) Removed threading import since message is not to be deleted
diff --git a/lib/stripe_mock/api/client.rb b/lib/stripe_mock/api/client.rb index <HASH>..<HASH> 100644 --- a/lib/stripe_mock/api/client.rb +++ b/lib/stripe_mock/api/client.rb @@ -3,8 +3,10 @@ module StripeMock def self.client; @client; end def self.start_client(port=4999) + return @client unless @client.nil?...
Don't create new clients when calling start_client multiple times
diff --git a/test/test.js b/test/test.js index <HASH>..<HASH> 100644 --- a/test/test.js +++ b/test/test.js @@ -292,12 +292,3 @@ test.skip('skip test with `.skip()`', function (t) { t.end(); }); }); - -test.skip('throwing in a test should emit the error', function (t) { - ava(function (a) { - throw new Error('uni...
we shouldn't catch thrown user errors this also aligns with `tape` behaviour
diff --git a/azurerm/internal/services/dns/dns_zone_data_source.go b/azurerm/internal/services/dns/dns_zone_data_source.go index <HASH>..<HASH> 100644 --- a/azurerm/internal/services/dns/dns_zone_data_source.go +++ b/azurerm/internal/services/dns/dns_zone_data_source.go @@ -90,7 +90,11 @@ func dataSourceArmDnsZoneRead(...
added nil and empty check for id
diff --git a/lib/event_sourcery/event_store/event_builder.rb b/lib/event_sourcery/event_store/event_builder.rb index <HASH>..<HASH> 100644 --- a/lib/event_sourcery/event_store/event_builder.rb +++ b/lib/event_sourcery/event_store/event_builder.rb @@ -1,13 +1,12 @@ module EventSourcery module EventStore class E...
Type is a requirement so use fetch
diff --git a/lib/unitwise/scale.rb b/lib/unitwise/scale.rb index <HASH>..<HASH> 100644 --- a/lib/unitwise/scale.rb +++ b/lib/unitwise/scale.rb @@ -94,6 +94,10 @@ module Unitwise end memoize :simplified_value + def expression + unit.expression + end + # Convert to a simple string representing...
May now convert measurements to units of other measurements.
diff --git a/lib/helper/WebDriverIO.js b/lib/helper/WebDriverIO.js index <HASH>..<HASH> 100644 --- a/lib/helper/WebDriverIO.js +++ b/lib/helper/WebDriverIO.js @@ -170,7 +170,7 @@ class WebDriverIO extends Helper { // set defaults this.options = { - waitforTimeout: 1000, // ms + waitForTimeout: 100...
Fix typo in webdriverio config timeout (#<I>)
diff --git a/closure/goog/labs/useragent/util.js b/closure/goog/labs/useragent/util.js index <HASH>..<HASH> 100644 --- a/closure/goog/labs/useragent/util.js +++ b/closure/goog/labs/useragent/util.js @@ -12,12 +12,6 @@ // See the License for the specific language governing permissions and // limitations under the Lice...
RELNOTES: n/a ------------- Created by MOE: <URL>
diff --git a/src/test/java/strman/StrmanTest.java b/src/test/java/strman/StrmanTest.java index <HASH>..<HASH> 100644 --- a/src/test/java/strman/StrmanTest.java +++ b/src/test/java/strman/StrmanTest.java @@ -942,4 +942,10 @@ public class StrmanTest { public void isEnclosedBetween_shouldThrowIllegalArgumentException...
Resolved #<I>
diff --git a/bug_test.go b/bug_test.go index <HASH>..<HASH> 100644 --- a/bug_test.go +++ b/bug_test.go @@ -574,15 +574,8 @@ func Test_issue80(t *testing.T) { 14018689590001, 140186895900001, 1401868959000001, - 1401868959000001.5, - 140186...
Fix Test_issue<I> on Go <I> An upstream change (<URL>) makes the Go encoder to be more compliant with the ES6 standard. Ironically, this change causes Test_issue<I> to fail on the larger number ranges. To make this test work on both Go <I> and Go <I>, we delete the larger value tests, which are arguably locking in th...
diff --git a/packages/cli/src/link/ios/getTargets.js b/packages/cli/src/link/ios/getTargets.js index <HASH>..<HASH> 100644 --- a/packages/cli/src/link/ios/getTargets.js +++ b/packages/cli/src/link/ios/getTargets.js @@ -40,4 +40,4 @@ export default function getTargets(project) { false, }; }); -}; ...
fix: make prettier happy (#<I>)
diff --git a/lnetatmo.py b/lnetatmo.py index <HASH>..<HASH> 100644 --- a/lnetatmo.py +++ b/lnetatmo.py @@ -320,10 +320,10 @@ class WeatherStationData: self.stations = { d['station_name'] : d for d in self.rawData } self.homes = { d['home_name'] : d["station_name"] for d in self.rawData } # Ke...
[Fix] #<I> wrong default station selected for multi-homes setup
diff --git a/src/Composer/Compiler.php b/src/Composer/Compiler.php index <HASH>..<HASH> 100644 --- a/src/Composer/Compiler.php +++ b/src/Composer/Compiler.php @@ -107,6 +107,7 @@ class Compiler $this->addFile($phar, $file, false); } $this->addFile($phar, new \SplFileInfo(__DIR__ . '/../.....
Add missing file to v1 phar
diff --git a/confidence.py b/confidence.py index <HASH>..<HASH> 100644 --- a/confidence.py +++ b/confidence.py @@ -227,7 +227,8 @@ def loadf(*fnames, default=_NoDefault): if default is _NoDefault or path.exists(fname): # (attempt to) open fname if it exists OR if we're expected to raise an error o...
Default to empty dict for falsy yaml sources
diff --git a/tests/test-timber-post.php b/tests/test-timber-post.php index <HASH>..<HASH> 100644 --- a/tests/test-timber-post.php +++ b/tests/test-timber-post.php @@ -20,6 +20,17 @@ $this->assertEquals($firstPost->next()->ID, $nextPost->ID); } + function testPrev(){ + $posts = array(); + for($i = 0; $i<2;...
wrote test for TimberPost::prev
diff --git a/file_system.go b/file_system.go index <HASH>..<HASH> 100644 --- a/file_system.go +++ b/file_system.go @@ -218,9 +218,12 @@ type FileSystem interface { // // * (http://goo.gl/IQkWZa) sys_fsync calls do_fsync, calls vfs_fsync, calls // vfs_fsync_range. + // // * (http://goo.gl/5L2SMy) vfs_fsy...
Added a callout to msync for SyncFile.
diff --git a/resources/lang/ja-JP/cachet.php b/resources/lang/ja-JP/cachet.php index <HASH>..<HASH> 100644 --- a/resources/lang/ja-JP/cachet.php +++ b/resources/lang/ja-JP/cachet.php @@ -53,9 +53,9 @@ return [ // Service Status 'service' => [ - 'good' => '[0,1]正常に稼動しています|[2,Inf]全システムが正常に稼動しています', - ...
New translations cachet.php (Japanese)
diff --git a/test/youtube-dl/video_test.rb b/test/youtube-dl/video_test.rb index <HASH>..<HASH> 100644 --- a/test/youtube-dl/video_test.rb +++ b/test/youtube-dl/video_test.rb @@ -7,22 +7,22 @@ describe YoutubeDL::Video do end it 'should download videos without options' do - YoutubeDL.download TEST_URL ...
Changed Video test to actually test Video and not just the YoutubeDL module.
diff --git a/activerecord/lib/active_record/database_configurations/database_config.rb b/activerecord/lib/active_record/database_configurations/database_config.rb index <HASH>..<HASH> 100644 --- a/activerecord/lib/active_record/database_configurations/database_config.rb +++ b/activerecord/lib/active_record/database_con...
Remove duplicate part from deprecation warning Before: ``` DEPRECATION WARNING: spec_name is deprecated and will be removed from Rails <I> (spec_name accessors are deprecated and will be removed in Rails <I>, please use name instead.) ``` After: ``` DEPRECATION WARNING: spec_name is deprecated and will be removed f...
diff --git a/thrifty-schema/src/main/java/com/microsoft/thrifty/schema/Constant.java b/thrifty-schema/src/main/java/com/microsoft/thrifty/schema/Constant.java index <HASH>..<HASH> 100644 --- a/thrifty-schema/src/main/java/com/microsoft/thrifty/schema/Constant.java +++ b/thrifty-schema/src/main/java/com/microsoft/thrift...
Pass type through constant builder (#<I>)
diff --git a/tools/humanize/humanize.go b/tools/humanize/humanize.go index <HASH>..<HASH> 100644 --- a/tools/humanize/humanize.go +++ b/tools/humanize/humanize.go @@ -58,16 +58,16 @@ func ParseBytes(str string) (uint64, error) { return 0, err } - unit := strings.ToLower(strings.TrimSpace(str[sep:])) + m, err := ...
tools/humanize: use ParseByteUnit from ParseBytes
diff --git a/src/Gordalina/Mangopay/Model/User.php b/src/Gordalina/Mangopay/Model/User.php index <HASH>..<HASH> 100644 --- a/src/Gordalina/Mangopay/Model/User.php +++ b/src/Gordalina/Mangopay/Model/User.php @@ -278,7 +278,7 @@ class User extends TimestampableModel */ public function setNationality($Nationali...
Prevent blowing up when creating a user without nationality
diff --git a/plugins/commands/serve/mappers/direct.rb b/plugins/commands/serve/mappers/direct.rb index <HASH>..<HASH> 100644 --- a/plugins/commands/serve/mappers/direct.rb +++ b/plugins/commands/serve/mappers/direct.rb @@ -37,8 +37,12 @@ module VagrantPlugins def converter(direct, mappers) args = ...
Log errors from submapping on direct type
diff --git a/generators/server/templates/src/main/java/package/config/locale/_AngularCookieLocaleResolver.java b/generators/server/templates/src/main/java/package/config/locale/_AngularCookieLocaleResolver.java index <HASH>..<HASH> 100644 --- a/generators/server/templates/src/main/java/package/config/locale/_AngularCoo...
[Sonar] remove variable intermediary change
diff --git a/ast_test.go b/ast_test.go index <HASH>..<HASH> 100644 --- a/ast_test.go +++ b/ast_test.go @@ -283,7 +283,7 @@ var astTests = []testCase{ }, }, { - []string{"foo | bar", "foo|bar"}, + []string{"foo | bar", "foo|bar", "foo |\n#etc\nbar"}, BinaryExpr{ Op: OR, X: litStmt("foo"), diff --git...
Fix comments right after a binary operator
diff --git a/ez_setup.py b/ez_setup.py index <HASH>..<HASH> 100644 --- a/ez_setup.py +++ b/ez_setup.py @@ -30,7 +30,7 @@ try: except ImportError: USER_SITE = None -DEFAULT_VERSION = "14.4" +DEFAULT_VERSION = "14.3.1" DEFAULT_URL = "https://pypi.python.org/packages/source/s/setuptools/" DEFAULT_SAVE_DIR = os.c...
Bumped to <I> in preparation for next release.
diff --git a/transport/http2_client.go b/transport/http2_client.go index <HASH>..<HASH> 100644 --- a/transport/http2_client.go +++ b/transport/http2_client.go @@ -252,8 +252,7 @@ func (t *http2Client) newStream(ctx context.Context, callHdr *CallHdr) *Stream { s.windowHandler = func(n int) { t.updateWindow(s, uint3...
Use user context instead of creating new context for client side stream
diff --git a/src/Kodeine/Metable/Metable.php b/src/Kodeine/Metable/Metable.php index <HASH>..<HASH> 100644 --- a/src/Kodeine/Metable/Metable.php +++ b/src/Kodeine/Metable/Metable.php @@ -13,6 +13,16 @@ trait Metable // Static property registration sigleton for save observation and slow large set hotfix public...
Update Metable.php helpful/nice to have something like this: Post::whereMeta(['revision', 'draft'])
diff --git a/oauth2_test.go b/oauth2_test.go index <HASH>..<HASH> 100644 --- a/oauth2_test.go +++ b/oauth2_test.go @@ -20,7 +20,7 @@ import ( "testing" "github.com/codegangsta/martini" - "github.com/codegangsta/martini-contrib/sessions" + "github.com/martini-contrib/sessions" ) func Test_LoginRedirect(t *test...
Import sessions from the new origin.
diff --git a/tests/Common/FilesTest.php b/tests/Common/FilesTest.php index <HASH>..<HASH> 100644 --- a/tests/Common/FilesTest.php +++ b/tests/Common/FilesTest.php @@ -24,6 +24,7 @@ class FilesTest extends StorageApiTestCase $uploadedFile = reset($files); $this->assertEquals($fileId, $uploadedFile['id'...
testing that federation token is required for credentials
diff --git a/externs/closure-compiler.js b/externs/closure-compiler.js index <HASH>..<HASH> 100644 --- a/externs/closure-compiler.js +++ b/externs/closure-compiler.js @@ -30,3 +30,15 @@ Touch.prototype.webkitRadiusX; /** @type {number} */ Touch.prototype.webkitRadiusY; + + + +/** + * @type {boolean} + */ +WebGLCont...
Add two missing properties to extern of WebGLContextAttributes To be removed when the closure-compiler is updated
diff --git a/h5p.classes.php b/h5p.classes.php index <HASH>..<HASH> 100644 --- a/h5p.classes.php +++ b/h5p.classes.php @@ -1375,6 +1375,14 @@ class H5PContentValidator { } } } + foreach ($semantics->fields as $field) { + if (!(isset($field->optional) && $field->optional)) { + // Chec...
OPPG-<I>: Validator just got a little more annoying. Gives warning if mandatory fields are missing in group
diff --git a/manifest.php b/manifest.php index <HASH>..<HASH> 100755 --- a/manifest.php +++ b/manifest.php @@ -13,7 +13,7 @@ return array( 'label' => 'Result storage for LTI', 'description' => 'Implements the LTI basic outcome engine for LTI Result Server', 'license' => 'GPL-2.0', - 'version' => '1.0'...
Fixed taoLtiBasicOutcome version, it was not fullfilling requirement of <I>+ from ltiDeliveryProvider extension
diff --git a/storage/remote/storage.go b/storage/remote/storage.go index <HASH>..<HASH> 100644 --- a/storage/remote/storage.go +++ b/storage/remote/storage.go @@ -15,10 +15,13 @@ package remote import ( "context" + "crypto/md5" + "encoding/json" "sync" "time" "github.com/go-kit/kit/log" + "github.com/go-ki...
Don't stop, recreate, and start remote storage QueueManagers if the (#<I>) remote write config hasn't changed at all.
diff --git a/main.py b/main.py index <HASH>..<HASH> 100755 --- a/main.py +++ b/main.py @@ -499,10 +499,6 @@ class PowerLogParser: entity = self._parse_entity(entity) node = TagChangeNode(ts, entity, tag, value) - if self.current_node.indent_level > indent_level: - # mismatched indent levels - closing the...
Remove an indent-mismatch hack causing incorrect replays
diff --git a/lib/active_record/connection_adapters/sqlserver/database_statements.rb b/lib/active_record/connection_adapters/sqlserver/database_statements.rb index <HASH>..<HASH> 100644 --- a/lib/active_record/connection_adapters/sqlserver/database_statements.rb +++ b/lib/active_record/connection_adapters/sqlserver/data...
Class#parent inspection is dirt slow.
diff --git a/hotdoc/core/base_formatter.py b/hotdoc/core/base_formatter.py index <HASH>..<HASH> 100644 --- a/hotdoc/core/base_formatter.py +++ b/hotdoc/core/base_formatter.py @@ -26,7 +26,7 @@ import shutil import pygraphviz as pg from hotdoc.utils.configurable import Configurable from hotdoc.utils.simple_signals im...
base_formatter: copy extra assets files as well
diff --git a/eZ/Bundle/EzPublishCoreBundle/Composer/ScriptHandler.php b/eZ/Bundle/EzPublishCoreBundle/Composer/ScriptHandler.php index <HASH>..<HASH> 100644 --- a/eZ/Bundle/EzPublishCoreBundle/Composer/ScriptHandler.php +++ b/eZ/Bundle/EzPublishCoreBundle/Composer/ScriptHandler.php @@ -93,7 +93,7 @@ ________________/\\...
Changed install command example to use 'demo' demo-clean has issues right now.
diff --git a/dataviews/ipython/display_hooks.py b/dataviews/ipython/display_hooks.py index <HASH>..<HASH> 100644 --- a/dataviews/ipython/display_hooks.py +++ b/dataviews/ipython/display_hooks.py @@ -24,7 +24,6 @@ except: from ..dataviews import Stack, View from ..views import Annotation, Layout, GridLayout, Grid fro...
Removed unused imports in ipython/display_hooks.py
diff --git a/bigtable-hbase-dataflow/src/main/java/com/google/cloud/bigtable/dataflow/CloudBigtableIO.java b/bigtable-hbase-dataflow/src/main/java/com/google/cloud/bigtable/dataflow/CloudBigtableIO.java index <HASH>..<HASH> 100644 --- a/bigtable-hbase-dataflow/src/main/java/com/google/cloud/bigtable/dataflow/CloudBigta...
Removing a dependency on com.google.bigtable.repackaged.
diff --git a/src/main/java/org/asteriskjava/util/Lockable.java b/src/main/java/org/asteriskjava/util/Lockable.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/asteriskjava/util/Lockable.java +++ b/src/main/java/org/asteriskjava/util/Lockable.java @@ -9,7 +9,7 @@ import org.asteriskjava.util.Locker.LockCloser; ...
switch to unfair lock to flush out locking bugs
diff --git a/cookiecutter/config.py b/cookiecutter/config.py index <HASH>..<HASH> 100644 --- a/cookiecutter/config.py +++ b/cookiecutter/config.py @@ -76,7 +76,7 @@ def get_config(config_path): def get_user_config(config_file=None, default_config=False): """Return the user config as a dict. - If ``default_co...
Fix docstring - cookiecutter/config.py:docstring of cookiecutter.config.get_user_config:3: WARNING: Inline literal start-string without end-string.
diff --git a/lib/Page.js b/lib/Page.js index <HASH>..<HASH> 100644 --- a/lib/Page.js +++ b/lib/Page.js @@ -395,8 +395,8 @@ class Page extends EventEmitter { if (clipRect) { await Promise.all([ this._client.send('Emulation.setVisibleSize', { - width: clipRect.wid...
Pass integers to the Emulation.setVisibleSize Integers are required in the Emulation.setVisibleSize. This patch fixes the screenshot clipRect so that it never tries to pass float values.
diff --git a/src/Symfony/Component/OptionsResolver/OptionsResolver.php b/src/Symfony/Component/OptionsResolver/OptionsResolver.php index <HASH>..<HASH> 100644 --- a/src/Symfony/Component/OptionsResolver/OptionsResolver.php +++ b/src/Symfony/Component/OptionsResolver/OptionsResolver.php @@ -252,7 +252,7 @@ class Options...
[OptionsResolver] Remove Unused Variable from Foreach Cycles
diff --git a/traversal/planner/PlannerEdge.java b/traversal/planner/PlannerEdge.java index <HASH>..<HASH> 100644 --- a/traversal/planner/PlannerEdge.java +++ b/traversal/planner/PlannerEdge.java @@ -1238,10 +1238,10 @@ public abstract class PlannerEdge<VERTEX_FROM extends PlannerVertex<?>, VERTEX_T ...
fix incorrect RolePlayer edge cost when IID or Loop is present
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index <HASH>..<HASH> 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -4,6 +4,11 @@ RSpec.configure do |config| config.treat_symbols_as_metadata_keys_with_true_values = true config.run_all_when_everything_filtered = true config.filter_run :foc...
Add helper for loading HTML fixtures in tests
diff --git a/js/remote.js b/js/remote.js index <HASH>..<HASH> 100644 --- a/js/remote.js +++ b/js/remote.js @@ -676,8 +676,6 @@ Transaction.prototype.offer_create = function (src, taker_pays, taker_gets, expi this.secret = this.account_secret(src); this.transaction.TransactionType = 'OfferCreate'; this.t...
JS: Fix offer_create.
diff --git a/examples/repl.js b/examples/repl.js index <HASH>..<HASH> 100644 --- a/examples/repl.js +++ b/examples/repl.js @@ -19,4 +19,5 @@ engine(server) .use(engine.logger('logs')) .use(engine.stats()) .use(engine.repl(__dirname + '/repl')) + .use(engine.debug()) .listen(); \ No newline at end of file d...
Added spawn(n) REPL command
diff --git a/wayback-core/src/test/java/org/archive/wayback/webapp/AccessPointTest.java b/wayback-core/src/test/java/org/archive/wayback/webapp/AccessPointTest.java index <HASH>..<HASH> 100644 --- a/wayback-core/src/test/java/org/archive/wayback/webapp/AccessPointTest.java +++ b/wayback-core/src/test/java/org/archive/w...
FIX: Fix AccessPointTest unit test by using createNiceMock
diff --git a/nolds/__init__.py b/nolds/__init__.py index <HASH>..<HASH> 100644 --- a/nolds/__init__.py +++ b/nolds/__init__.py @@ -1,4 +1,4 @@ from .measures import lyap_r, lyap_e, sampen, hurst_rs, corr_dim, dfa, \ - binary_n, logarithmic_n, logarithmic_r, expected_h, logmid_n + binary_n, logarithmic_n, logarit...
updates description of expected_rs and adds it to the exported functions
diff --git a/perceval/backends/core/redmine.py b/perceval/backends/core/redmine.py index <HASH>..<HASH> 100644 --- a/perceval/backends/core/redmine.py +++ b/perceval/backends/core/redmine.py @@ -57,7 +57,7 @@ class Redmine(Backend): :param tag: label used to mark the data :param archive: archive to store/retr...
[redmine] Fix initialization client This patch fixes the initialization of 'archive' and 'from_archive' parameters, thus allowing to correctly store data within the archive.
diff --git a/system/src/Grav/Console/ConsoleTrait.php b/system/src/Grav/Console/ConsoleTrait.php index <HASH>..<HASH> 100644 --- a/system/src/Grav/Console/ConsoleTrait.php +++ b/system/src/Grav/Console/ConsoleTrait.php @@ -3,6 +3,7 @@ namespace Grav\Console; use Grav\Common\Grav; use Grav\Common\Composer; +use Grav...
Added GravTrait back to ensure 3rd party CLI plugins don't break.
diff --git a/tests/reducer/change-model-test.js b/tests/reducer/change-model-test.js index <HASH>..<HASH> 100644 --- a/tests/reducer/change-model-test.js +++ b/tests/reducer/change-model-test.js @@ -3,7 +3,7 @@ var actions = require('../../lib/actions') var reducer = require('../../lib/reducer').reducer describe('r...
support node5, remove block scoped vars
diff --git a/src/saml2/pack.py b/src/saml2/pack.py index <HASH>..<HASH> 100644 --- a/src/saml2/pack.py +++ b/src/saml2/pack.py @@ -66,9 +66,12 @@ def http_form_post_message(message, location, relay_state="", typ="SAMLRequest") if not isinstance(message, basestring): message = "%s" % (message,) - ...
May not always want to b<I> encode the message
diff --git a/astromodels/functions/functions.py b/astromodels/functions/functions.py index <HASH>..<HASH> 100644 --- a/astromodels/functions/functions.py +++ b/astromodels/functions/functions.py @@ -1079,7 +1079,10 @@ class Log_parabola(Function1D): # dimensionless because of a division (like xx here) are ...
Dealing with the bug in astropy which doesn't allow to use arrays in powers (will be fixed in astropy <I>)
diff --git a/lib/YandexMoney/ApiRequestor.php b/lib/YandexMoney/ApiRequestor.php index <HASH>..<HASH> 100644 --- a/lib/YandexMoney/ApiRequestor.php +++ b/lib/YandexMoney/ApiRequestor.php @@ -10,7 +10,7 @@ class ApiRequestor /** * */ - const USER_AGENT = 'yamolib-php'; + const USER_AGENT = 'yande...
user agent changed to "yandex-money-sdk-php"
diff --git a/lib/conceptql/behaviors/provenanceable.rb b/lib/conceptql/behaviors/provenanceable.rb index <HASH>..<HASH> 100644 --- a/lib/conceptql/behaviors/provenanceable.rb +++ b/lib/conceptql/behaviors/provenanceable.rb @@ -201,7 +201,7 @@ module ConceptQL h[c[0][0]].merge!( [[c[0][1],c[1].flatten]].to_h)...
Fix error when using concept ids in provenance operator by themselves
diff --git a/src/TableRow.js b/src/TableRow.js index <HASH>..<HASH> 100644 --- a/src/TableRow.js +++ b/src/TableRow.js @@ -9,9 +9,7 @@ class TableRow extends Component { } rowClick = e => { - if (e.target.tagName !== 'INPUT' && - e.target.tagName !== 'SELECT' && - e.target.tagName !== 'TEXTAREA...
fix clicking on a custom selection column will trigger selection twice
diff --git a/src/Sylius/Bundle/CoreBundle/Application/Kernel.php b/src/Sylius/Bundle/CoreBundle/Application/Kernel.php index <HASH>..<HASH> 100644 --- a/src/Sylius/Bundle/CoreBundle/Application/Kernel.php +++ b/src/Sylius/Bundle/CoreBundle/Application/Kernel.php @@ -31,17 +31,17 @@ use Webmozart\Assert\Assert; class...
Change application's version to <I>-DEV
diff --git a/lib/protocol/tcp.js b/lib/protocol/tcp.js index <HASH>..<HASH> 100644 --- a/lib/protocol/tcp.js +++ b/lib/protocol/tcp.js @@ -38,7 +38,6 @@ exports.connect = function connect(options, cb) { keepAliveIdle = options['tcpKeepAliveIdle'] * 1000; if (isNaN(keepAliveIdle)) keepAliveIdle = defaultKe...
Remove tcp keepalive debug code
diff --git a/wafer/pages/management/tests/test_load_pages.py b/wafer/pages/management/tests/test_load_pages.py index <HASH>..<HASH> 100644 --- a/wafer/pages/management/tests/test_load_pages.py +++ b/wafer/pages/management/tests/test_load_pages.py @@ -8,6 +8,8 @@ from django.core.management import call_command from dja...
Test that pages made it to the database.
diff --git a/rfc5424logging/__init__.py b/rfc5424logging/__init__.py index <HASH>..<HASH> 100644 --- a/rfc5424logging/__init__.py +++ b/rfc5424logging/__init__.py @@ -1,6 +1,14 @@ -from .handler import Rfc5424SysLogHandler, NILVALUE +from .handler import Rfc5424SysLogHandler, TlsRfc5424SysLogHandler, NILVALUE from .ad...
loading the new class to __all__
diff --git a/lib/dm-core.rb b/lib/dm-core.rb index <HASH>..<HASH> 100644 --- a/lib/dm-core.rb +++ b/lib/dm-core.rb @@ -26,7 +26,7 @@ require 'extlib/inflection' begin gem 'fastthread', '~>1.0.1' require 'fastthread' -rescue Gem::LoadError +rescue LoadError # fastthread not installed end
Changed exception to check for to ancestor of Gem::LoadError
diff --git a/src/java/voldemort/server/gossip/Gossiper.java b/src/java/voldemort/server/gossip/Gossiper.java index <HASH>..<HASH> 100644 --- a/src/java/voldemort/server/gossip/Gossiper.java +++ b/src/java/voldemort/server/gossip/Gossiper.java @@ -44,7 +44,6 @@ public class Gossiper implements Runnable { runnin...
Removed @Override on an interface for <I> compatibility.
diff --git a/src/test/java/com/github/davidmoten/rx2/internal/flowable/FlowableRepeatingTransformTest.java b/src/test/java/com/github/davidmoten/rx2/internal/flowable/FlowableRepeatingTransformTest.java index <HASH>..<HASH> 100644 --- a/src/test/java/com/github/davidmoten/rx2/internal/flowable/FlowableRepeatingTransfor...
reduce logging from FlowableRepeatingTransformTest
diff --git a/gui/tools/designer.py b/gui/tools/designer.py index <HASH>..<HASH> 100644 --- a/gui/tools/designer.py +++ b/gui/tools/designer.py @@ -159,12 +159,20 @@ class BasicDesigner: wx_obj = self.current sx, sy = self.start x, y = wx.GetMousePosition() - # update gu...
allow moving group object using mouse (designer)
diff --git a/distutils/tests/test_dist.py b/distutils/tests/test_dist.py index <HASH>..<HASH> 100644 --- a/distutils/tests/test_dist.py +++ b/distutils/tests/test_dist.py @@ -83,6 +83,10 @@ class DistributionTestCase(support.LoggingSilencer, self.assertIsInstance(cmd, test_dist) self.assertEqual(cmd.s...
Mark test_venv to be skipped when running under a virtualenv as virtualenv monkey patches distutils.
diff --git a/client/client_test.go b/client/client_test.go index <HASH>..<HASH> 100644 --- a/client/client_test.go +++ b/client/client_test.go @@ -544,3 +544,23 @@ func TestRedirectFollowingHTTPClient(t *testing.T) { } } } + +func TestDefaultCheckRedirect(t *testing.T) { + tests := []struct { + num int + err er...
client: test DefaultCheckRedirect
diff --git a/salt/states/boto3_route53.py b/salt/states/boto3_route53.py index <HASH>..<HASH> 100644 --- a/salt/states/boto3_route53.py +++ b/salt/states/boto3_route53.py @@ -650,8 +650,13 @@ def rr_present(name, HostedZoneId=None, DomainName=None, PrivateZone=False, Name fixed_rrs += [rr] Res...
Use the unicode version of the '*' character for route<I>
diff --git a/fusesoc/main.py b/fusesoc/main.py index <HASH>..<HASH> 100644 --- a/fusesoc/main.py +++ b/fusesoc/main.py @@ -152,6 +152,10 @@ def init(args): f.write("cores_root = {}\n".format(cores_root)) pr_info("FuseSoC is ready to use!") +def list_paths(args): + cores_root = CoreManager().get_cores...
Add command to list the core_root paths This can help the user to find conflicts etc.
diff --git a/datadog_checks_dev/datadog_checks/dev/tooling/signing.py b/datadog_checks_dev/datadog_checks/dev/tooling/signing.py index <HASH>..<HASH> 100644 --- a/datadog_checks_dev/datadog_checks/dev/tooling/signing.py +++ b/datadog_checks_dev/datadog_checks/dev/tooling/signing.py @@ -1,8 +1,16 @@ # (C) Datadog, Inc....
Increase gpg timeout to give time to developers to interact with Yubikeys (#<I>) * increase gpg timeout value for in-toto * skip flake8 for this module
diff --git a/dist/index.js b/dist/index.js index <HASH>..<HASH> 100644 --- a/dist/index.js +++ b/dist/index.js @@ -26432,8 +26432,7 @@ return /******/ (function(modules) { // webpackBootstrap value: function createField(control, props) { var _this2 = this; - console.log('creating ' + props.model);...
Optimizing performance for already-created controls
diff --git a/rollup.config.js b/rollup.config.js index <HASH>..<HASH> 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -36,11 +36,16 @@ const plugins = [ main: true, browser: true, }), - replace({ - 'process.env.NODE_ENV': JSON.stringify(process.env.NODE_ENV), - }), ]; +if (format === 'umd')...
Updated builds so that the NODE_ENV only gets replaced in umd builds
diff --git a/src/java/com/threerings/presents/client/InvocationDirector.java b/src/java/com/threerings/presents/client/InvocationDirector.java index <HASH>..<HASH> 100644 --- a/src/java/com/threerings/presents/client/InvocationDirector.java +++ b/src/java/com/threerings/presents/client/InvocationDirector.java @@ -1,5 +...
We need also to clear the receivers when we transfer them from our auth user object to our chosen pirate user object. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@<I> <I>f4-<I>e9-<I>-aa3c-eee0fc<I>fb1
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -142,6 +142,10 @@ EventEmitterProto.trigger = EventEmitterProto.emit; * @description Super small and simple interpretation of popular event management. */ function EventEmitter() { + if (!(this instanceof EventEmitter)...
Allow `new`-less instantiation and prevent a global object leak
diff --git a/src/java/com/threerings/media/image/ImageUtil.java b/src/java/com/threerings/media/image/ImageUtil.java index <HASH>..<HASH> 100644 --- a/src/java/com/threerings/media/image/ImageUtil.java +++ b/src/java/com/threerings/media/image/ImageUtil.java @@ -1,5 +1,5 @@ // -// $Id: ImageUtil.java,v 1.11 2002/05/04...
this line should have been commented out too git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@<I> <I>f4-<I>e9-<I>-aa3c-eee0fc<I>fb1
diff --git a/lib/mongo_mapper/plugins/querying/decorator.rb b/lib/mongo_mapper/plugins/querying/decorator.rb index <HASH>..<HASH> 100644 --- a/lib/mongo_mapper/plugins/querying/decorator.rb +++ b/lib/mongo_mapper/plugins/querying/decorator.rb @@ -30,19 +30,13 @@ module MongoMapper def last(opts={}) ...
Slight change in Query method missing stuff. Feel like this is easier to read than the nested ifs.
diff --git a/tests/Service/CacheServiceTest.php b/tests/Service/CacheServiceTest.php index <HASH>..<HASH> 100644 --- a/tests/Service/CacheServiceTest.php +++ b/tests/Service/CacheServiceTest.php @@ -156,6 +156,25 @@ class CacheServiceTest extends \PHPUnit_Framework_TestCase $this->cacheService->save($this->get...
Added test to check if EVENT_SAVE has cache key set
diff --git a/openupgradelib/openupgrade_merge_records.py b/openupgradelib/openupgrade_merge_records.py index <HASH>..<HASH> 100644 --- a/openupgradelib/openupgrade_merge_records.py +++ b/openupgradelib/openupgrade_merge_records.py @@ -419,6 +419,9 @@ def _change_generic(env, model_name, record_ids, target_record_id, ...
[FIX] merge_records: assure columns exist in _change_generic
diff --git a/netty-reactive-streams/src/test/java/com/typesafe/netty/ChannelPublisherTest.java b/netty-reactive-streams/src/test/java/com/typesafe/netty/ChannelPublisherTest.java index <HASH>..<HASH> 100644 --- a/netty-reactive-streams/src/test/java/com/typesafe/netty/ChannelPublisherTest.java +++ b/netty-reactive-stre...
Try increasing subscriber probe timeout to fix CI
diff --git a/lib/Doctrine/DBAL/Platforms/AbstractPlatform.php b/lib/Doctrine/DBAL/Platforms/AbstractPlatform.php index <HASH>..<HASH> 100644 --- a/lib/Doctrine/DBAL/Platforms/AbstractPlatform.php +++ b/lib/Doctrine/DBAL/Platforms/AbstractPlatform.php @@ -322,15 +322,15 @@ abstract class AbstractPlatform /** ...
[Platform] Allow a string to be passed as type
diff --git a/cmd/swarm/run_test.go b/cmd/swarm/run_test.go index <HASH>..<HASH> 100644 --- a/cmd/swarm/run_test.go +++ b/cmd/swarm/run_test.go @@ -242,7 +242,7 @@ func existingTestNode(t *testing.T, dir string, bzzaccount string) *testNode { "--bzzaccount", bzzaccount, "--bzznetworkid", "321", "--bzzport", htt...
cmd/swarm: respect --loglevel in run_test helpers (#<I>) When CLI tests were spanning new nodes, the log level verbosity was hard coded as 6. So the Swarm process was always polluting the test output with TRACE level logs. Now `go test -v ./cmd/swarm -loglevel 0` works as expected.
diff --git a/iktomi/utils/html.py b/iktomi/utils/html.py index <HASH>..<HASH> 100644 --- a/iktomi/utils/html.py +++ b/iktomi/utils/html.py @@ -105,13 +105,19 @@ class Cleaner(clean.Cleaner): continue par = None + def _tail_is_empty(self, el): + return not el.tail and el...
HtmlElement is not empty if it has tail
diff --git a/tests/tasks/test_plugin_based.py b/tests/tasks/test_plugin_based.py index <HASH>..<HASH> 100644 --- a/tests/tasks/test_plugin_based.py +++ b/tests/tasks/test_plugin_based.py @@ -160,7 +160,7 @@ def test_ensure_workflow_data_is_saved_in_various_conditions( # Start the task.run in a separate process...
fix test for checking existance of workflow.json
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -25,7 +25,11 @@ function whyIsNodeRunning (logger) { hook.disable() var activeResources = [...active.values()].filter(function(r) { - if (r.type === 'Timeout' && !r.resource.hasRef()) return false + if ( + r...
Fix issue with excluding unrefed timers in node version <<I>
diff --git a/lib/ticketmaster/provider.rb b/lib/ticketmaster/provider.rb index <HASH>..<HASH> 100644 --- a/lib/ticketmaster/provider.rb +++ b/lib/ticketmaster/provider.rb @@ -24,6 +24,12 @@ module TicketMaster::Provider def authorize(authentication = {}) @authentication = TicketMaster::Authenticator.new(aut...
added a new valid method to implement in each provider
diff --git a/gdx-ai/src/com/badlogic/gdx/ai/btree/decorator/Include.java b/gdx-ai/src/com/badlogic/gdx/ai/btree/decorator/Include.java index <HASH>..<HASH> 100644 --- a/gdx-ai/src/com/badlogic/gdx/ai/btree/decorator/Include.java +++ b/gdx-ai/src/com/badlogic/gdx/ai/btree/decorator/Include.java @@ -94,12 +94,15 @@ publi...
fix(BehaviorTree): properly copy & clone the IncludeTask guard to the generated tree.
diff --git a/pkg/minikube/exit/exit.go b/pkg/minikube/exit/exit.go index <HASH>..<HASH> 100644 --- a/pkg/minikube/exit/exit.go +++ b/pkg/minikube/exit/exit.go @@ -102,6 +102,6 @@ func displayError(msg string, err error) { out.ErrT(out.Empty, "") out.FatalT("{{.msg}}: {{.err}}", out.V{"msg": translate.T(msg), "err":...
Not a crash, but an error
diff --git a/claripy/frontends/composite_frontend.py b/claripy/frontends/composite_frontend.py index <HASH>..<HASH> 100644 --- a/claripy/frontends/composite_frontend.py +++ b/claripy/frontends/composite_frontend.py @@ -43,7 +43,7 @@ class CompositeFrontend(ConstrainedFrontend): super(CompositeFrontend, self)._...
small optimizations regarding the solver lists and solver reabsorbtion