diff stringlengths 65 26.7k | message stringlengths 7 9.92k |
|---|---|
diff --git a/lib/beetle/client.rb b/lib/beetle/client.rb
index <HASH>..<HASH> 100644
--- a/lib/beetle/client.rb
+++ b/lib/beetle/client.rb
@@ -352,7 +352,7 @@ module Beetle
end
def queue_name_for_tracing(queue)
- "trace-#{queue}-#{Beetle.hostname}-#{$$}"
+ "trace-#{queue}-#{Beetle.hostname}"
... | don't add process id to trace queues to allow testing dedup |
diff --git a/nomad/job_endpoint.go b/nomad/job_endpoint.go
index <HASH>..<HASH> 100644
--- a/nomad/job_endpoint.go
+++ b/nomad/job_endpoint.go
@@ -1213,10 +1213,10 @@ func validateJobUpdate(old, new *structs.Job) error {
// Transitioning to/from periodic is disallowed
if old.IsPeriodic() && !new.IsPeriodic() {
- ... | Fix error messages for transitioning jobs to/from periodic
The error messages are flipped; when you transition a job from _not_ being periodic to being periodic you get the message "cannot update periodic job to being non-periodic", and vice versa. |
diff --git a/tests/cli_test.py b/tests/cli_test.py
index <HASH>..<HASH> 100644
--- a/tests/cli_test.py
+++ b/tests/cli_test.py
@@ -26,7 +26,10 @@ def test_exits_invalid_with_invalid_args():
proc = Popen(('dumb-init', '--yolo', '/bin/true'), stderr=PIPE)
_, stderr = proc.communicate()
assert proc.returnco... | Loosen assertion a bit for musl |
diff --git a/generator/templates/tests-mocha/tests/unit/electron.spec.js b/generator/templates/tests-mocha/tests/unit/electron.spec.js
index <HASH>..<HASH> 100644
--- a/generator/templates/tests-mocha/tests/unit/electron.spec.js
+++ b/generator/templates/tests-mocha/tests/unit/electron.spec.js
@@ -1,4 +1,5 @@
-import s... | fix(generator/mocha): non webpack require spectron |
diff --git a/mysqldef/time.go b/mysqldef/time.go
index <HASH>..<HASH> 100644
--- a/mysqldef/time.go
+++ b/mysqldef/time.go
@@ -51,9 +51,8 @@ const (
// MaxTime is the maximum for mysql time type.
MaxTime = time.Duration(838*3600+59*60+59) * time.Second
- zeroDatetimeStr = "0000-00-00 00:00:00"
- zeroTimestampStr... | mysqldef: Remove zeroTimestampStr |
diff --git a/test_proj/manage.py b/test_proj/manage.py
index <HASH>..<HASH> 100755
--- a/test_proj/manage.py
+++ b/test_proj/manage.py
@@ -1,9 +1,15 @@
#!/usr/bin/env python
+
+import os
+import sys
+
+path = os.path.abspath(os.path.join(os.path.dirname(__file__), '..'))
+sys.path.insert(0, path)
+
from django.core.m... | Fixed issue #<I>: more robust test running (thanks to Tom von Schwerdtner for the idea) |
diff --git a/Testing/Fakes/MailFake.php b/Testing/Fakes/MailFake.php
index <HASH>..<HASH> 100644
--- a/Testing/Fakes/MailFake.php
+++ b/Testing/Fakes/MailFake.php
@@ -24,6 +24,10 @@ class MailFake implements Mailer
*/
public function assertSent($mailable, $callback = null)
{
+ if(is_array($mailab... | allow number of times to be specified in normal methods |
diff --git a/core/lib/refinery/application_controller.rb b/core/lib/refinery/application_controller.rb
index <HASH>..<HASH> 100644
--- a/core/lib/refinery/application_controller.rb
+++ b/core/lib/refinery/application_controller.rb
@@ -56,7 +56,7 @@ module Refinery
end
def home_page?
- main_app.ro... | home_page?(): Escape special characters in request.path
Prevents an exception being thrown when the request path evaluates to an
invalid regular expression (i.e. unmatched brackets). This should also
fix a possible security issue in the sense that we were previously
permitting a user to define an arbitrarily complex r... |
diff --git a/phoebe/frontend/io.py b/phoebe/frontend/io.py
index <HASH>..<HASH> 100644
--- a/phoebe/frontend/io.py
+++ b/phoebe/frontend/io.py
@@ -446,6 +446,11 @@ def load_legacy(filename, add_compute_legacy=True, add_compute_phoebe=True):
if pnew == 'ld_model':
val = val.split(' ')[0]
... | fixed bug. ld_func and ld_func_bol will now load correctly. |
diff --git a/lib/Session/Redis.php b/lib/Session/Redis.php
index <HASH>..<HASH> 100644
--- a/lib/Session/Redis.php
+++ b/lib/Session/Redis.php
@@ -108,7 +108,7 @@ class Redis implements Driver {
$promisor->fail(new Exception("couldn't acquire lock for new session id", 0, $error));
} else {... | Delete old session on regenerate instead of just unlocking it |
diff --git a/src/engine/runtime.js b/src/engine/runtime.js
index <HASH>..<HASH> 100644
--- a/src/engine/runtime.js
+++ b/src/engine/runtime.js
@@ -77,7 +77,7 @@ util.inherits(Runtime, EventEmitter);
/**
* How rapidly we try to step threads, in ms.
*/
-Runtime.THREAD_STEP_INTERVAL = 1000 / 30;
+Runtime.THREAD_STEP_... | Run threads for <I>fps |
diff --git a/HTML/Directives/Wrap.php b/HTML/Directives/Wrap.php
index <HASH>..<HASH> 100644
--- a/HTML/Directives/Wrap.php
+++ b/HTML/Directives/Wrap.php
@@ -12,8 +12,9 @@ use Gregwar\RST\Nodes\WrapperNode;
class Wrap extends SubDirective
{
protected $class;
+ protected $uniqid;
- public function __cons... | Adding uniqid option to Wrap |
diff --git a/nydus/db/routers/__init__.py b/nydus/db/routers/__init__.py
index <HASH>..<HASH> 100644
--- a/nydus/db/routers/__init__.py
+++ b/nydus/db/routers/__init__.py
@@ -16,6 +16,9 @@ class BaseRouter(object):
retryable = False
def get_db(self, cluster, func, *args, **kwargs):
- """Return the fi... | added clarification on the return type for a router |
diff --git a/src/Autosuggest.js b/src/Autosuggest.js
index <HASH>..<HASH> 100644
--- a/src/Autosuggest.js
+++ b/src/Autosuggest.js
@@ -525,7 +525,8 @@ export default class Autosuggest extends Component {
}
},
onKeyDown: (event, data) => {
- switch (event.key) {
+ const keyCode = eve... | Use event.code as a fallback to event.key (#<I>) |
diff --git a/src/main/java/me/corsin/javatools/string/JEmoji.java b/src/main/java/me/corsin/javatools/string/JEmoji.java
index <HASH>..<HASH> 100644
--- a/src/main/java/me/corsin/javatools/string/JEmoji.java
+++ b/src/main/java/me/corsin/javatools/string/JEmoji.java
@@ -21,7 +21,8 @@ public enum JEmoji {
FIRE(":fire:... | Adding the "speech balloon" emoji |
diff --git a/lib/kafka/consumer_group.rb b/lib/kafka/consumer_group.rb
index <HASH>..<HASH> 100644
--- a/lib/kafka/consumer_group.rb
+++ b/lib/kafka/consumer_group.rb
@@ -113,9 +113,12 @@ module Kafka
Protocol.handle_error(response.error_code)
end
- rescue ConnectionError, UnknownMemberId, Rebalanc... | log RebalanceInProgress in ConsumerGroup#heartbeat as warning
Resolves #<I> |
diff --git a/registration/models.py b/registration/models.py
index <HASH>..<HASH> 100644
--- a/registration/models.py
+++ b/registration/models.py
@@ -141,11 +141,14 @@ class RegistrationManager(models.Manager):
"""
for profile in self.all():
- if profile.activation_key_expired():... | RegistrationProfile actually deletes a profile and not only user in delete_expired_users in it's manager, as documented |
diff --git a/karaage/cache/usage.py b/karaage/cache/usage.py
index <HASH>..<HASH> 100644
--- a/karaage/cache/usage.py
+++ b/karaage/cache/usage.py
@@ -125,8 +125,5 @@ def get_machine_usage(machine, start, end):
date__range=(start, end)).aggregate(usage=Sum('cpu_usage'), jobs=Count(... | Simplify.
Constraints introduced in cd<I>a<I>e5c2d<I>e<I>ca<I>e<I>c3be<I>
should mean that MultipleObjectsReturned never is generated.
Change-Id: I<I>ab0c<I>af<I>d<I>e<I>fa5f6d<I> |
diff --git a/src/Exscript/workqueue/Job.py b/src/Exscript/workqueue/Job.py
index <HASH>..<HASH> 100644
--- a/src/Exscript/workqueue/Job.py
+++ b/src/Exscript/workqueue/Job.py
@@ -42,12 +42,8 @@ class Job(threading.Thread):
self.local_data)
except Exception, e:
self... | Fix: error reporting when debug level is 0. |
diff --git a/tests/Unit/CommandBuilderTest.php b/tests/Unit/CommandBuilderTest.php
index <HASH>..<HASH> 100644
--- a/tests/Unit/CommandBuilderTest.php
+++ b/tests/Unit/CommandBuilderTest.php
@@ -22,7 +22,7 @@ class CommandBuilderTest extends ptlisShellCommandTestcase
{
private function readAttribute($object, stri... | Fix retrieval of class name in older PHP versions |
diff --git a/closure/goog/ui/container.js b/closure/goog/ui/container.js
index <HASH>..<HASH> 100644
--- a/closure/goog/ui/container.js
+++ b/closure/goog/ui/container.js
@@ -103,7 +103,7 @@ goog.ui.Container.Orientation = {
/**
- * Allows an alternative element to be set to recieve key events, otherwise
+ * Allow... | Cleaned up keyEventTarget_ member of goog.ui.Container on disposal.
R=nicksantos
DELTA=2 (1 added, 0 deleted, 1 changed)
Revision created by MOE tool push_codebase.
MOE_MIGRATION=<I>
git-svn-id: <URL> |
diff --git a/question/editlib.php b/question/editlib.php
index <HASH>..<HASH> 100644
--- a/question/editlib.php
+++ b/question/editlib.php
@@ -215,9 +215,6 @@ function question_list($course, $categoryid, $quizid=0,
<th nowrap=\"nowrap\" class=\"header\">$strtype</th>";
echo "</tr>\n";
foreach ($questions... | Taking out random question hack that is no longer needed. |
diff --git a/src/MigrationTool/SqlMigrationTool.php b/src/MigrationTool/SqlMigrationTool.php
index <HASH>..<HASH> 100644
--- a/src/MigrationTool/SqlMigrationTool.php
+++ b/src/MigrationTool/SqlMigrationTool.php
@@ -178,7 +178,10 @@ abstract class SqlMigrationTool extends AbstractMigrationTool
$this->getPhpData... | WIP hot-fixes for MySQL |
diff --git a/widgets/map/src/main/javascript/mapcore.js b/widgets/map/src/main/javascript/mapcore.js
index <HASH>..<HASH> 100644
--- a/widgets/map/src/main/javascript/mapcore.js
+++ b/widgets/map/src/main/javascript/mapcore.js
@@ -528,6 +528,10 @@ coreMap.Map.prototype.redrawOnResize = function () {
$(window).resi... | NEON-<I> layers now match the reactivity of the map and are not cut off when the window's size changes |
diff --git a/src/main/java/net/openhft/chronicle/network/WireTcpHandler.java b/src/main/java/net/openhft/chronicle/network/WireTcpHandler.java
index <HASH>..<HASH> 100755
--- a/src/main/java/net/openhft/chronicle/network/WireTcpHandler.java
+++ b/src/main/java/net/openhft/chronicle/network/WireTcpHandler.java
@@ -94,6 ... | CE-<I> Add more diagnostics. |
diff --git a/test/engine_test.rb b/test/engine_test.rb
index <HASH>..<HASH> 100644
--- a/test/engine_test.rb
+++ b/test/engine_test.rb
@@ -20,6 +20,20 @@ class EngineTest < Test::Unit::TestCase
assert_match /Unsupported file type/, error.message
end
+ should_eventually 'stop as soon as the error th... | Save test-case for issue #<I>. |
diff --git a/lottie/src/main/java/com/airbnb/lottie/LottieAnimationView.java b/lottie/src/main/java/com/airbnb/lottie/LottieAnimationView.java
index <HASH>..<HASH> 100644
--- a/lottie/src/main/java/com/airbnb/lottie/LottieAnimationView.java
+++ b/lottie/src/main/java/com/airbnb/lottie/LottieAnimationView.java
@@ -368,6... | Update hardware layer when setComposition is set
When the `LottieDrawable` composition is set, it may autoplay the
animation so we need to update the layer type.
Fixes #<I> |
diff --git a/pysnmp/entity/rfc3413/ntforg.py b/pysnmp/entity/rfc3413/ntforg.py
index <HASH>..<HASH> 100644
--- a/pysnmp/entity/rfc3413/ntforg.py
+++ b/pysnmp/entity/rfc3413/ntforg.py
@@ -1,4 +1,8 @@
import time
+try:
+ from sys import version_info
+except ImportError:
+ version_info = ( 0, 0 ) # a really early... | python<I> compatibility fix: [].extend() expects a list, not tuple |
diff --git a/nodeGame.js b/nodeGame.js
index <HASH>..<HASH> 100644
--- a/nodeGame.js
+++ b/nodeGame.js
@@ -6,7 +6,7 @@
var node = exports;
- node.version = '0.7.1';
+ node.version = '0.7.3';
node.verbosity = 0; | Document refactored. Seems working ok |
diff --git a/www/plugins.FileOpener2.js b/www/plugins.FileOpener2.js
index <HASH>..<HASH> 100644
--- a/www/plugins.FileOpener2.js
+++ b/www/plugins.FileOpener2.js
@@ -27,9 +27,9 @@ var exec = require('cordova/exec');
function FileOpener2() {}
FileOpener2.prototype.open = function (fileName, contentType, options) {
... | fix: fixed reference bug in open method |
diff --git a/tests/functional/test_scoping/test_metamodel_provider3.py b/tests/functional/test_scoping/test_metamodel_provider3.py
index <HASH>..<HASH> 100644
--- a/tests/functional/test_scoping/test_metamodel_provider3.py
+++ b/tests/functional/test_scoping/test_metamodel_provider3.py
@@ -73,6 +73,15 @@ def test_metam... | added instance_of tests (problem indentified; see commented code) |
diff --git a/app/xmpp/index.js b/app/xmpp/index.js
index <HASH>..<HASH> 100644
--- a/app/xmpp/index.js
+++ b/app/xmpp/index.js
@@ -61,11 +61,40 @@ function xmppStart(core) {
return processor.run();
});
- if (!handled && settings.xmpp.debug.unhandled) {
+ if (handled... | Reply to unimplemented XMPP query requests |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -29,7 +29,7 @@ test_requirements=[
setup(
name='couchdb-schematics',
license='BSD',
- version='0.2.1-alpha',
+ version='0.3.0',
description='',
author=u'',
author_email='',
@@ -45,10 +45,9 @@ se... | updated setup to use the main schematics distribution |
diff --git a/version.go b/version.go
index <HASH>..<HASH> 100644
--- a/version.go
+++ b/version.go
@@ -1,3 +1,3 @@
package nsq
-const VERSION = "0.1.29"
+const VERSION = "0.2.0" | update docs; bump to <I> |
diff --git a/dependency-check-maven/src/main/java/org/owasp/dependencycheck/maven/slf4j/MavenLoggerAdapter.java b/dependency-check-maven/src/main/java/org/owasp/dependencycheck/maven/slf4j/MavenLoggerAdapter.java
index <HASH>..<HASH> 100644
--- a/dependency-check-maven/src/main/java/org/owasp/dependencycheck/maven/slf4... | Added missing serialVersionUID. |
diff --git a/pysolr.py b/pysolr.py
index <HASH>..<HASH> 100644
--- a/pysolr.py
+++ b/pysolr.py
@@ -864,11 +864,12 @@ class Solr(object):
terms = result.get("terms", {})
res = {}
- # in Solr 1.x the value of terms is a flat list:
- # ["field_name", ["dance",23,"dancers",10,"dancing",8... | Cleanup comment
This suppresses a commented-code warning and also makes it easier to understand |
diff --git a/pypot/_version.py b/pypot/_version.py
index <HASH>..<HASH> 100644
--- a/pypot/_version.py
+++ b/pypot/_version.py
@@ -1 +1 @@
-__version__ = '2.1.0rc9'
+__version__ = '2.1.0rc10' | Prepare for version <I>rc<I>. (hopefully the last one). |
diff --git a/authority/tests.py b/authority/tests.py
index <HASH>..<HASH> 100644
--- a/authority/tests.py
+++ b/authority/tests.py
@@ -189,7 +189,7 @@ class PerformanceTest(TestCase):
self.check.has_user_perms('foo', self.user, True, True)
-class ExpectedBehaviourTestCase(TestCase):
+class GroupPermiss... | refs #3: changed the name of the test case |
diff --git a/tests/Messages/RpcTest.php b/tests/Messages/RpcTest.php
index <HASH>..<HASH> 100644
--- a/tests/Messages/RpcTest.php
+++ b/tests/Messages/RpcTest.php
@@ -120,7 +120,7 @@ class RpcTest extends \PHPUnit_Framework_TestCase
Phake::when($messenger)->createLine($this->isInstanceOf(RpcNotify::class))->th... | Update RpcTest.php |
diff --git a/lib/active_interaction/filter.rb b/lib/active_interaction/filter.rb
index <HASH>..<HASH> 100644
--- a/lib/active_interaction/filter.rb
+++ b/lib/active_interaction/filter.rb
@@ -14,7 +14,7 @@ module ActiveInteraction
# Describes an input filter for an interaction.
class Filter
# @return [Hash{Sy... | Use pragma to disable mutable constant |
diff --git a/src/Behat/Mink/Driver/SeleniumDriver.php b/src/Behat/Mink/Driver/SeleniumDriver.php
index <HASH>..<HASH> 100644
--- a/src/Behat/Mink/Driver/SeleniumDriver.php
+++ b/src/Behat/Mink/Driver/SeleniumDriver.php
@@ -424,7 +424,8 @@ if (node.tagName == 'SELECT') {
var i, l = nodes.length;
for (i = 0; i ... | [Selenium Driver ] Check the radio/checkbox with the matching value when multiple nodes with the same name found |
diff --git a/plugins/commands/serve/util/service_info.rb b/plugins/commands/serve/util/service_info.rb
index <HASH>..<HASH> 100644
--- a/plugins/commands/serve/util/service_info.rb
+++ b/plugins/commands/serve/util/service_info.rb
@@ -14,6 +14,7 @@ module VagrantPlugins
broker: broker
)
... | Only deactivate remote plugin manager if activated |
diff --git a/client/mic.py b/client/mic.py
index <HASH>..<HASH> 100644
--- a/client/mic.py
+++ b/client/mic.py
@@ -2,7 +2,7 @@
"""
The Mic class handles all interactions with the microphone and speaker.
"""
-
+import logging
import tempfile
import wave
import audioop
@@ -26,10 +26,15 @@ class Mic:
... | Added log message for PyAudio initialization |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -29,7 +29,6 @@ setup_params = dict(
long_description=long_description,
url="https://github.com/jaraco/" + name,
packages=setuptools.find_packages(),
- namespace_packages=['rst'],
include_package_data=True,
namespace_... | Remove now superfluous namespace_packages declaration. |
diff --git a/fundamentals/mysql/directory_script_runner.py b/fundamentals/mysql/directory_script_runner.py
index <HASH>..<HASH> 100644
--- a/fundamentals/mysql/directory_script_runner.py
+++ b/fundamentals/mysql/directory_script_runner.py
@@ -119,11 +119,12 @@ def directory_script_runner(
scriptList = {}
for ... | updated file sorting for mysqlSucker |
diff --git a/modules_v2/tree/module.php b/modules_v2/tree/module.php
index <HASH>..<HASH> 100644
--- a/modules_v2/tree/module.php
+++ b/modules_v2/tree/module.php
@@ -126,6 +126,7 @@ class tree_WT_Module extends WT_Module implements WT_Module_Tab {
break;
case 'getDetails':
+ header('Content-Type: ... | #<I> - German Umlaut Problem in interactive tree |
diff --git a/activerecord/lib/active_record/associations/collection_proxy.rb b/activerecord/lib/active_record/associations/collection_proxy.rb
index <HASH>..<HASH> 100644
--- a/activerecord/lib/active_record/associations/collection_proxy.rb
+++ b/activerecord/lib/active_record/associations/collection_proxy.rb
@@ -42,6 ... | update AR::Associations::CollectionProxy#loaded? documentation [ci skip] |
diff --git a/fusesoc/section.py b/fusesoc/section.py
index <HASH>..<HASH> 100644
--- a/fusesoc/section.py
+++ b/fusesoc/section.py
@@ -349,8 +349,8 @@ Testbench source type : {source_type}
Verilog top module : {top_module}
"""
return s.format(verilator_options=' '.join(self.verilator_options),
- ... | Fix core-info for verilator sections |
diff --git a/lib/puppet/settings.rb b/lib/puppet/settings.rb
index <HASH>..<HASH> 100644
--- a/lib/puppet/settings.rb
+++ b/lib/puppet/settings.rb
@@ -1197,6 +1197,7 @@ Generated on #{Time.now}.
# @return nil
def clear_everything_for_tests()
unsafe_clear(true, true)
+ @configuration_file = nil
@globa... | (PUP-<I>) Clear configuration_file for tests
The new default_manifest integration spec is parsing actual
configuration files and uncovered that our Settings do not clear the
@configuration_file data when #unsafe_clear is called. This allows
parsed settings to leak across specs.
Specifically dropping the @configurati... |
diff --git a/classes/phing/listener/XmlLogger.php b/classes/phing/listener/XmlLogger.php
index <HASH>..<HASH> 100755
--- a/classes/phing/listener/XmlLogger.php
+++ b/classes/phing/listener/XmlLogger.php
@@ -142,8 +142,6 @@ class XmlLogger implements BuildLogger {
$elapsedTime = Phing::currentTimeMillis() - $this... | Merging branch fix [<I>] |
diff --git a/src/Kernel.php b/src/Kernel.php
index <HASH>..<HASH> 100644
--- a/src/Kernel.php
+++ b/src/Kernel.php
@@ -453,7 +453,7 @@ class Kernel
if ($this->debug) {
$this->setContainer(new ContainerBuilder(new EnvPlaceholderParameterBag($this->getContainerParameters())));
$this->lo... | resolve env placeholder parameter
- env vars where not replaced when container has been compiled in debug mode
- env vars where not replaced when compiling a container in non-debug mode but when loading the cached version on a second call |
diff --git a/huey/tests/test_api.py b/huey/tests/test_api.py
index <HASH>..<HASH> 100644
--- a/huey/tests/test_api.py
+++ b/huey/tests/test_api.py
@@ -479,7 +479,7 @@ class TestQueue(BaseTestCase):
self.huey.execute(task, seconds(30))
self.assertEqual(state, [res.id, r2.id, r3.id, r4.id])
- ... | Fix <I> incompatibility in test. |
diff --git a/spec/request_spec.rb b/spec/request_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/request_spec.rb
+++ b/spec/request_spec.rb
@@ -573,9 +573,9 @@ describe RestClient::Request do
)
@net.should_receive(:ca_path=).with("Certificate Authority Path")
@net.should_receive(:ssl_version=).with(... | Fix new specs that used deprecated "stub!" method |
diff --git a/test/test_task.rb b/test/test_task.rb
index <HASH>..<HASH> 100644
--- a/test/test_task.rb
+++ b/test/test_task.rb
@@ -22,18 +22,18 @@ class TestTask < Minitest::Test
FileUtils.mkdir_p File.dirname(@manifest_file)
@manifest = Sprockets::Manifest.new(@assets, @dir, @manifest_file)
- @environme... | Ensure environment task is defined after sprockets |
diff --git a/src/collectors/postgres/postgres.py b/src/collectors/postgres/postgres.py
index <HASH>..<HASH> 100644
--- a/src/collectors/postgres/postgres.py
+++ b/src/collectors/postgres/postgres.py
@@ -112,6 +112,8 @@ class PostgresqlCollector(diamond.collector.Collector):
if database:
conn_arg... | Enable default database for _connect()
In the event you connect with a user that doesn't have it's own
database, set the default to be 'postgres' to enable _get_db_names()
to be able to collect the list of databases. |
diff --git a/test/test-50-fs-runtime-layer-2/main.js b/test/test-50-fs-runtime-layer-2/main.js
index <HASH>..<HASH> 100644
--- a/test/test-50-fs-runtime-layer-2/main.js
+++ b/test/test-50-fs-runtime-layer-2/main.js
@@ -29,7 +29,7 @@ function bitty (version) {
(8 * (/^(node|v)?11/.test(version))) |
... | decouple node<I> from node<I> in test-<I>-fs-runtime-layer-2 |
diff --git a/src/org/jgroups/protocols/COMPRESS.java b/src/org/jgroups/protocols/COMPRESS.java
index <HASH>..<HASH> 100755
--- a/src/org/jgroups/protocols/COMPRESS.java
+++ b/src/org/jgroups/protocols/COMPRESS.java
@@ -4,6 +4,7 @@ import org.jgroups.Event;
import org.jgroups.Global;
import org.jgroups.Header;
import... | added @MBean annotation to be able to expose ops and attrs via JMX |
diff --git a/samples/RecurringTask.py b/samples/RecurringTask.py
index <HASH>..<HASH> 100755
--- a/samples/RecurringTask.py
+++ b/samples/RecurringTask.py
@@ -7,7 +7,7 @@ This application demonstrates doing something at a regular interval.
import sys
from bacpypes.debugging import bacpypes_debugging, ModuleLogger
-... | this example doesn't need a configuration file |
diff --git a/emirdrp/tools/continuum_flatfield.py b/emirdrp/tools/continuum_flatfield.py
index <HASH>..<HASH> 100644
--- a/emirdrp/tools/continuum_flatfield.py
+++ b/emirdrp/tools/continuum_flatfield.py
@@ -120,6 +120,10 @@ def main(args=None):
if args.echo:
print('\033[1m\033[31m% ' + ' '.join(sys.argv) ... | Declare continuum_flatfield.py as obsolete |
diff --git a/src/bundle/Controller/ContentViewController.php b/src/bundle/Controller/ContentViewController.php
index <HASH>..<HASH> 100644
--- a/src/bundle/Controller/ContentViewController.php
+++ b/src/bundle/Controller/ContentViewController.php
@@ -165,10 +165,10 @@ class ContentViewController extends Controller
... | EZP-<I>: Exception after sending item from Relation List to Trash |
diff --git a/shared/login/signup/dumb.js b/shared/login/signup/dumb.js
index <HASH>..<HASH> 100644
--- a/shared/login/signup/dumb.js
+++ b/shared/login/signup/dumb.js
@@ -1,9 +1,9 @@
// @flow
import DeviceName from '../register/set-public-name'
-import Error from './error'
+import Error from './error/index.render'
i... | Fix broken visdiff using connected components |
diff --git a/jax/lax.py b/jax/lax.py
index <HASH>..<HASH> 100644
--- a/jax/lax.py
+++ b/jax/lax.py
@@ -556,10 +556,15 @@ def slice(operand, start_indices, limit_indices, strides=None):
<https://www.tensorflow.org/xla/operation_semantics#slice>`_
operator.
"""
- return slice_p.bind(operand, start_indices=tuple... | avoid generating trivial lax.slice operations |
diff --git a/ipset/ipset.go b/ipset/ipset.go
index <HASH>..<HASH> 100755
--- a/ipset/ipset.go
+++ b/ipset/ipset.go
@@ -118,12 +118,12 @@ func New(name string, hashtype string, p *Params) (*IPSet, error) {
return nil, err
}
- s := &IPSet{name, hashtype, p.HashFamily, p.HashSize, p.MaxElem, p.Timeout}
+ s := IPSet... | fixed: pointer passed to createHashSet |
diff --git a/smack-extensions/src/main/java/org/jivesoftware/smackx/muc/packet/MUCItem.java b/smack-extensions/src/main/java/org/jivesoftware/smackx/muc/packet/MUCItem.java
index <HASH>..<HASH> 100644
--- a/smack-extensions/src/main/java/org/jivesoftware/smackx/muc/packet/MUCItem.java
+++ b/smack-extensions/src/main/ja... | Always include role in MUCItem if it's set
As not including "role='none'" when kicking a user will result in an
XMPPErrorException. Also there appears to be nothing in XEP-<I> which
says "if role is not set, then it defaults to 'none'". |
diff --git a/pkg/kubelet/metrics/metrics.go b/pkg/kubelet/metrics/metrics.go
index <HASH>..<HASH> 100644
--- a/pkg/kubelet/metrics/metrics.go
+++ b/pkg/kubelet/metrics/metrics.go
@@ -77,9 +77,9 @@ func Register(containerCache kubecontainer.RuntimeCache) {
type SyncPodType int
const (
- SyncPodCreate SyncPodType = i... | Make SyncPodSync as the default SyncPodType.
We would like the default to be sync instead of create to easily differentiate
create operations in empty metrics map. |
diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -624,7 +624,7 @@ enginemill.loadInitializers = function (args) {
module = require(path);
} catch (moduleError) {
if (moduleError.code === 'MODULE_NOT_FOUND') {
- if (moduleError.messag... | better yet reporting when loading initializers
modified: index.js |
diff --git a/lib/objectcache.rb b/lib/objectcache.rb
index <HASH>..<HASH> 100644
--- a/lib/objectcache.rb
+++ b/lib/objectcache.rb
@@ -39,5 +39,11 @@ module Ronin
@store = Og.setup(:destroy => false, :evolve_schema => :full, :store => :sqlite, :name => @path)
end
+ protected
+
+ def method_missing(s... | * Added a method missing to allow for more transparent access to the Og store. |
diff --git a/lib/roar/representer/feature/hypermedia.rb b/lib/roar/representer/feature/hypermedia.rb
index <HASH>..<HASH> 100644
--- a/lib/roar/representer/feature/hypermedia.rb
+++ b/lib/roar/representer/feature/hypermedia.rb
@@ -6,6 +6,8 @@ module Roar
# Adds links methods to the model which can then be used f... | moving hypermedia code to Hypermedia. |
diff --git a/sharding-core/src/main/java/io/shardingsphere/core/parsing/parser/sql/dql/select/AbstractSelectParser.java b/sharding-core/src/main/java/io/shardingsphere/core/parsing/parser/sql/dql/select/AbstractSelectParser.java
index <HASH>..<HASH> 100755
--- a/sharding-core/src/main/java/io/shardingsphere/core/parsin... | delete parseDistinct() |
diff --git a/lib/core/thorinCore.js b/lib/core/thorinCore.js
index <HASH>..<HASH> 100644
--- a/lib/core/thorinCore.js
+++ b/lib/core/thorinCore.js
@@ -1119,7 +1119,6 @@ var _exitSignal = null;
function bindProcessEvents() {
if (this.env === 'development') return;
var self = this;
-
function onSignal(code) {
... | mergeItems no longer deletes the source id |
diff --git a/forms_builder/forms/models.py b/forms_builder/forms/models.py
index <HASH>..<HASH> 100644
--- a/forms_builder/forms/models.py
+++ b/forms_builder/forms/models.py
@@ -27,6 +27,8 @@ FIELD_CHOICES = (
("CharField/django.forms.Textarea", _("Multi line text")),
("EmailField", _("Email")),
("Boole... | Add multiple check boxes as a field type. |
diff --git a/tests/TaxonomyArchiveGeneratorTest.php b/tests/TaxonomyArchiveGeneratorTest.php
index <HASH>..<HASH> 100644
--- a/tests/TaxonomyArchiveGeneratorTest.php
+++ b/tests/TaxonomyArchiveGeneratorTest.php
@@ -18,13 +18,15 @@ class TaxonomyArchiveGeneratorTest extends CommandTestBase
$this->copyDirectory(... | :fire: Bringing test in line with new method of constructing Project |
diff --git a/code/model/fieldtypes/Markdown.php b/code/model/fieldtypes/Markdown.php
index <HASH>..<HASH> 100644
--- a/code/model/fieldtypes/Markdown.php
+++ b/code/model/fieldtypes/Markdown.php
@@ -56,7 +56,7 @@ class Markdown extends Text {
$curl=curl_init('https://api.github.com/markdown');
curl_se... | Fix bug where github API call would fail because no User-Agent was set on the HTTP Request |
diff --git a/annis-gui/src/main/java/annis/gui/resultview/VisualizerPanel.java b/annis-gui/src/main/java/annis/gui/resultview/VisualizerPanel.java
index <HASH>..<HASH> 100644
--- a/annis-gui/src/main/java/annis/gui/resultview/VisualizerPanel.java
+++ b/annis-gui/src/main/java/annis/gui/resultview/VisualizerPanel.java
@... | Make the component visualizer borderless. |
diff --git a/backup/controller/backup_controller.class.php b/backup/controller/backup_controller.class.php
index <HASH>..<HASH> 100644
--- a/backup/controller/backup_controller.class.php
+++ b/backup/controller/backup_controller.class.php
@@ -65,6 +65,16 @@ class backup_controller extends backup implements loggable {
... | backup MDL-<I> Updating a couple of PHP docs |
diff --git a/spec/unit/system_spec.rb b/spec/unit/system_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/unit/system_spec.rb
+++ b/spec/unit/system_spec.rb
@@ -407,6 +407,8 @@ describe "Ohai::System" do
E
it "runs all the plugins" do
+ # disable a few slow running plugins
+ Ohai.config[:dis... | Speedup the slowest spec by running fewer plugins
This spec runs the entire Ohai suite, which can take a bit of time. let's disable the slowest stuff to speed it up a bit. |
diff --git a/lib/xcodeproj/project/xcproj_helper.rb b/lib/xcodeproj/project/xcproj_helper.rb
index <HASH>..<HASH> 100644
--- a/lib/xcodeproj/project/xcproj_helper.rb
+++ b/lib/xcodeproj/project/xcproj_helper.rb
@@ -83,7 +83,7 @@ module Xcodeproj
@objc_class ||= CoreFoundation.objc_getClass('PBXProject')
... | Use `xcode-select -p` to determine path. |
diff --git a/examples/v4/collections/create-a-collection.php b/examples/v4/collections/create-a-collection.php
index <HASH>..<HASH> 100644
--- a/examples/v4/collections/create-a-collection.php
+++ b/examples/v4/collections/create-a-collection.php
@@ -8,7 +8,7 @@ use Billplz\API;
use Billplz\Connect;
$connect = (new... | Update setMode() description.
Documented values seem to be opposite the actual API. |
diff --git a/analyzers/EmlParser/parse.py b/analyzers/EmlParser/parse.py
index <HASH>..<HASH> 100755
--- a/analyzers/EmlParser/parse.py
+++ b/analyzers/EmlParser/parse.py
@@ -68,7 +68,7 @@ def parseEml(filepath):
#splited string because it was returning the body inside 'Content-Type'
hParser = email.parser.He... | Fix bug emlparser when 'content-type' string in mail is in lower case
Emlparser crashes when the string "Content-Type" is not found. In some cases it's available as "Content-type" or "content-type" , this fixes those cases |
diff --git a/src/Reporter/Verbose.php b/src/Reporter/Verbose.php
index <HASH>..<HASH> 100644
--- a/src/Reporter/Verbose.php
+++ b/src/Reporter/Verbose.php
@@ -55,6 +55,14 @@ class Verbose extends Terminal
*/
public function end($summary)
{
+ $this->write("\n");
+
+ foreach ($summary->logs(... | Report all failures at the end of verbose reporting. |
diff --git a/django_mock_queries/query.py b/django_mock_queries/query.py
index <HASH>..<HASH> 100644
--- a/django_mock_queries/query.py
+++ b/django_mock_queries/query.py
@@ -228,8 +228,8 @@ def MockSet(*initial_items, **kwargs):
return mock_set
-def MockModel(cls=None, mock_name=None, **attrs):
- mock_attr... | added spec_set to MockModel |
diff --git a/pg13/__init__.py b/pg13/__init__.py
index <HASH>..<HASH> 100644
--- a/pg13/__init__.py
+++ b/pg13/__init__.py
@@ -1,3 +1,3 @@
import misc,diff,pg,redismodel,syncschema
# don't import pgmock and stubredis -- they're only useful for test mode or nonstandard env (i.e. stubredis on windows)
-__version__ = '0... | bumping version (joins didn't work in <I>) |
diff --git a/_examples/sql/main.go b/_examples/sql/main.go
index <HASH>..<HASH> 100644
--- a/_examples/sql/main.go
+++ b/_examples/sql/main.go
@@ -136,7 +136,7 @@ var sqlParser = participle.MustBuild(&Select{}, sqlLexer)
func main() {
kingpin.Parse()
sql := &Select{}
- err := sqlParser.ParseString(`SELECT u.name, ... | Added "FROM" support to SQL parser. |
diff --git a/runtests/mpi/tester.py b/runtests/mpi/tester.py
index <HASH>..<HASH> 100644
--- a/runtests/mpi/tester.py
+++ b/runtests/mpi/tester.py
@@ -373,6 +373,8 @@ class Tester(BaseTester):
# see the faq:
# https://www.open-mpi.org/faq/?category=running#oversubscribing
os.environ['OMPI_M... | Set a few more OMPI parameters related to 'oversubscribe'. |
diff --git a/core/common/src/test/java/alluxio/worker/block/io/LocalFileBlockWriterTest.java b/core/common/src/test/java/alluxio/worker/block/io/LocalFileBlockWriterTest.java
index <HASH>..<HASH> 100644
--- a/core/common/src/test/java/alluxio/worker/block/io/LocalFileBlockWriterTest.java
+++ b/core/common/src/test/java... | Update LocalFileBlockWriterTest.java |
diff --git a/tests/test_node_tracers.js b/tests/test_node_tracers.js
index <HASH>..<HASH> 100644
--- a/tests/test_node_tracers.js
+++ b/tests/test_node_tracers.js
@@ -126,7 +126,7 @@ module.exports = {
test_espresso: function(test) {
var express = require('express');
var http = require('http');
-
+ var ... | Now with working example- need to call the .get method to trigger the close. Also, we can't call close too early in case the server hasn't had time to set up yet (async and all). |
diff --git a/apps/Sandbox/bootstrap/contexts/api.php b/apps/Sandbox/bootstrap/contexts/api.php
index <HASH>..<HASH> 100644
--- a/apps/Sandbox/bootstrap/contexts/api.php
+++ b/apps/Sandbox/bootstrap/contexts/api.php
@@ -80,6 +80,10 @@ OK: {
}
ERROR: {
+ if (PHP_SAPI === 'cli') {
+ $app->exceptionHandler->h... | [#<I>] exception is handle by api.php in develop |
diff --git a/src/Picqer/Financials/Exact/Query/Findable.php b/src/Picqer/Financials/Exact/Query/Findable.php
index <HASH>..<HASH> 100644
--- a/src/Picqer/Financials/Exact/Query/Findable.php
+++ b/src/Picqer/Financials/Exact/Query/Findable.php
@@ -138,6 +138,12 @@ trait Findable
while ($this->connection()->next... | Handle next pages single result as an element of array
Handle next page single result from Exact API not delivered as an array of elements by making the single item the first element of an (new) array. |
diff --git a/keep/utils.py b/keep/utils.py
index <HASH>..<HASH> 100644
--- a/keep/utils.py
+++ b/keep/utils.py
@@ -105,6 +105,13 @@ def pull(ctx, overwrite):
def register():
+
+ if not os.path.exists(dir_path):
+ click.secho("\n[CRITICAL] {0} does not exits.\nPlease run 'keep init',"
+ ... | Add check for ~/.keep/ when registering |
diff --git a/db/seeds.rb b/db/seeds.rb
index <HASH>..<HASH> 100644
--- a/db/seeds.rb
+++ b/db/seeds.rb
@@ -17,6 +17,9 @@ INSERT INTO pilgrim_cities VALUES
;
'
+ActiveRecord::Base.connection.execute('truncate table pilgrim_countries;')
ActiveRecord::Base.connection.execute(countries)
+ActiveRecord::Base.connection.... | Add truncates to pilgrim tables before inserts |
diff --git a/stdeb/util.py b/stdeb/util.py
index <HASH>..<HASH> 100644
--- a/stdeb/util.py
+++ b/stdeb/util.py
@@ -349,7 +349,6 @@ class DebianInfo:
if has_ext_modules:
debinfo.architecture = 'any'
depends.append('${shlibs:Depends}')
- build_deps.extend(['gcc','libc6-dev'])... | revert last change -- anyone building from source should have 'build-essential' installed, which includes gcc and libc6-dev
git-svn-id: <URL> |
diff --git a/src/string/capitalize.js b/src/string/capitalize.js
index <HASH>..<HASH> 100644
--- a/src/string/capitalize.js
+++ b/src/string/capitalize.js
@@ -4,6 +4,7 @@
*/
/*#ifndef(UMD)*/
"use strict";
+/*global _GPF_START*/ // 0
/*exported _gpfStringCapitalize*/ // Capitalize the string
/*#endif*/
@@ -15,7 ... | no-magic-numbers (#<I>) |
diff --git a/ewma/rate.go b/ewma/rate.go
index <HASH>..<HASH> 100644
--- a/ewma/rate.go
+++ b/ewma/rate.go
@@ -62,7 +62,7 @@ func (r *EwmaRate) Current(now time.Time) float64 {
return 0
}
- if r.Ewma.lastTimestamp == now {
+ if r.Ewma.lastTimestamp == now || now.Before(r.Ewma.lastTimestamp) {
return r.Ewma.Cu... | ewma: handle a situation of time going back
or race condition between code reading and updating rates |
diff --git a/lib/doorkeeper/config.rb b/lib/doorkeeper/config.rb
index <HASH>..<HASH> 100644
--- a/lib/doorkeeper/config.rb
+++ b/lib/doorkeeper/config.rb
@@ -99,7 +99,7 @@ module Doorkeeper
option :resource_owner_authenticator, :as => :authenticate_resource_owner
option :admin_authenticator, :a... | Handle situation when user did not specify any scopes
If user did not specify any scopes in the initializer the application would
by default have empty Scopes collection. |
diff --git a/pyrogram/client/types/message.py b/pyrogram/client/types/message.py
index <HASH>..<HASH> 100644
--- a/pyrogram/client/types/message.py
+++ b/pyrogram/client/types/message.py
@@ -26,9 +26,6 @@ class Message(Object):
Args:
message_id (``int``):
Unique message identifier inside this... | Don't document client, is for internal purposes only |
diff --git a/test/03list.js b/test/03list.js
index <HASH>..<HASH> 100644
--- a/test/03list.js
+++ b/test/03list.js
@@ -53,4 +53,14 @@ describe('list() method tests', function () {
let data = await sftp.list('.');
return expect(data).to.containSubset([{ type: 'd', name: 'testServer' }]);
});
+
+ it('list w... | Add additional relative path tests to list() method |
diff --git a/mod/scorm/lib.php b/mod/scorm/lib.php
index <HASH>..<HASH> 100755
--- a/mod/scorm/lib.php
+++ b/mod/scorm/lib.php
@@ -579,6 +579,9 @@ function scorm_startElement($parser, $name, $attrs) {
function scorm_endElement($parser, $name) {
global $scoes,$i,$level,$datacontent,$manifest,$organization,$versi... | Fixed a problem with altered chars in UTF-8 |
diff --git a/drools-api/src/main/java/org/drools/runtime/rule/PropagationContext.java b/drools-api/src/main/java/org/drools/runtime/rule/PropagationContext.java
index <HASH>..<HASH> 100644
--- a/drools-api/src/main/java/org/drools/runtime/rule/PropagationContext.java
+++ b/drools-api/src/main/java/org/drools/runtime/ru... | Improving support for idle and time to next job
git-svn-id: <URL> |
diff --git a/views/js/ui/modal.js b/views/js/ui/modal.js
index <HASH>..<HASH> 100644
--- a/views/js/ui/modal.js
+++ b/views/js/ui/modal.js
@@ -224,11 +224,15 @@ define(['jquery', 'core/pluginifier', 'core/dataattrhandler'], function ($, Plug
//Calculate the top offset
topOffset = (opti... | Modal top offset will be now increased only if its direct container has no class 'no-scroll-offset' (added because sometimes modal bottom part runs under the lower edge of browser); |
diff --git a/ansible_runner/runner_config.py b/ansible_runner/runner_config.py
index <HASH>..<HASH> 100644
--- a/ansible_runner/runner_config.py
+++ b/ansible_runner/runner_config.py
@@ -624,13 +624,6 @@ class RunnerConfig(object):
)
])
- if self.cli_execenv_cm... | don't mount private_data_dir in container twice (adhoc) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.