diff stringlengths 65 26.7k | message stringlengths 7 9.92k |
|---|---|
diff --git a/includes/common/list-table-base.php b/includes/common/list-table-base.php
index <HASH>..<HASH> 100644
--- a/includes/common/list-table-base.php
+++ b/includes/common/list-table-base.php
@@ -162,6 +162,15 @@ class WP_Event_Calendar_List_Table extends WP_List_Table {
protected $item_end = '';
/**
+ * ... | Add support for item_days & multi-day row. |
diff --git a/authentise_services/model.py b/authentise_services/model.py
index <HASH>..<HASH> 100644
--- a/authentise_services/model.py
+++ b/authentise_services/model.py
@@ -18,7 +18,7 @@ class Model(object):
if path:
self.upload_model(path)
elif model_uri:
- self.get_model_st... | fix a call to an old method |
diff --git a/cluster/manager.go b/cluster/manager.go
index <HASH>..<HASH> 100644
--- a/cluster/manager.go
+++ b/cluster/manager.go
@@ -392,8 +392,8 @@ func (c *ClusterManager) initNodeInCluster(
}
if nodeInitialized {
- dlog.Errorf(ErrNodeDecommissioned.Error())
- return ErrNodeDecommissioned
+ dlog.Errorf(Err... | If node is initialized already, return appropriate error. |
diff --git a/lib/xpi.js b/lib/xpi.js
index <HASH>..<HASH> 100644
--- a/lib/xpi.js
+++ b/lib/xpi.js
@@ -22,7 +22,6 @@ function xpi (manifest, options) {
var cwd = process.cwd();
var xpiName = (manifest.name || "jetpack") + ".xpi";
var xpiPath = join(cwd, xpiName);
- var buildOptions = createBuildOptions(option... | Remove extra createBuildOptions for now |
diff --git a/blueflood-core/src/main/java/com/rackspacecloud/blueflood/service/RollupService.java b/blueflood-core/src/main/java/com/rackspacecloud/blueflood/service/RollupService.java
index <HASH>..<HASH> 100644
--- a/blueflood-core/src/main/java/com/rackspacecloud/blueflood/service/RollupService.java
+++ b/blueflood-... | fix refactor typo in property name. |
diff --git a/blockstack/lib/nameset/virtualchain_hooks.py b/blockstack/lib/nameset/virtualchain_hooks.py
index <HASH>..<HASH> 100644
--- a/blockstack/lib/nameset/virtualchain_hooks.py
+++ b/blockstack/lib/nameset/virtualchain_hooks.py
@@ -175,6 +175,7 @@ def get_db_state( disposition=DISPOSITION_RO ):
log.error... | justify why we check lastblock when we open the db |
diff --git a/cellbase-mongodb/src/main/java/org/opencb/cellbase/mongodb/loader/MongoDBCellBaseLoader.java b/cellbase-mongodb/src/main/java/org/opencb/cellbase/mongodb/loader/MongoDBCellBaseLoader.java
index <HASH>..<HASH> 100644
--- a/cellbase-mongodb/src/main/java/org/opencb/cellbase/mongodb/loader/MongoDBCellBaseLoad... | Load now reads database 'host' from configuration file |
diff --git a/import_export/widgets.py b/import_export/widgets.py
index <HASH>..<HASH> 100644
--- a/import_export/widgets.py
+++ b/import_export/widgets.py
@@ -295,7 +295,7 @@ class JSONWidget(Widget):
class ForeignKeyWidget(Widget):
"""
Widget for a ``ForeignKey`` field which looks up a related model using
-... | Typo fix in widgets.py |
diff --git a/test/test_object_dispatch.py b/test/test_object_dispatch.py
index <HASH>..<HASH> 100644
--- a/test/test_object_dispatch.py
+++ b/test/test_object_dispatch.py
@@ -2,11 +2,31 @@
from __future__ import unicode_literals
-from sample import function # , Simple, CallableShallow, CallableDeep, CallableMixed... | Stub tests that actually test things. |
diff --git a/src/main/java/eu/hansolo/tilesfx/skins/StockTileSkin.java b/src/main/java/eu/hansolo/tilesfx/skins/StockTileSkin.java
index <HASH>..<HASH> 100644
--- a/src/main/java/eu/hansolo/tilesfx/skins/StockTileSkin.java
+++ b/src/main/java/eu/hansolo/tilesfx/skins/StockTileSkin.java
@@ -417,10 +417,10 @@ public clas... | Fixed minor problem related to linewidth in StockTileSkin |
diff --git a/config/routes.rb b/config/routes.rb
index <HASH>..<HASH> 100644
--- a/config/routes.rb
+++ b/config/routes.rb
@@ -1,7 +1,10 @@
ClientManager::Engine.routes.draw do
root to: 'users#index'
get 'login', to: 'sessions#login'
+ get 'logout', to: 'sessions#logout'
post 'login_attempt', to: 'sessions#l... | Add routes for password change and logging out |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -10,7 +10,7 @@ sentence_end = readme_contents.find('.', parastart)
setup(
name='cluster',
- version='1.2.2',
+ version=open('cluster/version.txt').read().strip(),
author='Michel Albert',
author_email='m... | Aligning version in setup.py with package version. |
diff --git a/lib/stupidedi/config.rb b/lib/stupidedi/config.rb
index <HASH>..<HASH> 100644
--- a/lib/stupidedi/config.rb
+++ b/lib/stupidedi/config.rb
@@ -109,6 +109,7 @@ module Stupidedi
x.register("005010X220", "BE", "834") { Stupidedi::Guides::FiftyTen::X220::BE834 }
x.register("005010X221",... | Add HC<I>I reference to Configuration.hippa constructor |
diff --git a/psamm/commands/tmfa.py b/psamm/commands/tmfa.py
index <HASH>..<HASH> 100644
--- a/psamm/commands/tmfa.py
+++ b/psamm/commands/tmfa.py
@@ -336,9 +336,7 @@ def make_tmfa_problem(mm_irreversible, solver):
solver: linear programming library to use.
"""
prob = solver.create_problem()
- pro... | Removed obsolete solver settings in tmfa.py |
diff --git a/collector/suite_test.go b/collector/suite_test.go
index <HASH>..<HASH> 100644
--- a/collector/suite_test.go
+++ b/collector/suite_test.go
@@ -43,4 +43,5 @@ func (s *S) TearDownSuite(c *C) {
func (s *S) TearDownTest(c *C) {
_, err := db.Session.Apps().RemoveAll(nil)
c.Assert(err, IsNil)
+ s.provisioner... | collector/tests: Reset FakeProvisioner on TearDownTest |
diff --git a/src/com/opencms/workplace/CmsXmlLanguageFileContent.java b/src/com/opencms/workplace/CmsXmlLanguageFileContent.java
index <HASH>..<HASH> 100644
--- a/src/com/opencms/workplace/CmsXmlLanguageFileContent.java
+++ b/src/com/opencms/workplace/CmsXmlLanguageFileContent.java
@@ -159,10 +159,9 @@ public class Cms... | Removed unnecessary call of readIncludeFile that caused InstantiationExceptions. |
diff --git a/sixpack/sixpack-web.py b/sixpack/sixpack-web.py
index <HASH>..<HASH> 100644
--- a/sixpack/sixpack-web.py
+++ b/sixpack/sixpack-web.py
@@ -1,7 +1,7 @@
from flask import Flask, render_template, abort, request, url_for, redirect
from flask.ext.seasurf import SeaSurf
-import db
+from db import REDIS
from ... | only need REDIS from db |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -1,10 +1,10 @@
+# -*- coding: utf-8 -*-
from distutils.core import setup
setup(
name='hepdata-converter',
version='0.1',
- install_requires=['pyyaml'],
- tests_requires=[],
+ requires=['pyyaml'],
pa... | Fixed setup.py, now works correctly |
diff --git a/DrdPlus/Tests/RollsOn/QualityAndSuccess/SimpleRollOnSuccessTest.php b/DrdPlus/Tests/RollsOn/QualityAndSuccess/SimpleRollOnSuccessTest.php
index <HASH>..<HASH> 100644
--- a/DrdPlus/Tests/RollsOn/QualityAndSuccess/SimpleRollOnSuccessTest.php
+++ b/DrdPlus/Tests/RollsOn/QualityAndSuccess/SimpleRollOnSuccessTe... | An inner test method can be accessed by its descendants |
diff --git a/troposphere/cloudwatch.py b/troposphere/cloudwatch.py
index <HASH>..<HASH> 100644
--- a/troposphere/cloudwatch.py
+++ b/troposphere/cloudwatch.py
@@ -108,3 +108,29 @@ class Dashboard(AWSObject):
if name in self.properties:
dashboard_body = self.properties.get(name)
self.p... | Add Cloudwatch AnomalyDetector resource (#<I>) |
diff --git a/fluent_blogs/base_models.py b/fluent_blogs/base_models.py
index <HASH>..<HASH> 100644
--- a/fluent_blogs/base_models.py
+++ b/fluent_blogs/base_models.py
@@ -11,7 +11,7 @@ from fluent_blogs.urlresolvers import blog_reverse
from fluent_blogs.models.managers import EntryManager, TranslatableEntryManager
fr... | Added the ContentItemRelation() to the blog entry.
This makes sure all deleted ContentItem objects are also visible in the admin page. |
diff --git a/src/style_manager/index.js b/src/style_manager/index.js
index <HASH>..<HASH> 100644
--- a/src/style_manager/index.js
+++ b/src/style_manager/index.js
@@ -281,8 +281,6 @@ module.exports = () => {
if (!rule) {
rule = cssC.add(valid, state, deviceW);
- rule.setStyle(model.... | Avoid moving styles from Component to Rules. Fixes #<I> |
diff --git a/src/Shell/Task/TemplateTask.php b/src/Shell/Task/TemplateTask.php
index <HASH>..<HASH> 100644
--- a/src/Shell/Task/TemplateTask.php
+++ b/src/Shell/Task/TemplateTask.php
@@ -47,9 +47,7 @@ class TemplateTask extends Shell {
/**
* Get view instance
*
- * @param string $viewClass View class name or null ... | remove unused params
the exception isn't thrown either by this method |
diff --git a/laravel/config/filesystems.php b/laravel/config/filesystems.php
index <HASH>..<HASH> 100644
--- a/laravel/config/filesystems.php
+++ b/laravel/config/filesystems.php
@@ -61,7 +61,7 @@ return [
'secret' => env('AWS_SECRET_ACCESS_KEY'),
'region' => env('AWS_DEFAULT_REGION'),
... | Update endpoint for aws configuration. |
diff --git a/lib/emcee/document.rb b/lib/emcee/document.rb
index <HASH>..<HASH> 100644
--- a/lib/emcee/document.rb
+++ b/lib/emcee/document.rb
@@ -16,8 +16,8 @@ module Emcee
end
def to_s
- output = @doc.at("body").children
- output.to_s.lstrip
+ body = @doc.at("body").children
+ body.to_... | Rename variable in `to_s` method of Document |
diff --git a/lib/pdk/util.rb b/lib/pdk/util.rb
index <HASH>..<HASH> 100644
--- a/lib/pdk/util.rb
+++ b/lib/pdk/util.rb
@@ -32,7 +32,9 @@ module PDK
#
# @return [String] The temporary directory path.
def make_tmpdir_name(base)
- Dir::Tmpname.make_tmpname(File.join(Dir.tmpdir, base), nil)
+ t = T... | (PDK-<I>) Make PDK compatible with Ruby <I> |
diff --git a/lib/rb-kqueue/native/flags.rb b/lib/rb-kqueue/native/flags.rb
index <HASH>..<HASH> 100644
--- a/lib/rb-kqueue/native/flags.rb
+++ b/lib/rb-kqueue/native/flags.rb
@@ -48,6 +48,13 @@ module KQueue
NOTE_RENAME = 0x00000020 # Vnode was renamed
NOTE_REVOKE = 0x00000040 # Vnode access was revoked
... | Add flags for process-watching. |
diff --git a/runner/steps.js b/runner/steps.js
index <HASH>..<HASH> 100644
--- a/runner/steps.js
+++ b/runner/steps.js
@@ -29,9 +29,9 @@ var browsers = require('./browsers');
// We prefer serving local assets over bower assets.
var PACKAGE_ROOT = path.resolve(__dirname, '..');
-var SERVE_STATIC = {
- '/web-co... | Match anything that looks like browser.js or environment.js |
diff --git a/cmd/server/main.go b/cmd/server/main.go
index <HASH>..<HASH> 100644
--- a/cmd/server/main.go
+++ b/cmd/server/main.go
@@ -149,6 +149,13 @@ func main() {
return err
}
+ cf := &logrus.TextFormatter{
+ TimestampFormat: "2006-01-02 15:04:05.000000000Z07:00",
+ FullTimestamp: true,
+ }
+
+ log... | Add timestamps to logs |
diff --git a/lib/higml/parser.rb b/lib/higml/parser.rb
index <HASH>..<HASH> 100644
--- a/lib/higml/parser.rb
+++ b/lib/higml/parser.rb
@@ -83,9 +83,9 @@ module Higml
def type
case @stripped_source[0]
- when VALUE_INDICATOR: :value
- when IMPORT_INDICATOR: :import
- when COMM... | Syntax changed to support <I> |
diff --git a/openquake/calculators/ucerf_event_based.py b/openquake/calculators/ucerf_event_based.py
index <HASH>..<HASH> 100644
--- a/openquake/calculators/ucerf_event_based.py
+++ b/openquake/calculators/ucerf_event_based.py
@@ -336,7 +336,7 @@ def compute_losses(ssm, src_filter, param, riskmodel, monitor):
res ... | Renaming [skip hazardlib] |
diff --git a/zinnia/tests.py b/zinnia/tests.py
index <HASH>..<HASH> 100644
--- a/zinnia/tests.py
+++ b/zinnia/tests.py
@@ -427,9 +427,12 @@ class ZinniaViewsTestCase(TestCase):
response = self.client.get('/2010/01/01/my-test-entry/')
self.assertEquals(response.status_code, 404)
+ entr... | testing entry template overriding in entry_detail view |
diff --git a/go/coredns/plugin/pfdns/pfdns.go b/go/coredns/plugin/pfdns/pfdns.go
index <HASH>..<HASH> 100644
--- a/go/coredns/plugin/pfdns/pfdns.go
+++ b/go/coredns/plugin/pfdns/pfdns.go
@@ -130,6 +130,10 @@ func (pf *pfdns) RefreshPfconfig(ctx context.Context) {
// ServeDNS implements the middleware.Handler interface... | read lock in pfdns |
diff --git a/osmdroid-android/src/main/java/org/osmdroid/views/overlay/compass/CompassOverlay.java b/osmdroid-android/src/main/java/org/osmdroid/views/overlay/compass/CompassOverlay.java
index <HASH>..<HASH> 100644
--- a/osmdroid-android/src/main/java/org/osmdroid/views/overlay/compass/CompassOverlay.java
+++ b/osmdroi... | Removed some debug lines that I accidentally left in. |
diff --git a/openquake/commands/dbserver.py b/openquake/commands/dbserver.py
index <HASH>..<HASH> 100644
--- a/openquake/commands/dbserver.py
+++ b/openquake/commands/dbserver.py
@@ -49,10 +49,12 @@ def dbserver(cmd, dbhostport=None,
else:
print('dbserver already running')
elif cmd == 'restar... | Mark oq dbserver restart as broken
Former-commit-id: <I>fbd<I>c<I>da<I>e<I>f<I>ce<I>bbec5b8 |
diff --git a/docs/conf.py b/docs/conf.py
index <HASH>..<HASH> 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -72,7 +72,7 @@ master_doc = 'index'
# General information about the project.
project = 'aiohttp_session'
-copyright = '2015, Andrew Svetlov'
+copyright = '2015,2016 Andrew Svetlov'
author = 'Andrew Svetlov... | Update conf.py
<I> year |
diff --git a/vyper/parser/context.py b/vyper/parser/context.py
index <HASH>..<HASH> 100644
--- a/vyper/parser/context.py
+++ b/vyper/parser/context.py
@@ -103,12 +103,13 @@ class Context:
def make_blockscope(self, blockscope_id):
self.blockscopes.add(blockscope_id)
yield
+
# Remove all v... | feat: release memory upon exit of block scope |
diff --git a/src/Foundation/Console/OptimizeCommand.php b/src/Foundation/Console/OptimizeCommand.php
index <HASH>..<HASH> 100644
--- a/src/Foundation/Console/OptimizeCommand.php
+++ b/src/Foundation/Console/OptimizeCommand.php
@@ -78,7 +78,7 @@ class OptimizeCommand extends Command
*/
protected function comp... | Improve Nova\Console\OptimizeCommand |
diff --git a/java-client/src/main/java/com/canoo/dolphin/client/impl/ClientContextImpl.java b/java-client/src/main/java/com/canoo/dolphin/client/impl/ClientContextImpl.java
index <HASH>..<HASH> 100644
--- a/java-client/src/main/java/com/canoo/dolphin/client/impl/ClientContextImpl.java
+++ b/java-client/src/main/java/co... | Stop pushListening in disconnect() |
diff --git a/treeherder/model/models.py b/treeherder/model/models.py
index <HASH>..<HASH> 100644
--- a/treeherder/model/models.py
+++ b/treeherder/model/models.py
@@ -448,7 +448,7 @@ class ExclusionProfile(models.Model):
return list1, list2
query = None
- for exclusion in self.exclusions.... | Bug <I> - Error adding exclusion profile after update to Django <I>
We were calling select_related on a non-relational field. Only became
an issue with Django <I>. |
diff --git a/tests/conftest.py b/tests/conftest.py
index <HASH>..<HASH> 100644
--- a/tests/conftest.py
+++ b/tests/conftest.py
@@ -37,11 +37,28 @@ from flask_celeryext import FlaskCeleryExt
from invenio_db import db as db_
from invenio_db import InvenioDB
from invenio_pidstore import InvenioPIDStore
+from sqlalchemy... | tests: cascading deletes on PostgreSQL |
diff --git a/swarm-server/src/Server.js b/swarm-server/src/Server.js
index <HASH>..<HASH> 100644
--- a/swarm-server/src/Server.js
+++ b/swarm-server/src/Server.js
@@ -1,4 +1,5 @@
"use strict";
+var fs = require('fs');
var Replica = require('swarm-replica');
var sync = require('swarm-syncable');
var Host = sync.Host... | chore(server): put db into a dir |
diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -79,6 +79,8 @@ MyVirtualMerchant.prototype.doPurchase = function (order, prospect, creditcard,
query.ssl_avs_address = prospect.billing.adress;
query.ssl_avs_zip = prospect.billing.zipcode;
... | More details for transactions (state, zip). |
diff --git a/lib/discordrb/commands/command_bot.rb b/lib/discordrb/commands/command_bot.rb
index <HASH>..<HASH> 100644
--- a/lib/discordrb/commands/command_bot.rb
+++ b/lib/discordrb/commands/command_bot.rb
@@ -150,7 +150,8 @@ module Discordrb::Commands
event.respond @attributes[:command_doesnt_exist_message].... | Check for required_permissions? in execute_command |
diff --git a/lnd_test.go b/lnd_test.go
index <HASH>..<HASH> 100644
--- a/lnd_test.go
+++ b/lnd_test.go
@@ -1448,7 +1448,7 @@ func testChannelForceClosure(net *lntest.NetworkHarness, t *harnessTest) {
nodes := []*lntest.HarnessNode{net.Alice, carol}
err = lntest.WaitPredicate(func() bool {
return assertNumActiveH... | test: extend timeouts for WaitPredicate on new integration tests |
diff --git a/app/controllers/errdo/application_controller.rb b/app/controllers/errdo/application_controller.rb
index <HASH>..<HASH> 100644
--- a/app/controllers/errdo/application_controller.rb
+++ b/app/controllers/errdo/application_controller.rb
@@ -1,7 +1,5 @@
module Errdo
class ApplicationController < ActionCont... | Fix issue (bug?) where view helper wouldn't show up in integration test (But would on the server) |
diff --git a/tests/mustacheTest.php b/tests/mustacheTest.php
index <HASH>..<HASH> 100644
--- a/tests/mustacheTest.php
+++ b/tests/mustacheTest.php
@@ -9,6 +9,10 @@ class MustacheSpecTest extends PHPUnit_Framework_TestCase
*/
public function testSpecs($spec)
{
+ if (preg_match('/(lambdas|delimiter... | skip tests on lightncandy none supported features |
diff --git a/workbench/clients/pe_indexer.py b/workbench/clients/pe_indexer.py
index <HASH>..<HASH> 100644
--- a/workbench/clients/pe_indexer.py
+++ b/workbench/clients/pe_indexer.py
@@ -64,6 +64,10 @@ def run():
print 'Probably using a Stub Indexer, if you want an ELS Indexer see the readme'
+import pytes... | putting xfail on the indexer clients until we can figure out when travis ELS is now failing |
diff --git a/src/filesystem/impls/appshell/AppshellFileSystem.js b/src/filesystem/impls/appshell/AppshellFileSystem.js
index <HASH>..<HASH> 100644
--- a/src/filesystem/impls/appshell/AppshellFileSystem.js
+++ b/src/filesystem/impls/appshell/AppshellFileSystem.js
@@ -233,13 +233,30 @@ define(function (require, exports, ... | Execute read and stat calls in parallel in AppshellFileSystem.readFile, resulting in a ~4-5% (><I>ms) speedup for Brackets-sized find-in-files queries |
diff --git a/monolith/__init__.py b/monolith/__init__.py
index <HASH>..<HASH> 100644
--- a/monolith/__init__.py
+++ b/monolith/__init__.py
@@ -1,7 +1,7 @@
"""
monolith is an argparse based command line interface framework
"""
-VERSION = (0, 1, 0)
+VERSION = (0, 1, 1)
__version__ = '.'.join((str(each) for each in ... | Bumped version to <I> |
diff --git a/fermipy/castro.py b/fermipy/castro.py
index <HASH>..<HASH> 100644
--- a/fermipy/castro.py
+++ b/fermipy/castro.py
@@ -1197,6 +1197,11 @@ class TSCube(object):
self._norm_type = norm_type
@property
+ def nvals(self):
+ """Return the number of values in the tscube"""
+ return... | Added unit checking when create CastroData from FITS files |
diff --git a/media/boom/js/boom/page/settings.js b/media/boom/js/boom/page/settings.js
index <HASH>..<HASH> 100644
--- a/media/boom/js/boom/page/settings.js
+++ b/media/boom/js/boom/page/settings.js
@@ -306,7 +306,7 @@ boomPage.prototype.childsettings = function() {
page.saveSettings(url, $("form.b-form-settin... | Bugfix: child page manual ordering not saving |
diff --git a/test_duct.py b/test_duct.py
index <HASH>..<HASH> 100644
--- a/test_duct.py
+++ b/test_duct.py
@@ -151,9 +151,10 @@ def test_nesting():
def test_cwd():
# Test cwd at both the top level and the command level, and that either can
- # be a pathlib Path.
- tmpdir = tempfile.mkdtemp()
- another ... | handle temp dir symlinks for tests on OSX |
diff --git a/go/vt/mysqlctl/split.go b/go/vt/mysqlctl/split.go
index <HASH>..<HASH> 100644
--- a/go/vt/mysqlctl/split.go
+++ b/go/vt/mysqlctl/split.go
@@ -222,12 +222,15 @@ func (mysqld *Mysqld) CreateSplitSnapshot(dbName, keyName string, startKey, endK
return
}
+ // clean out and start fresh
+ relog.Info("remov... | Removing all old snapshots when starting a multisnapshot. To have enough space to go on. |
diff --git a/java/server/src/org/openqa/selenium/remote/server/handler/internal/ArgumentConverter.java b/java/server/src/org/openqa/selenium/remote/server/handler/internal/ArgumentConverter.java
index <HASH>..<HASH> 100644
--- a/java/server/src/org/openqa/selenium/remote/server/handler/internal/ArgumentConverter.java
+... | Convert RemoteWebElements decoded from JSON to "known elements".
As of commit e<I>b<I>dc<I>b<I>ecf9c7a9bbe<I>a<I>b<I>ad, the decoded JSON parameters may include a WebElement. It's necessary to convert the element when a RemoteWebElement is passed as the "id" param to SwitchToFrame.
Fixes #<I>. |
diff --git a/pkg/services/alerting/datasources/backends.go b/pkg/services/alerting/datasources/backends.go
index <HASH>..<HASH> 100644
--- a/pkg/services/alerting/datasources/backends.go
+++ b/pkg/services/alerting/datasources/backends.go
@@ -2,9 +2,16 @@ package graphite
import (
"fmt"
+
m "github.com/grafana/g... | feat(alerting): add interface for alert backend |
diff --git a/src/main/java/org/fit/layout/cssbox/BoxNode.java b/src/main/java/org/fit/layout/cssbox/BoxNode.java
index <HASH>..<HASH> 100644
--- a/src/main/java/org/fit/layout/cssbox/BoxNode.java
+++ b/src/main/java/org/fit/layout/cssbox/BoxNode.java
@@ -14,6 +14,7 @@ import java.util.List;
import java.util.Map;
impo... | Update to the new jStyleParser color API |
diff --git a/src/Snowflake/ImportBase.php b/src/Snowflake/ImportBase.php
index <HASH>..<HASH> 100644
--- a/src/Snowflake/ImportBase.php
+++ b/src/Snowflake/ImportBase.php
@@ -80,8 +80,6 @@ abstract class ImportBase implements ImportInterface
);
}
- $this->dropTable($stagingTab... | snowflake: removed manual drop of temporary table |
diff --git a/tornado/test/process_test.py b/tornado/test/process_test.py
index <HASH>..<HASH> 100644
--- a/tornado/test/process_test.py
+++ b/tornado/test/process_test.py
@@ -179,6 +179,9 @@ class SubprocessTest(AsyncTestCase):
self.assertEqual(data, b"\n")
def test_stderr(self):
+ # This test is... | Skip another subprocess test that is flaky on twisted |
diff --git a/src/python/pants/bin/pants_exe.py b/src/python/pants/bin/pants_exe.py
index <HASH>..<HASH> 100644
--- a/src/python/pants/bin/pants_exe.py
+++ b/src/python/pants/bin/pants_exe.py
@@ -56,6 +56,8 @@ def _help(version, root_dir):
print()
print('Available subcommands:\n\t%s' % '\n\t'.join(_find_all_comman... | Pants help text += link to web site |
diff --git a/src/Spryker/Console/InstallConsoleCommand.php b/src/Spryker/Console/InstallConsoleCommand.php
index <HASH>..<HASH> 100644
--- a/src/Spryker/Console/InstallConsoleCommand.php
+++ b/src/Spryker/Console/InstallConsoleCommand.php
@@ -234,7 +234,7 @@ class InstallConsoleCommand extends Command
*/
pro... | PS-<I> Use staging/live env configuration by default (production) |
diff --git a/views/badge.py b/views/badge.py
index <HASH>..<HASH> 100644
--- a/views/badge.py
+++ b/views/badge.py
@@ -104,18 +104,25 @@ def doi_badge(doi):
if pid is None:
return abort(404)
- return badge(doi)
+ style = request.args.get('style', None)
+
+ return badge(doi, style)
@bluepri... | github: activate badge style support for DOI
* Adds support for `style` while generating a badge for
specific DOI. (addresses #<I>). |
diff --git a/bika/lims/content/bikasetup.py b/bika/lims/content/bikasetup.py
index <HASH>..<HASH> 100644
--- a/bika/lims/content/bikasetup.py
+++ b/bika/lims/content/bikasetup.py
@@ -302,6 +302,7 @@ schema = BikaFolderSchema.copy() + Schema((
{'portal_type': 'ReferenceSample', 'prefix': 'RS', 'paddi... | Add Pricelist prefix, and fix type error in VAT calculation |
diff --git a/pyes/queryset.py b/pyes/queryset.py
index <HASH>..<HASH> 100644
--- a/pyes/queryset.py
+++ b/pyes/queryset.py
@@ -332,7 +332,7 @@ class QuerySet(object):
and returning the created object.
"""
obj = self.model(**kwargs)
- meta = obj.get_meta()
+ meta = obj.get_meta()
... | fixed inconsistent use to QuerySet
it would raise an Error under python<I>
the line <I>:
meta = obj.get_meta()
^
TabError: inconsistent use of tabs and spaces in indentation |
diff --git a/example/app.js b/example/app.js
index <HASH>..<HASH> 100644
--- a/example/app.js
+++ b/example/app.js
@@ -103,10 +103,12 @@ dom.downloadMap[1].onclick = function () {
dom.uploadMap[0].onchange = function (event) {
uploadMap(map, event);
+ dom.uploadMap[0].value = "";
};
dom.uploadMap[1].onch... | [fix] reset file input value after map upload |
diff --git a/public/js/source/custom-images-grifus-admin.js b/public/js/source/custom-images-grifus-admin.js
index <HASH>..<HASH> 100644
--- a/public/js/source/custom-images-grifus-admin.js
+++ b/public/js/source/custom-images-grifus-admin.js
@@ -23,8 +23,8 @@
url: eliasis.ajax_url,
type: "pos... | Updated to <I> version |
diff --git a/packages/server-web/src/client/store.js b/packages/server-web/src/client/store.js
index <HASH>..<HASH> 100644
--- a/packages/server-web/src/client/store.js
+++ b/packages/server-web/src/client/store.js
@@ -3,11 +3,15 @@ import { replay } from "@todastic/storage-events";
export const store = { todos: [], i... | Only process new events. Fix #<I> |
diff --git a/lib/aws/xml/parser.rb b/lib/aws/xml/parser.rb
index <HASH>..<HASH> 100644
--- a/lib/aws/xml/parser.rb
+++ b/lib/aws/xml/parser.rb
@@ -73,15 +73,11 @@ module Aws
end
def member(shape, raw)
- case shape
- when Seahorse::Model::Shapes::StructureShape
- structure(shape, r... | Xml::Parser no longer does type checking by class, now uses the Shape#type property. |
diff --git a/source/core/oxmodule.php b/source/core/oxmodule.php
index <HASH>..<HASH> 100644
--- a/source/core/oxmodule.php
+++ b/source/core/oxmodule.php
@@ -247,7 +247,7 @@ class oxModule extends oxSuperCfg
}
} else {
$aDisabledModules = (array) $this->getConfig()->getCo... | in method isActive changed check from checking variable is array to checking if it is not empty |
diff --git a/lib/active_median.rb b/lib/active_median.rb
index <HASH>..<HASH> 100644
--- a/lib/active_median.rb
+++ b/lib/active_median.rb
@@ -5,7 +5,7 @@ require "active_median/version"
module ActiveMedian
def self.create_function
# create median method
- # http://wiki.postgresql.org/wiki/Aggregate_Median
... | Use https url [skip ci] |
diff --git a/loompy/loompy.py b/loompy/loompy.py
index <HASH>..<HASH> 100755
--- a/loompy/loompy.py
+++ b/loompy/loompy.py
@@ -769,7 +769,7 @@ def _create_sparse(filename: str, matrix: np.ndarray, row_attrs: Dict[str, np.nd
raise FileExistsError("Cannot overwrite existing file " + filename)
logging.info("Convertin... | Performance bug when creating from sparse |
diff --git a/src/Domain/Generic/Model.php b/src/Domain/Generic/Model.php
index <HASH>..<HASH> 100644
--- a/src/Domain/Generic/Model.php
+++ b/src/Domain/Generic/Model.php
@@ -40,6 +40,7 @@ abstract class Model implements ModelInterface
* @return $this
*
* @throws IdAlreadyAssignedException if attempti... | Added missing exception to method DocBlock |
diff --git a/hugolib/config.go b/hugolib/config.go
index <HASH>..<HASH> 100644
--- a/hugolib/config.go
+++ b/hugolib/config.go
@@ -585,7 +585,6 @@ func loadDefaultSettingsFor(v *viper.Viper) error {
v.SetDefault("cleanDestinationDir", false)
v.SetDefault("watch", false)
- v.SetDefault("metaDataFormat", "toml")
... | Remove metaDataFormat setting
Not in use anymore. |
diff --git a/ttnctl/cmd/device.go b/ttnctl/cmd/device.go
index <HASH>..<HASH> 100644
--- a/ttnctl/cmd/device.go
+++ b/ttnctl/cmd/device.go
@@ -138,6 +138,10 @@ var devicesInfoCmd = &cobra.Command{
fmt.Println("Dynamic device:")
fmt.Println()
+ fmt.Printf(" AppEUI: %X\n", appEUI)
+ fmt.Printf(" ... | [ttnctl] Print AppEUI for OTAA devices |
diff --git a/paging_result.go b/paging_result.go
index <HASH>..<HASH> 100644
--- a/paging_result.go
+++ b/paging_result.go
@@ -48,6 +48,8 @@ func newPagingResult(session *Session, res Result) (*PagingResult, error) {
return nil, err
}
+ paging.UsageInfo = res.UsageInfo()
+
if paging.Paging != nil {
pr.previ... | fix #<I> paging.UsageInfo is not initialized in the first page |
diff --git a/pythonforandroid/bdistapk.py b/pythonforandroid/bdistapk.py
index <HASH>..<HASH> 100644
--- a/pythonforandroid/bdistapk.py
+++ b/pythonforandroid/bdistapk.py
@@ -87,7 +87,8 @@ class BdistAPK(Command):
'that.')
bdist_dir = 'build/bdist.android-{}'.format(self.arch)
- rmt... | Check if bdist_dir exists before removing |
diff --git a/lib/bummr/outdated.rb b/lib/bummr/outdated.rb
index <HASH>..<HASH> 100644
--- a/lib/bummr/outdated.rb
+++ b/lib/bummr/outdated.rb
@@ -8,10 +8,10 @@ module Bummr
def outdated_gems(all_gems: false)
results = []
- options = []
- options << "--strict" unless all_gems
+ options = "... | Fix "no such file or directory" error
- Resolves <URL> |
diff --git a/tests/Unit/File/ImageOptionsTest.php b/tests/Unit/File/ImageOptionsTest.php
index <HASH>..<HASH> 100644
--- a/tests/Unit/File/ImageOptionsTest.php
+++ b/tests/Unit/File/ImageOptionsTest.php
@@ -118,17 +118,17 @@ class ImageOptionsTest extends TestCase
$options = new ImageOptions();
$optio... | Fix tests after PR #<I> |
diff --git a/tohu/v6/spawn_mapping.py b/tohu/v6/spawn_mapping.py
index <HASH>..<HASH> 100644
--- a/tohu/v6/spawn_mapping.py
+++ b/tohu/v6/spawn_mapping.py
@@ -18,5 +18,5 @@ class SpawnMapping:
try:
return self.mapping[g]
except KeyError:
- logger.warning(f"Generator does not oc... | Demote warning to debugging message because this case is expected |
diff --git a/parsl/app/bash.py b/parsl/app/bash.py
index <HASH>..<HASH> 100644
--- a/parsl/app/bash.py
+++ b/parsl/app/bash.py
@@ -70,7 +70,7 @@ def remote_side_bash_executor(func, *args, **kwargs):
returncode = proc.returncode
except subprocess.TimeoutExpired:
- raise pe.AppTimeout("[{}] App exc... | Add units to walltime human readable message (#<I>) |
diff --git a/pymongo/replica_set_connection.py b/pymongo/replica_set_connection.py
index <HASH>..<HASH> 100644
--- a/pymongo/replica_set_connection.py
+++ b/pymongo/replica_set_connection.py
@@ -191,8 +191,6 @@ class ReplicaSetConnection(common.BaseObject):
super(ReplicaSetConnection, self).__init__(**self._... | ReplicaSetConnection.slave_okay is always True PYTHON-<I> |
diff --git a/tests/int/test_int_docker.py b/tests/int/test_int_docker.py
index <HASH>..<HASH> 100644
--- a/tests/int/test_int_docker.py
+++ b/tests/int/test_int_docker.py
@@ -51,7 +51,7 @@ def test_int_docker_git_gem_and_pip_on_mult(helpers):
@pytest.mark.docker
def test_int_docker_pacman_on_arch(helpers):
helpe... | Pin Archlinux tag in Docker tests. |
diff --git a/classes/ValidFormBuilder/SelectGroup.php b/classes/ValidFormBuilder/SelectGroup.php
index <HASH>..<HASH> 100644
--- a/classes/ValidFormBuilder/SelectGroup.php
+++ b/classes/ValidFormBuilder/SelectGroup.php
@@ -65,7 +65,7 @@ class SelectGroup extends Base
{
$strOutput = "<optgroup label=\"{$th... | Fixed an old rendering of optgroups.
Optgroups would not be rendered correctly. |
diff --git a/moco-core/src/main/java/com/github/dreamhead/moco/extractor/CookieRequestExtractor.java b/moco-core/src/main/java/com/github/dreamhead/moco/extractor/CookieRequestExtractor.java
index <HASH>..<HASH> 100644
--- a/moco-core/src/main/java/com/github/dreamhead/moco/extractor/CookieRequestExtractor.java
+++ b/m... | removed unused import in cookie request extractor |
diff --git a/src/renderer/layer/vectorlayer/VectorLayerCanvasRenderer.js b/src/renderer/layer/vectorlayer/VectorLayerCanvasRenderer.js
index <HASH>..<HASH> 100644
--- a/src/renderer/layer/vectorlayer/VectorLayerCanvasRenderer.js
+++ b/src/renderer/layer/vectorlayer/VectorLayerCanvasRenderer.js
@@ -28,7 +28,11 @@ class ... | fix VectorLayerRenderer getImageData error when some geometries have external resources in another domain fix #<I> (#<I>) |
diff --git a/pkg/server/server.go b/pkg/server/server.go
index <HASH>..<HASH> 100644
--- a/pkg/server/server.go
+++ b/pkg/server/server.go
@@ -179,10 +179,10 @@ func (s *Server) Run() (err error) {
}
err := service.Run(s.context)
- // Mark that we are in shutdown mode
- // So no more services are started
... | Registry: Fix service shutdown mode trigger location (#<I>) |
diff --git a/library/src/main/java/com/mikepenz/materialdrawer/Drawer.java b/library/src/main/java/com/mikepenz/materialdrawer/Drawer.java
index <HASH>..<HASH> 100644
--- a/library/src/main/java/com/mikepenz/materialdrawer/Drawer.java
+++ b/library/src/main/java/com/mikepenz/materialdrawer/Drawer.java
@@ -524,7 +524,7 ... | * adjust for new fastadapter adjustments |
diff --git a/src/main/java/org/mariadb/jdbc/CallableProcedureStatement.java b/src/main/java/org/mariadb/jdbc/CallableProcedureStatement.java
index <HASH>..<HASH> 100644
--- a/src/main/java/org/mariadb/jdbc/CallableProcedureStatement.java
+++ b/src/main/java/org/mariadb/jdbc/CallableProcedureStatement.java
@@ -101,6 +10... | [misc] correcting cloning CallableProcedureStatement |
diff --git a/pkg/registry/core/pod/strategy.go b/pkg/registry/core/pod/strategy.go
index <HASH>..<HASH> 100644
--- a/pkg/registry/core/pod/strategy.go
+++ b/pkg/registry/core/pod/strategy.go
@@ -237,7 +237,7 @@ func PodToSelectableFields(pod *api.Pod) fields.Set {
// amount of allocations needed to create the fields.... | Avoid reallocating of map in PodToSelectableFields |
diff --git a/trovebox/http.py b/trovebox/http.py
index <HASH>..<HASH> 100644
--- a/trovebox/http.py
+++ b/trovebox/http.py
@@ -104,7 +104,9 @@ class Http(object):
self._logger.info("============================")
self._logger.info("GET %s" % url)
self._logger.info("---")
- self._logger... | Truncate response logging to <I> characters |
diff --git a/test/test_rpc.py b/test/test_rpc.py
index <HASH>..<HASH> 100644
--- a/test/test_rpc.py
+++ b/test/test_rpc.py
@@ -626,7 +626,7 @@ def test_reply_queue_removed_on_expiry(
@skip_if_no_toxiproxy
-class TestDisconnectedWhileWaitingForReply(object):
+class TestDisconnectedWhileWaitingForReply(object): # p... | pragma: no cover on test we don't expect to run |
diff --git a/app/scripts/tests/components/Block.spec.js b/app/scripts/tests/components/Block.spec.js
index <HASH>..<HASH> 100644
--- a/app/scripts/tests/components/Block.spec.js
+++ b/app/scripts/tests/components/Block.spec.js
@@ -4,7 +4,8 @@ import React from 'react'
import { expect } from 'chai'
import { actions ... | Fix some block related tests; Skip some tests for now, needs to refactor #<I> |
diff --git a/src/fx.js b/src/fx.js
index <HASH>..<HASH> 100644
--- a/src/fx.js
+++ b/src/fx.js
@@ -81,7 +81,7 @@ jQuery.fn.extend({
for ( p in prop ) {
if ( prop[p] == "hide" && hidden || prop[p] == "show" && !hidden )
- return jQuery.isFunction(opt.complete) && opt.complete.call(this);
+ return opt.... | jquery fx: removing 2 unnecessary isFunction calls, options.complete is ALWAYS a function. |
diff --git a/torext/mongodb/dstruct.py b/torext/mongodb/dstruct.py
index <HASH>..<HASH> 100644
--- a/torext/mongodb/dstruct.py
+++ b/torext/mongodb/dstruct.py
@@ -8,6 +8,9 @@ from hashlib import md5
from torext.errors import ValidationError
from bson.objectid import ObjectId
+# TODO change dict building mechanism:
... | add a little comments on dstruct for future ref |
diff --git a/abilian/core/jinjaext.py b/abilian/core/jinjaext.py
index <HASH>..<HASH> 100644
--- a/abilian/core/jinjaext.py
+++ b/abilian/core/jinjaext.py
@@ -6,6 +6,7 @@ from __future__ import absolute_import
from functools import partial
+import lxml.html
from jinja2.ext import Extension
from jinja2 import nod... | deferJS: allow to let <script> tag within deferJS (for editor syntax highlight for example), and remove it when collecting fragment |
diff --git a/lib/Socket.php b/lib/Socket.php
index <HASH>..<HASH> 100644
--- a/lib/Socket.php
+++ b/lib/Socket.php
@@ -66,9 +66,7 @@ class Socket implements Stream {
// Error reporting suppressed since fread() produces a warning if the stream unexpectedly closes.
$data = @\fread($strea... | Remove call to close method from static context |
diff --git a/IDBStore.js b/IDBStore.js
index <HASH>..<HASH> 100644
--- a/IDBStore.js
+++ b/IDBStore.js
@@ -144,6 +144,21 @@
this.store = this.db.createObjectStore(this.storeName, { keyPath: this.keyPath, autoIncrement: this.autoIncrement});
}
+
+ this.indexes.forEach(function(indexData){
+ ... | Check indexes, throw if no name is given |
diff --git a/lib/attachs/console.rb b/lib/attachs/console.rb
index <HASH>..<HASH> 100644
--- a/lib/attachs/console.rb
+++ b/lib/attachs/console.rb
@@ -3,7 +3,7 @@ module Attachs
class << self
def detect_content_type(path)
- run "file -Ib '#{path}'" do |output|
+ run "file -ib '#{path}'" do |... | Fix content type detection for bsd |
diff --git a/volume/devicemapper/stats_test.go b/volume/devicemapper/stats_test.go
index <HASH>..<HASH> 100644
--- a/volume/devicemapper/stats_test.go
+++ b/volume/devicemapper/stats_test.go
@@ -11,7 +11,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
-/... | only run DM stats unit tests on linux |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100755
--- a/setup.py
+++ b/setup.py
@@ -695,7 +695,7 @@ class BuildSupportMacOS(BuildSupport):
PylonConfig = os.path.join(
FrameworkPath,
FrameworkName,
- 'Versions/Current/Resources/Tools/pylon-config.sh'
+ 'Versions/Current/Re... | Fix name of python-config script on macOS. Resolves #<I>. |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.