diff stringlengths 65 26.7k | message stringlengths 7 9.92k |
|---|---|
diff --git a/app/app.go b/app/app.go
index <HASH>..<HASH> 100644
--- a/app/app.go
+++ b/app/app.go
@@ -539,12 +539,14 @@ func (a *App) Log(message string, source string) error {
log.Printf(message)
messages := strings.Split(message, "\n")
for _, msg := range messages {
- l := Applog{
- Date: time.Now(),
- ... | app: fix blank line logging issue |
diff --git a/lib/sfn/command_module/stack.rb b/lib/sfn/command_module/stack.rb
index <HASH>..<HASH> 100644
--- a/lib/sfn/command_module/stack.rb
+++ b/lib/sfn/command_module/stack.rb
@@ -74,7 +74,7 @@ module Sfn
# @param action [String] create or update
# @return [TrueClass]
def unpack_nestin... | Fix apply stack reference to access via hash method |
diff --git a/spec/dummy/config/application.rb b/spec/dummy/config/application.rb
index <HASH>..<HASH> 100644
--- a/spec/dummy/config/application.rb
+++ b/spec/dummy/config/application.rb
@@ -24,9 +24,6 @@ module Dummy
# The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
... | Get rid of deprecated app setting. |
diff --git a/text-minimessage/src/test/java/net/kyori/adventure/text/minimessage/tag/TagResolverTest.java b/text-minimessage/src/test/java/net/kyori/adventure/text/minimessage/tag/TagResolverTest.java
index <HASH>..<HASH> 100644
--- a/text-minimessage/src/test/java/net/kyori/adventure/text/minimessage/tag/TagResolverTe... | minimessage-text: Cleanup test ParseInResolver |
diff --git a/test_pyout.py b/test_pyout.py
index <HASH>..<HASH> 100644
--- a/test_pyout.py
+++ b/test_pyout.py
@@ -178,8 +178,8 @@ def test_tabular_write_update():
fd = StringIO()
out = Tabular(["name", "status"],
stream=fd, force_styling=True)
- data = [{"name": "foo", "path": "/tmp/foo... | TST: Remove an unused field |
diff --git a/public/js/clients/chrome/events.js b/public/js/clients/chrome/events.js
index <HASH>..<HASH> 100644
--- a/public/js/clients/chrome/events.js
+++ b/public/js/clients/chrome/events.js
@@ -11,6 +11,10 @@ function scriptParsed(scriptId, url, startLine, startColumn,
endLine, endColumn, executionCo... | Exclude internal sources (#<I>) |
diff --git a/webroot/js/calendar.js b/webroot/js/calendar.js
index <HASH>..<HASH> 100644
--- a/webroot/js/calendar.js
+++ b/webroot/js/calendar.js
@@ -565,6 +565,12 @@ Vue.component('calendar-modal', {
calendarId: function() {
this.getEventTypes();
},
+ isRecurring: function() {
+ ... | Resetting reccuring rule on checkbox off (task #<I>) |
diff --git a/main.go b/main.go
index <HASH>..<HASH> 100644
--- a/main.go
+++ b/main.go
@@ -151,7 +151,17 @@ func main() {
// GUI
if !opts.NoGUI && opts.GUIAddr != "" {
- startGUI(opts.GUIAddr, m)
+ host, port, err := net.SplitHostPort(opts.GUIAddr)
+ if err != nil {
+ warnf("Cannot start GUI on %q: %v", opts... | Show web GUI address on startup (fixes #<I>) |
diff --git a/Reminders/DatabaseReminderRepository.php b/Reminders/DatabaseReminderRepository.php
index <HASH>..<HASH> 100755
--- a/Reminders/DatabaseReminderRepository.php
+++ b/Reminders/DatabaseReminderRepository.php
@@ -139,7 +139,7 @@ class DatabaseReminderRepository implements ReminderRepositoryInterface {
*/
... | We should remove the seconds and not add it to the current DateTime. |
diff --git a/scoop/_control.py b/scoop/_control.py
index <HASH>..<HASH> 100644
--- a/scoop/_control.py
+++ b/scoop/_control.py
@@ -105,7 +105,6 @@ def runController(callable, *args, **kargs):
else:
future = execQueue.pop()
else:
- execQue... | Fixed a memory leak in the controller. It seems to enhance greatly the performances. |
diff --git a/nodeconductor/server/base_settings.py b/nodeconductor/server/base_settings.py
index <HASH>..<HASH> 100644
--- a/nodeconductor/server/base_settings.py
+++ b/nodeconductor/server/base_settings.py
@@ -46,6 +46,13 @@ MIDDLEWARE_CLASSES = (
REST_FRAMEWORK = {
'TEST_REQUEST_DEFAULT_FORMAT': 'json',
+ ... | Enabled basic and session authentication.
- NC-4
- Made all requests require authentication by default. |
diff --git a/src/Content/Migration/Base.php b/src/Content/Migration/Base.php
index <HASH>..<HASH> 100644
--- a/src/Content/Migration/Base.php
+++ b/src/Content/Migration/Base.php
@@ -129,6 +129,21 @@ class Base
}
/**
+ * Helper function for logging messages
+ *
+ * @param string $message
+ * @param strin... | [feat] Adding helper for logging messages |
diff --git a/aioxmpp/security_layer.py b/aioxmpp/security_layer.py
index <HASH>..<HASH> 100644
--- a/aioxmpp/security_layer.py
+++ b/aioxmpp/security_layer.py
@@ -713,11 +713,6 @@ class STARTTLSProvider:
`certificate_verifier_factory` must be a callable providing a
:class:`CertificateVerifer` instance which w... | Remove incorrect documentation on dane support |
diff --git a/src/Entry.php b/src/Entry.php
index <HASH>..<HASH> 100644
--- a/src/Entry.php
+++ b/src/Entry.php
@@ -59,7 +59,7 @@ class Entry implements EntryInterface
return $this->resolvedLinks[$key];
}
- if (is_array($this->fields[$key]) && array_values($this->fields[$key])[... | handle case where entry field is empty collection |
diff --git a/paper/scripts/k2sc_cdpp.py b/paper/scripts/k2sc_cdpp.py
index <HASH>..<HASH> 100755
--- a/paper/scripts/k2sc_cdpp.py
+++ b/paper/scripts/k2sc_cdpp.py
@@ -22,7 +22,7 @@ import warnings
from urllib.error import HTTPError
from scipy.signal import savgol_filter
-for campaign in range(4,7):
+for campaign in... | add c3 to k2sc |
diff --git a/lib/load-grunt-configs.js b/lib/load-grunt-configs.js
index <HASH>..<HASH> 100644
--- a/lib/load-grunt-configs.js
+++ b/lib/load-grunt-configs.js
@@ -17,7 +17,7 @@ var path = require('path');
module.exports = function(grunt, options){
- options = _.merge({
+ options = _.assign({
config: {
src :... | fixes incorrect overwrite of passedin options for this task |
diff --git a/xwiki-commons-core/xwiki-commons-job/src/test/java/org/xwiki/job/internal/DefaultRequestTest.java b/xwiki-commons-core/xwiki-commons-job/src/test/java/org/xwiki/job/internal/DefaultRequestTest.java
index <HASH>..<HASH> 100644
--- a/xwiki-commons-core/xwiki-commons-job/src/test/java/org/xwiki/job/internal/D... | [Misc] Don't use the assertEquals (Object[], Object[]) signature which is deprecated |
diff --git a/src/main/lombok/ast/resolve/Resolver.java b/src/main/lombok/ast/resolve/Resolver.java
index <HASH>..<HASH> 100644
--- a/src/main/lombok/ast/resolve/Resolver.java
+++ b/src/main/lombok/ast/resolve/Resolver.java
@@ -124,6 +124,16 @@ public class Resolver {
String name = typeReference.getTypeName();
if ... | resolver work - we don't use this yet, huh. |
diff --git a/lib/vaulted_billing/gateways/ipcommerce.rb b/lib/vaulted_billing/gateways/ipcommerce.rb
index <HASH>..<HASH> 100644
--- a/lib/vaulted_billing/gateways/ipcommerce.rb
+++ b/lib/vaulted_billing/gateways/ipcommerce.rb
@@ -90,7 +90,7 @@ module VaultedBilling
response = http.get
raise(Unava... | Tokenization should store the keys using the store_key method. |
diff --git a/test/integration/serverless/test/index.test.js b/test/integration/serverless/test/index.test.js
index <HASH>..<HASH> 100644
--- a/test/integration/serverless/test/index.test.js
+++ b/test/integration/serverless/test/index.test.js
@@ -13,6 +13,7 @@ import {
renderViaHTTP,
} from 'next-test-utils'
impor... | Test static folder (#<I>)
* Test for infinite loop
* remove focus |
diff --git a/code/MemberTableField.php b/code/MemberTableField.php
index <HASH>..<HASH> 100755
--- a/code/MemberTableField.php
+++ b/code/MemberTableField.php
@@ -349,7 +349,7 @@ class MemberTableField extends ComplexTableField {
$message = sprintf(
_t('ComplexTableField.SUCCESSADD', 'Added %s %s %s'),
$chil... | BUGFIX: Removed XSS holes (from r<I>) (from r<I>)
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@<I> <I>b<I>ca-7a2a-<I>-9d3b-<I>d<I>a<I>a9 |
diff --git a/src/cloudant/client.py b/src/cloudant/client.py
index <HASH>..<HASH> 100755
--- a/src/cloudant/client.py
+++ b/src/cloudant/client.py
@@ -95,7 +95,7 @@ class CouchDB(dict):
authentication if necessary.
"""
if self.r_session:
- return
+ self.session_logout()
... | Allow multiple calls to client .connect() |
diff --git a/StreamSelectLoop.php b/StreamSelectLoop.php
index <HASH>..<HASH> 100644
--- a/StreamSelectLoop.php
+++ b/StreamSelectLoop.php
@@ -182,8 +182,11 @@ class StreamSelectLoop implements LoopInterface
// There is a pending timer, only block until it is due ...
} elseif ($scheduledAt =... | Fix <I>% cpu usage for idle StreamSelectLoop with no timers.
A null timeout must not be multiplied by an integer.
Fixes #<I> |
diff --git a/coaster/views.py b/coaster/views.py
index <HASH>..<HASH> 100644
--- a/coaster/views.py
+++ b/coaster/views.py
@@ -70,8 +70,8 @@ def get_next_url(referrer=False, external=False, session=False, default=__marker
This function looks for a ``next`` parameter in the request or in the session
(depending... | We're no longer assuming presence of a route named 'index'. |
diff --git a/worker.go b/worker.go
index <HASH>..<HASH> 100644
--- a/worker.go
+++ b/worker.go
@@ -64,7 +64,7 @@ type Worker struct {
// ConfigureQorResourceBeforeInitialize a method used to config Worker for qor admin
func (worker *Worker) ConfigureQorResourceBeforeInitialize(res resource.Resourcer) {
if res, ok :... | Upgrade to new RegisterViewPath API |
diff --git a/classes/taxonomy.class.php b/classes/taxonomy.class.php
index <HASH>..<HASH> 100644
--- a/classes/taxonomy.class.php
+++ b/classes/taxonomy.class.php
@@ -68,7 +68,7 @@ class Cuztom_Taxonomy
add_action( 'init', array( &$this, 'register_taxonomy_for_object_type' ) );
}
- if( ( get_bloginfo( 'ver... | Show_columns changed to show_admin_column
With compatability for versions below <I> |
diff --git a/src/controllers/playlists.js b/src/controllers/playlists.js
index <HASH>..<HASH> 100755
--- a/src/controllers/playlists.js
+++ b/src/controllers/playlists.js
@@ -219,7 +219,8 @@ export const createPlaylistItems = function createPlaylistItems(id, playlistID,
_playlistItem = new PlaylistItem({
... | set end to media.duration at creation |
diff --git a/internal/services/compute/dedicated_host_resource.go b/internal/services/compute/dedicated_host_resource.go
index <HASH>..<HASH> 100644
--- a/internal/services/compute/dedicated_host_resource.go
+++ b/internal/services/compute/dedicated_host_resource.go
@@ -264,7 +264,7 @@ func resourceDedicatedHostDelete(... | r/dedicated_host: adding a missing formatting placeholder |
diff --git a/tests/App/AppKernel.php b/tests/App/AppKernel.php
index <HASH>..<HASH> 100644
--- a/tests/App/AppKernel.php
+++ b/tests/App/AppKernel.php
@@ -120,7 +120,7 @@ final class AppKernel extends Kernel
$containerBuilder->loadFromExtension('twig', [
'default_path' => sprintf('%s/templates',... | Use strict_variables in tests (#<I>) |
diff --git a/Command/JobsCommand.php b/Command/JobsCommand.php
index <HASH>..<HASH> 100644
--- a/Command/JobsCommand.php
+++ b/Command/JobsCommand.php
@@ -55,6 +55,9 @@ class JobsCommand extends Command
foreach( $this->getSiteItems( $context, $input ) as $siteItem )
{
+ \Aimeos\MShop::cache( true );
+ \Aime... | Clear cached managers to avoid using old context |
diff --git a/haas/tests/test_result.py b/haas/tests/test_result.py
index <HASH>..<HASH> 100644
--- a/haas/tests/test_result.py
+++ b/haas/tests/test_result.py
@@ -298,7 +298,7 @@ class TestFailfast(ExcInfoFixture, unittest.TestCase):
self.assertFalse(collector.shouldStop)
-class TestBuffering(ExcInfoFixtur... | Add accidentally removed TestCase base class |
diff --git a/peri/comp/objs.py b/peri/comp/objs.py
index <HASH>..<HASH> 100644
--- a/peri/comp/objs.py
+++ b/peri/comp/objs.py
@@ -1,6 +1,5 @@
import numpy as np
from scipy.special import erf
-from scipy.linalg import expm3
try:
from scipy.weave import inline
@@ -708,14 +707,11 @@ class Slab(Component):
... | Removing some now unnecessary lines from objs.py |
diff --git a/src/tween/tween.babel.js b/src/tween/tween.babel.js
index <HASH>..<HASH> 100644
--- a/src/tween/tween.babel.js
+++ b/src/tween/tween.babel.js
@@ -1221,14 +1221,16 @@ class Tween extends Module {
@parma {Function} Method to call
*/
_overrideCallback(callback, fun) {
+ let self = this;
+
... | Fix `no-invalid-this` rule
Note that `self` in this context refer to the global `window` object. |
diff --git a/properties/base.py b/properties/base.py
index <HASH>..<HASH> 100644
--- a/properties/base.py
+++ b/properties/base.py
@@ -385,7 +385,8 @@ class List(basic.Property):
return 'a list - each item is {info}'.format(info=self.prop.info())
def _unused_default_warning(self):
- if self.prop.... | Do not warn on unused defaults if unused and used values are the same
For example Unions of different list types will not warn any more.
An empty list is the default regardless. |
diff --git a/src/_pdbpp_path_hack/pdb.py b/src/_pdbpp_path_hack/pdb.py
index <HASH>..<HASH> 100644
--- a/src/_pdbpp_path_hack/pdb.py
+++ b/src/_pdbpp_path_hack/pdb.py
@@ -9,5 +9,9 @@ else:
pdb_path = os.path.join(os.path.dirname(code.__file__), 'pdb.py')
+# Set __file__ to exec'd code. This is good in general... | _pdbpp_path_hack/pdb.py: set __file__
Required for coverage.py since it uses the same filename.
Ref: <URL> |
diff --git a/src/Manager.php b/src/Manager.php
index <HASH>..<HASH> 100644
--- a/src/Manager.php
+++ b/src/Manager.php
@@ -77,6 +77,10 @@ class Manager extends Module {
self::ATTR_SESSION_TIMEOUT => 60 // seconds inactive to trigger timeout
];
}
+ /**
+ * @throws InvalidEntityException
+ * @return... | added return comment for ide autocomplete |
diff --git a/lib/solargraph/convention/rspec.rb b/lib/solargraph/convention/rspec.rb
index <HASH>..<HASH> 100644
--- a/lib/solargraph/convention/rspec.rb
+++ b/lib/solargraph/convention/rspec.rb
@@ -8,14 +8,23 @@ module Solargraph
@environ ||= Environ.new(
requires: ['rspec'],
domains: ['... | Basic support for RSpec #describe and #it |
diff --git a/tests/Formatter/PhpGetBrowserTest.php b/tests/Formatter/PhpGetBrowserTest.php
index <HASH>..<HASH> 100644
--- a/tests/Formatter/PhpGetBrowserTest.php
+++ b/tests/Formatter/PhpGetBrowserTest.php
@@ -68,4 +68,30 @@ class PhpGetBrowserTest extends \PHPUnit_Framework_TestCase
self::assertSame('TestCom... | adding a couple of tests to hit new code |
diff --git a/Tests/Unit/Document/UrlObjectTest.php b/Tests/Unit/Document/UrlObjectTest.php
index <HASH>..<HASH> 100644
--- a/Tests/Unit/Document/UrlObjectTest.php
+++ b/Tests/Unit/Document/UrlObjectTest.php
@@ -57,7 +57,7 @@ class UrlObjectTest extends \PHPUnit_Framework_TestCase
$url->setUrl($data['url']);
... | Test fixed for CategoryService
Test updated for UrlObject after change |
diff --git a/pachyderm/plot.py b/pachyderm/plot.py
index <HASH>..<HASH> 100644
--- a/pachyderm/plot.py
+++ b/pachyderm/plot.py
@@ -465,6 +465,8 @@ class LegendConfig:
font_size: Optional[float] = attr.ib(default=None)
ncol: Optional[float] = attr.ib(default=1)
marker_label_spacing: Optional[float] = attr... | Set spacing from marker to label in legend |
diff --git a/tasks/index.js b/tasks/index.js
index <HASH>..<HASH> 100644
--- a/tasks/index.js
+++ b/tasks/index.js
@@ -1,18 +1,8 @@
'use strict';
var i18next = require('..');
-var through2 = require('through2');
var vfs = require('vinyl-fs');
-var tap = function(callback) {
- return through2.obj(function(file... | Fix the grunt task.
Wait for all files to be written before finish the task. |
diff --git a/mongo/mongo_test.go b/mongo/mongo_test.go
index <HASH>..<HASH> 100644
--- a/mongo/mongo_test.go
+++ b/mongo/mongo_test.go
@@ -374,7 +374,7 @@ func (s *MongoSuite) TestInstallMongod(c *gc.C) {
{"precise", [][]string{{"--target-release", "precise-updates/cloud-tools", "mongodb-server"}}},
{"trusty", []... | Update the test to expect mongodb-server-core on bionic. |
diff --git a/bokeh/models/tools.py b/bokeh/models/tools.py
index <HASH>..<HASH> 100644
--- a/bokeh/models/tools.py
+++ b/bokeh/models/tools.py
@@ -288,7 +288,7 @@ class BoxSelectTool(Tool):
defaults to all renderers on a plot.
""")
- select_every_mousemove = Bool(True, help="""
+ select_every_mousemov... | Fix box select tool issue
Python default out of sync with js |
diff --git a/provider/maas/environ.go b/provider/maas/environ.go
index <HASH>..<HASH> 100644
--- a/provider/maas/environ.go
+++ b/provider/maas/environ.go
@@ -64,7 +64,7 @@ func releaseNodes(nodes gomaasapi.MAASObject, ids url.Values) error {
func reserveIPAddress(ipaddresses gomaasapi.MAASObject, cidr string, addr ne... | Fixed MAAS provider address allocation params - forward port to master |
diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -48,7 +48,7 @@ function statAsync (fp, callback) {
function tryStatSync (fp) {
try {
return fs.statSync(fp).isDirectory()
- } catch(err) {
+ } catch (err) {
return false
}
} | index.js: add space after `catch` (#6) |
diff --git a/src/modules/auth-session/sagas/logout.js b/src/modules/auth-session/sagas/logout.js
index <HASH>..<HASH> 100644
--- a/src/modules/auth-session/sagas/logout.js
+++ b/src/modules/auth-session/sagas/logout.js
@@ -1,12 +1,16 @@
import { takeLeading, put } from 'redux-saga/effects';
-import { config } from '... | :bug: Skip calling requestAnimationFrame if window object isn't present |
diff --git a/malcolm/modules/scanning/infos.py b/malcolm/modules/scanning/infos.py
index <HASH>..<HASH> 100644
--- a/malcolm/modules/scanning/infos.py
+++ b/malcolm/modules/scanning/infos.py
@@ -178,8 +178,6 @@ class ExposureDeadtimeInfo(Info):
def calculate_minimum_duration(self, exposure: float) -> float:
... | ExposureDeadtimeInfo: remove unused code path for calculating duration |
diff --git a/pyisbn/__init__.py b/pyisbn/__init__.py
index <HASH>..<HASH> 100644
--- a/pyisbn/__init__.py
+++ b/pyisbn/__init__.py
@@ -58,6 +58,7 @@ books in their collection.
class Isbn(object):
+
"""Class for representing ISBN objects."""
__slots__ = ('_isbn', 'isbn')
@@ -174,11 +175,13 @@ class Isbn... | [QA] PEP-<I> class docstring compliance fixes.
For some reason I always forget this one. |
diff --git a/example.js b/example.js
index <HASH>..<HASH> 100644
--- a/example.js
+++ b/example.js
@@ -2,15 +2,19 @@ var pdfFormFill = require('lib/pdf-fill-form.js');
var fs = require('fs');
// Show fields
-var formFields = pdfFormFill.readSync('test.pdf')
+var formFields = pdfFormFill.readSync('test.pdf');
conso... | Ran through Google Closure linter |
diff --git a/tt/gspreadsheet.py b/tt/gspreadsheet.py
index <HASH>..<HASH> 100644
--- a/tt/gspreadsheet.py
+++ b/tt/gspreadsheet.py
@@ -129,6 +129,8 @@ class GSpreadsheet(object):
return "https://docs.google.com/a/texastribune.org/spreadsheet/ccc?key=%s" % (self.key)
def get_worksheets(self):
+ if... | return cached worksheets if importer already knows the worksheets |
diff --git a/lib/cb/requests/application_external/submit_application.rb b/lib/cb/requests/application_external/submit_application.rb
index <HASH>..<HASH> 100644
--- a/lib/cb/requests/application_external/submit_application.rb
+++ b/lib/cb/requests/application_external/submit_application.rb
@@ -30,6 +30,7 @@ module Cb
... | ipath won't bomb if not given a string |
diff --git a/gulpfile.js b/gulpfile.js
index <HASH>..<HASH> 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -19,7 +19,7 @@ gulp.task('sass', function () {
});
gulp.task('css', ['sass'], function () {
- return gulp.src(cssDir + '/*.css')
+ return gulp.src([cssDir + '/*.css', '!' + cssDir + '/*.min.css'])
... | Assets: Fixed a gulp task for minification |
diff --git a/engine/src/main/java/com/stratio/streaming/configuration/StreamingContextConfiguration.java b/engine/src/main/java/com/stratio/streaming/configuration/StreamingContextConfiguration.java
index <HASH>..<HASH> 100644
--- a/engine/src/main/java/com/stratio/streaming/configuration/StreamingContextConfiguration.... | Removed duplicated Kafka topic creation. |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100755
--- a/setup.py
+++ b/setup.py
@@ -4,7 +4,7 @@ from libsubmit.version import VERSION
install_requires = [
'ipyparallel',
'boto3',
- 'azure'
+ 'azure',
'haikunator',
'python-novaclient'
] | Fixing missing comma in setup |
diff --git a/src/org/zaproxy/zap/extension/autoupdate/ExtensionAutoUpdate.java b/src/org/zaproxy/zap/extension/autoupdate/ExtensionAutoUpdate.java
index <HASH>..<HASH> 100644
--- a/src/org/zaproxy/zap/extension/autoupdate/ExtensionAutoUpdate.java
+++ b/src/org/zaproxy/zap/extension/autoupdate/ExtensionAutoUpdate.java
@... | Copy the add-on installed through the API
Copy the add-on to local plugin directory to install it permanently,
like the other ways of installing an add-on do, to avoid surprises when
ZAP is started again. |
diff --git a/visidata/vd.py b/visidata/vd.py
index <HASH>..<HASH> 100755
--- a/visidata/vd.py
+++ b/visidata/vd.py
@@ -241,9 +241,7 @@ anytype = lambda r='': str(r)
anytype.__name__ = ''
class date:
- """Simple wrapper around `datetime`.
-
- This allows it to be created from dateutil str or numeric input as t... | Add forwarding from date to inner datetime for .year/etc #<I> |
diff --git a/voluptuous/voluptuous.py b/voluptuous/voluptuous.py
index <HASH>..<HASH> 100644
--- a/voluptuous/voluptuous.py
+++ b/voluptuous/voluptuous.py
@@ -260,13 +260,21 @@ class Schema(object):
continue
# Backtracking is not performed once a key is selected, so if
... | Preserve all errors for fields of dicts and objects |
diff --git a/src/drawer.js b/src/drawer.js
index <HASH>..<HASH> 100644
--- a/src/drawer.js
+++ b/src/drawer.js
@@ -709,8 +709,7 @@ function updateTile( drawer, drawLevel, haveDrawn, x, y, level, levelOpacity, le
);
if ( tile.loaded ) {
-
- drawer.updateAgain = blendTile(
+ var needsUpd... | Fixed blendTile()-related blurriness issue
We were setting drawer.updateAgain to the result of each blendTile(),
which meant it was keeping only the last result. Instead we should have
been only setting it to true if blendTile returned true, but never
setting it to false. Fixed. |
diff --git a/dev/io.openliberty.microprofile.openapi.2.0.internal/src/io/openliberty/microprofile/openapi20/utils/IndexUtils.java b/dev/io.openliberty.microprofile.openapi.2.0.internal/src/io/openliberty/microprofile/openapi20/utils/IndexUtils.java
index <HASH>..<HASH> 100644
--- a/dev/io.openliberty.microprofile.opena... | OpenAPI: respect config when scanning expanded app
File paths were not being handled correctly for expanded apps, leading
to an incorrect class name being compared to the include/exclude filters
derived from the configuration. |
diff --git a/suitable/tests/conftest.py b/suitable/tests/conftest.py
index <HASH>..<HASH> 100644
--- a/suitable/tests/conftest.py
+++ b/suitable/tests/conftest.py
@@ -19,14 +19,20 @@ class Container(object):
self.password = password
def spawn_api(self, api_class, **kwargs):
- return api_class(
- ... | Fixes conftest options not being propagated |
diff --git a/lib/survey_gizmo/resource.rb b/lib/survey_gizmo/resource.rb
index <HASH>..<HASH> 100644
--- a/lib/survey_gizmo/resource.rb
+++ b/lib/survey_gizmo/resource.rb
@@ -257,8 +257,6 @@ module SurveyGizmo
def inspect
if ENV['GIZMO_DEBUG']
ap "CLASS: #{self.class}"
- ap "CLASS ATTRIBUTE ... | Don't need to log the attribute_set as an object |
diff --git a/azurerm/resource_arm_api_management_logger_test.go b/azurerm/resource_arm_api_management_logger_test.go
index <HASH>..<HASH> 100644
--- a/azurerm/resource_arm_api_management_logger_test.go
+++ b/azurerm/resource_arm_api_management_logger_test.go
@@ -89,7 +89,7 @@ func TestAccAzureRMApiManagementLogger_basi... | Update azurerm/resource_arm_api_management_logger_test.go |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -3,7 +3,7 @@ from setuptools import setup, find_packages
setup(
name="rueckenwind",
version="0.0.1",
- install_requires=['tornado>=3.0.1,<4.0', 'jinja2', 'werkzeug==0.6.2', 'babel', 'mock', 'configobj', 'bson'],
... | Added motor dependency, bson will be provided by pymongo. |
diff --git a/spec/ransack/dependencies_spec.rb b/spec/ransack/dependencies_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/ransack/dependencies_spec.rb
+++ b/spec/ransack/dependencies_spec.rb
@@ -1,3 +1,4 @@
+=begin
rails = ::ActiveRecord::VERSION::STRING.first(3)
if %w(3.2 4.0 4.1).include?(rails) || rails == '3.1'... | Comment out this test for now. TODO: examine this. |
diff --git a/activerecord/lib/active_record/associations/association_proxy.rb b/activerecord/lib/active_record/associations/association_proxy.rb
index <HASH>..<HASH> 100644
--- a/activerecord/lib/active_record/associations/association_proxy.rb
+++ b/activerecord/lib/active_record/associations/association_proxy.rb
@@ -5... | Prevent calling regexp on symbol in Ruby <I> in association_proxy |
diff --git a/plash/cli.py b/plash/cli.py
index <HASH>..<HASH> 100644
--- a/plash/cli.py
+++ b/plash/cli.py
@@ -19,6 +19,9 @@ SHORTCUTS = [
('-a', ['apt'], '+'),
('-p', ['pip'], '+'),
('-b', ['apt', 'ubuntu-server'], 0),
+ ('-U', ['os', 'ubuntu'], 0),
+ ('-F', ['os', 'fedora'], 0),
+ ('-D', ['os'... | Shortcuts for some osses |
diff --git a/galpy/potential_src/TwoPowerSphericalPotential.py b/galpy/potential_src/TwoPowerSphericalPotential.py
index <HASH>..<HASH> 100644
--- a/galpy/potential_src/TwoPowerSphericalPotential.py
+++ b/galpy/potential_src/TwoPowerSphericalPotential.py
@@ -312,6 +312,7 @@ class HernquistPotential(TwoPowerIntegerSpher... | add C implementation of Hernquist potential |
diff --git a/test_isort.py b/test_isort.py
index <HASH>..<HASH> 100644
--- a/test_isort.py
+++ b/test_isort.py
@@ -1507,3 +1507,12 @@ def test_basic_comment():
'# Foo\n'
'import os\n')
assert SortImports(file_contents=test_input).output == test_input
+
+
+def test_shouldnt_add... | Add test case for issue #<I> |
diff --git a/build/prepareNightly.js b/build/prepareNightly.js
index <HASH>..<HASH> 100644
--- a/build/prepareNightly.js
+++ b/build/prepareNightly.js
@@ -9,9 +9,14 @@ if (!parts) {
throw new Error(`Invalid version number ${version}`);
}
// Add date to version.
-const major = parts[1];
-const minor = parts[2];
-... | chore: increase dev version from stable version. |
diff --git a/registrator.go b/registrator.go
index <HASH>..<HASH> 100644
--- a/registrator.go
+++ b/registrator.go
@@ -1,4 +1,4 @@
-package main
+package main // import "github.com/progrium/registrator"
import (
"errors" | Added canonical import path to main package.
So can be built and Dockerized by centurylink/golang-builder.
<URL> |
diff --git a/lib/fields.js b/lib/fields.js
index <HASH>..<HASH> 100644
--- a/lib/fields.js
+++ b/lib/fields.js
@@ -42,7 +42,7 @@ exports.string = function (opt) {
if (b.required) {
var validator = typeof b.required === 'function' ? b.required : validators.required();
... | Use String() instead of the toString prototype method. |
diff --git a/Tests/Model/Node/ProductOptionsTest.php b/Tests/Model/Node/ProductOptionsTest.php
index <HASH>..<HASH> 100644
--- a/Tests/Model/Node/ProductOptionsTest.php
+++ b/Tests/Model/Node/ProductOptionsTest.php
@@ -76,13 +76,8 @@ class ProductOptionsTest extends WebTestCase
$po->getOption('color', 'red... | remove case insensitive test, it just doesn't make sense |
diff --git a/libraries/lithium/core/Libraries.php b/libraries/lithium/core/Libraries.php
index <HASH>..<HASH> 100644
--- a/libraries/lithium/core/Libraries.php
+++ b/libraries/lithium/core/Libraries.php
@@ -144,9 +144,13 @@ class Libraries {
public static function add($name, $config = array()) {
$defaults = array(... | Plugins now load thier bootstrap files automatically. |
diff --git a/comments-bundle/src/Resources/contao/classes/Comments.php b/comments-bundle/src/Resources/contao/classes/Comments.php
index <HASH>..<HASH> 100644
--- a/comments-bundle/src/Resources/contao/classes/Comments.php
+++ b/comments-bundle/src/Resources/contao/classes/Comments.php
@@ -73,7 +73,8 @@ class Comments ... | [Comments] Pagination variables are now unique (see #<I>) |
diff --git a/lib/genDocute.js b/lib/genDocute.js
index <HASH>..<HASH> 100644
--- a/lib/genDocute.js
+++ b/lib/genDocute.js
@@ -23,6 +23,6 @@ module.exports = async config => {
logger.success('Generated successfully')
} catch (err) {
console.error(err.name === 'SAOError' ? err.message : err.stack)
+ proc... | fix: Avoid abnormal exits
fix #<I> |
diff --git a/lib/grably.rb b/lib/grably.rb
index <HASH>..<HASH> 100644
--- a/lib/grably.rb
+++ b/lib/grably.rb
@@ -33,7 +33,7 @@ module Grably
def init
profile = (ENV[ENV_PROFILE_KEY] || 'default').split(',')
puts 'Loding profile ' + profile.join('/')
- @config = Grably::Core::Configuration.load... | Use profile var instead of looking up into ENV |
diff --git a/includes/constants.php b/includes/constants.php
index <HASH>..<HASH> 100755
--- a/includes/constants.php
+++ b/includes/constants.php
@@ -30,7 +30,7 @@
*
*/
#TAO version number
-define('TAO_VERSION', '3.3.0-sprint70');
+define('TAO_VERSION', '3.3.0-sprint71');
$version = TAO_VERSION; | udpate version to sprint <I> |
diff --git a/VirtualProductDelivery.php b/VirtualProductDelivery.php
index <HASH>..<HASH> 100644
--- a/VirtualProductDelivery.php
+++ b/VirtualProductDelivery.php
@@ -33,7 +33,7 @@ class VirtualProductDelivery extends AbstractDeliveryModule
*/
public function isValidDelivery(Country $country)
{
- ... | Refactored the cart management in the Session object |
diff --git a/plugins/org.eclipse.xtext/src/org/eclipse/xtext/resource/XtextResource.java b/plugins/org.eclipse.xtext/src/org/eclipse/xtext/resource/XtextResource.java
index <HASH>..<HASH> 100644
--- a/plugins/org.eclipse.xtext/src/org/eclipse/xtext/resource/XtextResource.java
+++ b/plugins/org.eclipse.xtext/src/org/ecl... | [idea][performance] Only relink a model on the modification counter
change, reparsing should be triggered by changing a corresponding xtext
file
Change-Id: I<I>eefbbe<I>c<I>d4e2d<I>e3 |
diff --git a/lib/html/builder.rb b/lib/html/builder.rb
index <HASH>..<HASH> 100644
--- a/lib/html/builder.rb
+++ b/lib/html/builder.rb
@@ -8,6 +8,10 @@ module BBLib
SELF_CLOSING_TAGS.include?(tag.to_s.downcase)
end
+ def self.build(*args, &block)
+ Builder.build(*args, &block)
+ end
+
modu... | Added build method to HTML module. |
diff --git a/test/test_calculating_business_duration.rb b/test/test_calculating_business_duration.rb
index <HASH>..<HASH> 100644
--- a/test/test_calculating_business_duration.rb
+++ b/test/test_calculating_business_duration.rb
@@ -25,6 +25,13 @@ describe "calculating business duration" do
assert_equal 5, sunday.bu... | add tests for inclusive business duration with holidays passed as options |
diff --git a/eZ/Bundle/EzPublishCoreBundle/EventListener/SessionSetDynamicNameListener.php b/eZ/Bundle/EzPublishCoreBundle/EventListener/SessionSetDynamicNameListener.php
index <HASH>..<HASH> 100644
--- a/eZ/Bundle/EzPublishCoreBundle/EventListener/SessionSetDynamicNameListener.php
+++ b/eZ/Bundle/EzPublishCoreBundle/E... | Additional fix for EZP-<I>, Impossible to log in using PHP <I> |
diff --git a/docs/conf.py b/docs/conf.py
index <HASH>..<HASH> 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -92,9 +92,9 @@ author = u'Deren Eaton'
# The short X.Y version.
#import ipyrad
-version = 0.0.65 ##ipyrad.__version__
+version = "0.0.65" ##ipyrad.__version__
# The full version, including alpha/beta/rc t... | 'version' hard coded in conf as str not float |
diff --git a/packages/currencies/tests/index.test.js b/packages/currencies/tests/index.test.js
index <HASH>..<HASH> 100644
--- a/packages/currencies/tests/index.test.js
+++ b/packages/currencies/tests/index.test.js
@@ -117,12 +117,15 @@ test("formatter can change locale", () => {
expect(
formatCurrencyUnit(getF... | comment out tests for now because node.js need conf for Intl |
diff --git a/lib/praxis-blueprints/blueprint.rb b/lib/praxis-blueprints/blueprint.rb
index <HASH>..<HASH> 100644
--- a/lib/praxis-blueprints/blueprint.rb
+++ b/lib/praxis-blueprints/blueprint.rb
@@ -337,11 +337,11 @@ module Praxis
if value.respond_to?(:validating) # really, it's a thing with sub-attributes
... | Use `.concat` to appease the cops a little bit. |
diff --git a/frontend/client/src/model.js b/frontend/client/src/model.js
index <HASH>..<HASH> 100644
--- a/frontend/client/src/model.js
+++ b/frontend/client/src/model.js
@@ -42,6 +42,18 @@ Espo.define('model', [], function () {
Dep.prototype.initialize.call(this);
},
+ set: function (key... | fix id in model.set |
diff --git a/application/briefkasten/tests/test_dropbox.py b/application/briefkasten/tests/test_dropbox.py
index <HASH>..<HASH> 100644
--- a/application/briefkasten/tests/test_dropbox.py
+++ b/application/briefkasten/tests/test_dropbox.py
@@ -49,8 +49,8 @@ def test_dropbox_is_created_if_it_does_not_exist():
@fixtu... | add_dropbox now requires a pre-computed id |
diff --git a/xblock/fields.py b/xblock/fields.py
index <HASH>..<HASH> 100644
--- a/xblock/fields.py
+++ b/xblock/fields.py
@@ -438,7 +438,7 @@ class Dict(Field):
if value is None or isinstance(value, dict):
return value
else:
- raise TypeError('Value stored in a Dict must be No... | Provide more information in some exceptions. |
diff --git a/src/node_modules/base/model.js b/src/node_modules/base/model.js
index <HASH>..<HASH> 100644
--- a/src/node_modules/base/model.js
+++ b/src/node_modules/base/model.js
@@ -6,9 +6,7 @@ var Model = require('ampersand-model');
module.exports = Model.extend({
- '@type': "Base",
-
- typeAttribute: "@type",... | typeAttribute is now the default modelType |
diff --git a/src/xterm.js b/src/xterm.js
index <HASH>..<HASH> 100644
--- a/src/xterm.js
+++ b/src/xterm.js
@@ -1102,9 +1102,8 @@
line = this.lines[row];
out = '';
- if (y === this.y
+ if (this.y === y - (this.ybase - this.ydisp)
&& this.cursorState
- && (this.yd... | Draw cursor at correct position when scrolling
Fixes #<I> |
diff --git a/ctd/ctd.py b/ctd/ctd.py
index <HASH>..<HASH> 100644
--- a/ctd/ctd.py
+++ b/ctd/ctd.py
@@ -12,6 +12,8 @@
# obs: New constructors and methods for pandas DataFrame and Series.
#
+# Standard library.
+import warnings
# Scientific stack.
import numpy as np
@@ -179,9 +181,9 @@ def from_cnv(fname, compres... | Using warnings instead of print statements to show alerts.
Fixed astype bug. |
diff --git a/Gruntfile.js b/Gruntfile.js
index <HASH>..<HASH> 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -8,4 +8,5 @@ module.exports = function(grunt) {
});
grunt.loadNpmTasks('grunt-fh-build');
+ grunt.registerTask('default', ['fh:default']);
}; | [task]:RHMAP-<I> - Add default task which is missing |
diff --git a/lxd/backup/backup_instance.go b/lxd/backup/backup_instance.go
index <HASH>..<HASH> 100644
--- a/lxd/backup/backup_instance.go
+++ b/lxd/backup/backup_instance.go
@@ -5,6 +5,7 @@ import (
"strings"
"time"
+ "github.com/lxc/lxd/lxd/operations"
"github.com/lxc/lxd/lxd/project"
"github.com/lxc/lxd/lx... | lxd/backup/backup/instance: expose instance interface |
diff --git a/src/Client.php b/src/Client.php
index <HASH>..<HASH> 100644
--- a/src/Client.php
+++ b/src/Client.php
@@ -180,20 +180,22 @@ final class Client
*/
public function publish(string $uri, $obs, array $options = []): DisposableInterface
{
- $obs = $obs instanceof Observable ? $obs : Observ... | Only subscribe onNext of websocket in pusblish |
diff --git a/salt/cloud/clouds/vmware.py b/salt/cloud/clouds/vmware.py
index <HASH>..<HASH> 100644
--- a/salt/cloud/clouds/vmware.py
+++ b/salt/cloud/clouds/vmware.py
@@ -1903,6 +1903,9 @@ def list_snapshots(kwargs=None, call=None):
return {vm["name"]: _get_snapshots(vm["snapshot"].rootSnapshotList)}
... | Update vmware.py
if the vmname does't have any snapshot,it will return all snapshots on all vm that with snapshots. but it should return none.fix it |
diff --git a/tests/test_sharding.py b/tests/test_sharding.py
index <HASH>..<HASH> 100644
--- a/tests/test_sharding.py
+++ b/tests/test_sharding.py
@@ -14,7 +14,7 @@ logger = logging.getLogger(__name__)
import tempfile
-from lib import set_storage
+from lib import set_storage, cleanup_storage
from lib.shards impor... | use cleanup_storage function instead of sh.cleanup in tearDown |
diff --git a/matterclient/matterclient.go b/matterclient/matterclient.go
index <HASH>..<HASH> 100644
--- a/matterclient/matterclient.go
+++ b/matterclient/matterclient.go
@@ -817,9 +817,14 @@ func (m *MMClient) StatusLoop() {
backoff = time.Second * 60
case <-time.After(time.Second * 5):
if retries > 3 {
... | Break when re-login fails (mattermost) |
diff --git a/src/test/java/io/nats/client/NatsTestServer.java b/src/test/java/io/nats/client/NatsTestServer.java
index <HASH>..<HASH> 100644
--- a/src/test/java/io/nats/client/NatsTestServer.java
+++ b/src/test/java/io/nats/client/NatsTestServer.java
@@ -165,6 +165,8 @@ public class NatsTestServer implements AutoClosea... | Added illegalstate exception when test server can't run |
diff --git a/lib/cramp/action.rb b/lib/cramp/action.rb
index <HASH>..<HASH> 100644
--- a/lib/cramp/action.rb
+++ b/lib/cramp/action.rb
@@ -112,7 +112,7 @@ module Cramp
end
def websockets_protocol_10?
- [8, 9, 10].include?(@env['HTTP_SEC_WEBSOCKET_VERSION'].to_i)
+ [7, 8, 9, 10].include?(@env['HTTP... | Firefox 6 websockets support |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -68,11 +68,6 @@ setup_requires = [
install_requires = [
'Flask>=0.11.1',
- # "requests" has hard version range dependency on "idna" and "urllib3"
- # Every time "idna" and "urllib3" are updated, installation brea... | installation: remove requests-related pins |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.