hash
stringlengths
40
40
diff
stringlengths
131
114k
message
stringlengths
7
980
project
stringlengths
5
67
split
stringclasses
1 value
7427d5942963a56287fb261b015aeac0ecafcea2
diff --git a/builtin_string.go b/builtin_string.go index <HASH>..<HASH> 100644 --- a/builtin_string.go +++ b/builtin_string.go @@ -380,12 +380,7 @@ func builtinString_split(call FunctionCall) Value { split = split[:limit] } - valueArray := make([]Value, len(split)) - for index, value := range split { - val...
made string splits *much* faster
robertkrimen_otto
train
8a702cd8c9e88a3ae2d38b5455d871997834d90c
diff --git a/blade-core/src/main/java/com/hellokaton/blade/mvc/HttpConst.java b/blade-core/src/main/java/com/hellokaton/blade/mvc/HttpConst.java index <HASH>..<HASH> 100644 --- a/blade-core/src/main/java/com/hellokaton/blade/mvc/HttpConst.java +++ b/blade-core/src/main/java/com/hellokaton/blade/mvc/HttpConst.java @@ -8...
:art: improve code struct
lets-blade_blade
train
546ed13563c3530b414d64b5a815c0919ab0513a
diff --git a/stanza/models/tokenize/utils.py b/stanza/models/tokenize/utils.py index <HASH>..<HASH> 100644 --- a/stanza/models/tokenize/utils.py +++ b/stanza/models/tokenize/utils.py @@ -56,14 +56,6 @@ def process_sentence(sentence, mwt_dict=None): i += 1 return sent -def find_token(token, text): - ...
Potentially faster version of find_token
stanfordnlp_stanza
train
5bf0a22e7c85fb6f006ae6bade7b344a07c91552
diff --git a/plugins/PluginHSTS.py b/plugins/PluginHSTS.py index <HASH>..<HASH> 100644 --- a/plugins/PluginHSTS.py +++ b/plugins/PluginHSTS.py @@ -28,10 +28,9 @@ #------------------------------------------------------------------------------- from xml.etree.ElementTree import Element -import socket - +import httpli...
Reworked the HSTS plugin to work with the new sslyze interface. Changed the way SSL is set up and called. Completed the functionality pre testing.
nabla-c0d3_sslyze
train
0782c0de4dff7e43fe6ebc8d30aba7196371d136
diff --git a/code/ReportAdmin.php b/code/ReportAdmin.php index <HASH>..<HASH> 100755 --- a/code/ReportAdmin.php +++ b/code/ReportAdmin.php @@ -214,6 +214,7 @@ class ReportAdmin extends LeftAndMain { } $form->setFormAction($this->Link() . '/EditForm?' . http_build_query($filteredCriteria)); + $form->setTemplate...
ENHANCEMENT: Improved look and feel for report filtering ENHANCEMNT: Added export and print buttons to reports (from r<I>) git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/branches/<I>@<I> <I>b<I>ca-7a2a-<I>-9d3b-<I>d<I>a<I>a9
silverstripe_silverstripe-reports
train
4169724b86f149285bdde72283b0ed7706a7f183
diff --git a/spring-boot-project/spring-boot/src/test/java/org/springframework/boot/web/embedded/netty/NettyReactiveWebServerFactoryTests.java b/spring-boot-project/spring-boot/src/test/java/org/springframework/boot/web/embedded/netty/NettyReactiveWebServerFactoryTests.java index <HASH>..<HASH> 100644 --- a/spring-boot...
Disable test that is flaky due to Reactor Netty problem See gh-<I>
spring-projects_spring-boot
train
483e74cbf8ccef7a24853d2e3e17c342cbbc1e03
diff --git a/lib/index.js b/lib/index.js index <HASH>..<HASH> 100644 --- a/lib/index.js +++ b/lib/index.js @@ -15,16 +15,16 @@ function farfetched(url, options) { function makeHandler(url, options) { - var response = options.response; + var __response = options.response; return { url, respond: fun...
Fix handlers' responses being cached Fixes #3
athaeryn_farfetched
train
adbd8258dce92c4609a94819abba9f22529048ca
diff --git a/test/UserInfoTest.php b/test/UserInfoTest.php index <HASH>..<HASH> 100644 --- a/test/UserInfoTest.php +++ b/test/UserInfoTest.php @@ -43,6 +43,23 @@ class UserInfoTest extends PHPUnit_Framework_TestCase } /** + * @dataProvider sameValueAsProvider + */ + public function testSameValueA...
Improve UserInfo test suite Add more test to validate the behavior of the sameValueAs method with the UserInfo URL part class
thephpleague_uri-manipulations
train
db2ff5af33c879b1c49368e36ee1adc1ec4a9756
diff --git a/CHANGELOG.md b/CHANGELOG.md index <HASH>..<HASH> 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,6 @@ # v4.8.0 * Added: Option to refresh on flush as opposed to flushing at query time +* Added: Graph.getElements - get multiple elements (vertices and edges) with one call * Fixed: Soft delete with...
Added: Graph.getElements - get multiple elements (vertices and edges) with one call
visallo_vertexium
train
ffd9c553fff2e08d227e4444f2d3b9c83c3d8a22
diff --git a/pyghmi/ipmi/private/session.py b/pyghmi/ipmi/private/session.py index <HASH>..<HASH> 100644 --- a/pyghmi/ipmi/private/session.py +++ b/pyghmi/ipmi/private/session.py @@ -1570,6 +1570,15 @@ class Session(object): # For now, skip the checksums since we are in LAN only, # TODO(jbjohnso): if ...
Ignore small packets claiming to be IPMI payload A particular BMC had it's wires crossed and sent a stray SOL packet with the wrong payload type. We can't do anything to correctly process said packet without making a pretty wild assumption about it, so drop it with prejudice. Change-Id: I<I>e<I>a<I>f<I>d<I>cc<I>c3e<...
openstack_pyghmi
train
8a265077a072a6247f0f5a1e29f79b4304ec52e2
diff --git a/sources/scalac/symtab/SourceCompleter.java b/sources/scalac/symtab/SourceCompleter.java index <HASH>..<HASH> 100644 --- a/sources/scalac/symtab/SourceCompleter.java +++ b/sources/scalac/symtab/SourceCompleter.java @@ -39,8 +39,12 @@ public class SourceCompleter extends Type.LazyType { c.fullName()) ...
- Added currentPhase modification
scala_scala
train
9c66d612ad2063d12c1c82aa729abef4e9a7a040
diff --git a/packages/twig/src/tags/render.js b/packages/twig/src/tags/render.js index <HASH>..<HASH> 100644 --- a/packages/twig/src/tags/render.js +++ b/packages/twig/src/tags/render.js @@ -2,6 +2,7 @@ const _ = require('lodash'); const path = require('path'); +const utils = require('@frctl/fractal').utils; /**...
merge objects instead of assign for render tag (#<I>) use _.merge instead of _.assign for deep objects
frctl_fractal
train
9a577f15508ae3c7ea765739245171e4ae0f63d6
diff --git a/lib/notee/helpers/notee_helper.rb b/lib/notee/helpers/notee_helper.rb index <HASH>..<HASH> 100644 --- a/lib/notee/helpers/notee_helper.rb +++ b/lib/notee/helpers/notee_helper.rb @@ -63,24 +63,18 @@ module Notee @posts = Notee::Post.where(user_id: writer.id, status: Notee::STATUS[:published], is_de...
make categories parent - children helper method
maru-u_notee
train
b9876e4710f22a60a9600601852fa798f17f1ecb
diff --git a/org.ektorp.spring/src/main/resources/org/ektorp/spring/xml/couchdb.xsd b/org.ektorp.spring/src/main/resources/org/ektorp/spring/xml/couchdb.xsd index <HASH>..<HASH> 100644 --- a/org.ektorp.spring/src/main/resources/org/ektorp/spring/xml/couchdb.xsd +++ b/org.ektorp.spring/src/main/resources/org/ektorp/spri...
improved docs decreased default heartbeat interval for changes feed to 9 sec
helun_Ektorp
train
4d6026d9bb06319da00e0c34ee56d9b880db2a20
diff --git a/lib/danger_plugin.rb b/lib/danger_plugin.rb index <HASH>..<HASH> 100755 --- a/lib/danger_plugin.rb +++ b/lib/danger_plugin.rb @@ -86,8 +86,8 @@ module Danger # Get start from diff. lineno = first_line.match(/\+(\d+),(\d+)/).captures.first.to_i diff.each_with_object([]) d...
Fix added_lines method returns 1 more line number
ashfurrow_danger-rubocop
train
64014d35d875fe731ba8d0e56448dbb25f12b487
diff --git a/ChangeLog b/ChangeLog index <HASH>..<HASH> 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,6 @@ === Version 0.2.1 * Enhancements + * Added ability to locate div by the contained text * Updated to use selenium-webdriver 2.2.0 * Updated to use watir-webdriver 0.2.8 diff --git a/features/div.feat...
added ability to find divs by the contained text
cheezy_page-object
train
8fb9bc952aa303210cdd5dee30cb8cfc7ddd1c51
diff --git a/src/mg/PAMI/Client/Impl/ClientImpl.php b/src/mg/PAMI/Client/Impl/ClientImpl.php index <HASH>..<HASH> 100644 --- a/src/mg/PAMI/Client/Impl/ClientImpl.php +++ b/src/mg/PAMI/Client/Impl/ClientImpl.php @@ -323,7 +323,7 @@ class ClientImpl implements IClient } else if ($evePos !== false) { ...
client will now check if a response is complete before trying to add an event to it (OriginateResponse issue,when response and events arrive together with same actionid)
marcelog_PAMI
train
32f5055fb438c801bc42bf75e966bdb907733ea1
diff --git a/realtime/shake_event.py b/realtime/shake_event.py index <HASH>..<HASH> 100644 --- a/realtime/shake_event.py +++ b/realtime/shake_event.py @@ -1950,7 +1950,10 @@ class ShakeEvent(QObject): if myCitiesHtmlPath is not None: myCitiesHtml.setUrl(QUrl(myCitiesHtmlPath)) else: - ...
Realtime: dont need to raise an exception if not affected
inasafe_inasafe
train
cf310764d0b41596060164c92b9b4ca4749e3c90
diff --git a/src/Mongator/Extension/templates/Core/QueryDefaultFinders.php.twig b/src/Mongator/Extension/templates/Core/QueryDefaultFinders.php.twig index <HASH>..<HASH> 100644 --- a/src/Mongator/Extension/templates/Core/QueryDefaultFinders.php.twig +++ b/src/Mongator/Extension/templates/Core/QueryDefaultFinders.php.tw...
Accept string in findBy<Reference> It will get automatically transformed to MongoId
mongator_mongator
train
69da1d8880e1bf2d32190ac24005b42eb493cd0c
diff --git a/pdb.py b/pdb.py index <HASH>..<HASH> 100644 --- a/pdb.py +++ b/pdb.py @@ -679,12 +679,12 @@ except for when using the function decorator. Config = self.ConfigFactory class PdbppWithConfig(self.__class__): - def __init__(self, *args): + def __init__(self_withcfg, *a...
Fix backport for bpo-<I> (keeping use_rawinput) (#<I>)
antocuni_pdb
train
45637268655d128d8b2746c27f32c3ec9971d113
diff --git a/hitcpy/version.py b/hitcpy/version.py index <HASH>..<HASH> 100644 --- a/hitcpy/version.py +++ b/hitcpy/version.py @@ -1 +1 @@ -version = "0.1.0" \ No newline at end of file +version = "0.1.1"
Version bump for pypi
htm-community_hitc-py
train
d9f3d622da8c6fcbd212a27245baad55f13ededf
diff --git a/src/http/mock.js b/src/http/mock.js index <HASH>..<HASH> 100644 --- a/src/http/mock.js +++ b/src/http/mock.js @@ -5,6 +5,7 @@ /*#ifndef(UMD)*/ "use strict"; /*global _GPF_HTTP_METHODS*/ // HTTP Methods +/*global _gpfArrayTail*/ // [].slice.call(,1) /*global _gpfHost*/ // Host type /*global _gpfHttpSet...
no-magic-numbers (#<I>)
ArnaudBuchholz_gpf-js
train
c5b246639af3842edac7ad51126841b3c2e0a2aa
diff --git a/calendar-bundle/contao/classes/Calendar.php b/calendar-bundle/contao/classes/Calendar.php index <HASH>..<HASH> 100644 --- a/calendar-bundle/contao/classes/Calendar.php +++ b/calendar-bundle/contao/classes/Calendar.php @@ -161,9 +161,18 @@ class Calendar extends \Frontend // Recurring events if ($...
[Calendar] Correctly display repeated events in the event list (fixes #<I>)
contao_contao
train
9129e074da07bef19173399703ab50df18b90002
diff --git a/ecs/client.go b/ecs/client.go index <HASH>..<HASH> 100644 --- a/ecs/client.go +++ b/ecs/client.go @@ -90,7 +90,9 @@ func (client *Client) Invoke(action string, args interface{}, response interface } statusCode := httpResp.StatusCode - log.Printf("Invoke %s %s %d (%v)", ECSRequestMethod, requestURL, s...
Support AuthorizeSecurityGroup
denverdino_aliyungo
train
49fa53aa969e42270dfa8adf1258c06fbf39e455
diff --git a/spec/components/pickers.js b/spec/components/pickers.js index <HASH>..<HASH> 100644 --- a/spec/components/pickers.js +++ b/spec/components/pickers.js @@ -43,7 +43,7 @@ class PickersTest extends React.Component { <DatePicker label='Formatted Date' - inputFormat={(value) => `${...
Update pickers.js Just like in components/date_picker/readme.md, you need to add 1 to value.getMonth()
react-toolbox_react-toolbox
train
cbb4433432b2c5e962f21d2180f5900b5d37413a
diff --git a/config/trustedproxy.php b/config/trustedproxy.php index <HASH>..<HASH> 100644 --- a/config/trustedproxy.php +++ b/config/trustedproxy.php @@ -19,15 +19,16 @@ return [ /* * To trust one or more specific proxies that connect - * directly to your server, use an array of IP addresses: + * ...
fix styleci and update doc in config file
fideloper_TrustedProxy
train
0df3efd949ba3eac49e562de90a7a6aa795e8fe0
diff --git a/lib/geoengineer/resources/aws/api_gateway/aws_api_gateway_resource.rb b/lib/geoengineer/resources/aws/api_gateway/aws_api_gateway_resource.rb index <HASH>..<HASH> 100644 --- a/lib/geoengineer/resources/aws/api_gateway/aws_api_gateway_resource.rb +++ b/lib/geoengineer/resources/aws/api_gateway/aws_api_gatew...
API Gateway resources should include parent_id in geo_id
coinbase_geoengineer
train
09f0d71fd36460f7595c7def8fef6ccd97c5789e
diff --git a/src/Native5/ConfigurationFactory.php b/src/Native5/ConfigurationFactory.php index <HASH>..<HASH> 100644 --- a/src/Native5/ConfigurationFactory.php +++ b/src/Native5/ConfigurationFactory.php @@ -36,15 +36,10 @@ namespace Native5; * Created : 27-11-2012 * Last Modified : Fri Dec 21 09:11:53 2012 */ -cl...
Corrected class fully qualified name (now within Configuration folder) in ConfigurationFactory.php
native5_native5-sdk-client-php
train
dc5f8cdeb1924efc14e17f171eca9a18177b5dd4
diff --git a/releasedir/git_repo.go b/releasedir/git_repo.go index <HASH>..<HASH> 100644 --- a/releasedir/git_repo.go +++ b/releasedir/git_repo.go @@ -100,5 +100,15 @@ func (r FSGitRepo) MustNotBeDirty(force bool) (bool, error) { } func (r FSGitRepo) isNotGitRepo(stderr string) bool { - return strings.Contains(stde...
Make git repo detection more forgiving Recent git version changed capitalization of the output in `git status`. Relying on speicifc text doesn't seem to be the most sustainable way of detecting repositories anyway, so we now use git commands and file presence to do the detection. [finishes #<I>](<URL>)
cloudfoundry_bosh-cli
train
19e1fcc242d36fb6383da8d5de4f4616335287eb
diff --git a/test/e2e/network/dns_common.go b/test/e2e/network/dns_common.go index <HASH>..<HASH> 100644 --- a/test/e2e/network/dns_common.go +++ b/test/e2e/network/dns_common.go @@ -22,9 +22,9 @@ import ( "strings" "time" + "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" - "k8s.io/api/core...
Remove 'norecurse' flag in dns tests. dnsmasq <I> introduced a change to respond to all norecurse queries with ServFail. This is to prevent cache snooping where an adversary can figure out if a particular hostname has been looked up or not. These tests do not need the norecurse flag, hence removing it.
kubernetes_kubernetes
train
a77acd3302723453a8098243d92467e52f4cebda
diff --git a/cumulusci/tasks/marketing_cloud/api.py b/cumulusci/tasks/marketing_cloud/api.py index <HASH>..<HASH> 100644 --- a/cumulusci/tasks/marketing_cloud/api.py +++ b/cumulusci/tasks/marketing_cloud/api.py @@ -29,7 +29,7 @@ class CreateSubscriberAttribute(BaseMarketingCloudTask): data=envelope.encode(...
rename to _check_soap_response
SFDO-Tooling_CumulusCI
train
245e83fce5278b369af2850dc251a7cbae9f7c05
diff --git a/bumpversion/__init__.py b/bumpversion/__init__.py index <HASH>..<HASH> 100644 --- a/bumpversion/__init__.py +++ b/bumpversion/__init__.py @@ -653,14 +653,13 @@ def main(original_args=None): for section_name in config.sections(): - if not ':' in section_name: - continu...
another smoke test for per-file-config
c4urself_bump2version
train
2d6be014b1a5689db5eb231906846665bb57d451
diff --git a/lib/Doctrine/ODM/MongoDB/UnitOfWork.php b/lib/Doctrine/ODM/MongoDB/UnitOfWork.php index <HASH>..<HASH> 100644 --- a/lib/Doctrine/ODM/MongoDB/UnitOfWork.php +++ b/lib/Doctrine/ODM/MongoDB/UnitOfWork.php @@ -1944,7 +1944,9 @@ class UnitOfWork implements PropertyChangedListener $managedCopy = $docume...
port remaining functionality from orm merge() functionality.
Briareos_mongodb-odm
train
ba80ff74a9627f676b4c426587ce5ea487665e46
diff --git a/actionpack/lib/action_controller/response.rb b/actionpack/lib/action_controller/response.rb index <HASH>..<HASH> 100644 --- a/actionpack/lib/action_controller/response.rb +++ b/actionpack/lib/action_controller/response.rb @@ -114,8 +114,8 @@ module ActionController # :nodoc: def redirect(url, status...
Sanitize the URLs passed to redirect_to to prevent a potential response splitting attack. CGI.rb and mongrel don't do any sanitization of the contents of HTTP headers, so care needs to be taken.
rails_rails
train
728f37a73d117d6352d2bf146fa09240be4453a2
diff --git a/lib/linters/README.md b/lib/linters/README.md index <HASH>..<HASH> 100644 --- a/lib/linters/README.md +++ b/lib/linters/README.md @@ -800,9 +800,11 @@ The [CSS spec](http://dev.w3.org/csswg/css-values/#url-value) also recommends th ## zeroUnit Zero values should include a unit for consistency with other ...
brings zeroUnit inline with the spec, provides config for both units and property names
lesshint_lesshint
train
a4a8d15e9f3b9fcd69052ecfbaa50bc51ab1474d
diff --git a/lib/search_engine_query_parser.py b/lib/search_engine_query_parser.py index <HASH>..<HASH> 100644 --- a/lib/search_engine_query_parser.py +++ b/lib/search_engine_query_parser.py @@ -638,10 +638,12 @@ class SpiresToInvenioSyntaxConverter: # match cases where a keyword distributes across a conjuncti...
WebSearch: fix distribution of SPIRES keywords * regular expression updated so keywords don't get distributed on top of other keywords * tests added for same (fixes #<I>)
inveniosoftware_invenio-records
train
e06463361bca2b48e6d655722a4d6eeb6df7691e
diff --git a/spec/tcp_sequence_spec.rb b/spec/tcp_sequence_spec.rb index <HASH>..<HASH> 100644 --- a/spec/tcp_sequence_spec.rb +++ b/spec/tcp_sequence_spec.rb @@ -2,16 +2,14 @@ require 'spec_helper' require 'nmap/tcp_sequence' describe TcpSequence do - let(:xml) { XML.new(Helpers::SCAN_FILE) } - - subject { xml.h...
Updated TcpSequence specs to use scan.xml.
sophsec_ruby-nmap
train
31e7baeea0041acd068f3ca56a718bcd49783755
diff --git a/lib/travis/notifications/webhook.rb b/lib/travis/notifications/webhook.rb index <HASH>..<HASH> 100644 --- a/lib/travis/notifications/webhook.rb +++ b/lib/travis/notifications/webhook.rb @@ -13,13 +13,17 @@ module Travis def payload_for(build) Payload.new(build).to_hash end - ...
don't use cattr_accessor here
travis-ci_travis-core
train
7b184898d83b924cee5519b04e0363fb2f8e0d90
diff --git a/dashboard/api.go b/dashboard/api.go index <HASH>..<HASH> 100644 --- a/dashboard/api.go +++ b/dashboard/api.go @@ -156,9 +156,9 @@ func serveDashboardJs(res http.ResponseWriter, req *http.Request, conf *Config) window.DashboardConfig = { API_SERVER: "%s", PATH_PREFIX: "%s", - INSTAL...
dashboard: Don't set INSTALL_CERT to true unless CA_CERT
flynn_flynn
train
4b7f9c60c4163d89195b288849f135bdccf200d1
diff --git a/blacklist.js b/blacklist.js index <HASH>..<HASH> 100644 --- a/blacklist.js +++ b/blacklist.js @@ -14,9 +14,13 @@ var path = require('path'); // modulePathIgnorePatterns. var sharedBlacklist = [ 'website', - 'node_modules/react-tools/src/utils/ImmutableObject.js', - 'node_modules/react-tools/src/core...
[ReactNative] Update core RN modules to work with React <I>-beta1
facebook_metro
train
22816a462bc26810c296ca002b86233357db6a69
diff --git a/app/models/incline/user.rb b/app/models/incline/user.rb index <HASH>..<HASH> 100644 --- a/app/models/incline/user.rb +++ b/app/models/incline/user.rb @@ -179,7 +179,7 @@ module Incline update_columns( disabled_by: other_user.email, - disabled_at: Time.zone.now, + disab...
Remove Time.zone.now calls.
barkerest_incline
train
6d3e2e0200c311162f160454dcb4d6b5f1fb9eba
diff --git a/tests/test_pipfile.py b/tests/test_pipfile.py index <HASH>..<HASH> 100644 --- a/tests/test_pipfile.py +++ b/tests/test_pipfile.py @@ -20,7 +20,7 @@ import os import pytest -import contoml as toml +import toml from thoth.python import Pipfile from thoth.python import PipfileLock @@ -41,7 +41,7 @@ cl...
Adjust testsuite to use toml instead of contoml
thoth-station_python
train
a27b1607e09c23946239ff1ac276dd50e028a8fd
diff --git a/src/iife.js b/src/iife.js index <HASH>..<HASH> 100644 --- a/src/iife.js +++ b/src/iife.js @@ -3,9 +3,14 @@ import _ from "lodash"; export default { surround }; function surround(code, userOptions) { - return surroundWithIife(code); -} + let lines = [ + "(function() {", + "\"use stri...
Refactors the `surroundWithIife` function
mariusschulz_gulp-iife
train
a3b3c7c1f1d07ceebe3d1aae38328da260e69098
diff --git a/lib/engine-addon.js b/lib/engine-addon.js index <HASH>..<HASH> 100644 --- a/lib/engine-addon.js +++ b/lib/engine-addon.js @@ -26,6 +26,9 @@ var DEFAULT_CONFIG = { css: '/assets/engine-vendor.css', js: '/assets/engine-vendor.js' } + }, + trees: { + addon: 'addon' } }; @@ -126,9...
Make the default addon tree an option This change fixes an issue where the treePath is hardcoded to a path instead of being configurable by the user.
ember-engines_ember-engines
train
2b25f1089c8e557e46925c4c81f4c7b8dca77d16
diff --git a/acceptance/ui/features/steps/applications_steps.rb b/acceptance/ui/features/steps/applications_steps.rb index <HASH>..<HASH> 100644 --- a/acceptance/ui/features/steps/applications_steps.rb +++ b/acceptance/ui/features/steps/applications_steps.rb @@ -212,23 +212,24 @@ def removeAllTemplatesCLI() end def...
Optimize closeDeployWizard so we don't wait for the full timeout
control-center_serviced
train
fbf81cad4c8e6a70dd74cc3c9565410311d0e77b
diff --git a/bqplot/nbextension/Figure.js b/bqplot/nbextension/Figure.js index <HASH>..<HASH> 100644 --- a/bqplot/nbextension/Figure.js +++ b/bqplot/nbextension/Figure.js @@ -134,7 +134,7 @@ define(["widgets/js/widget", "./d3", "base/js/utils", "./require-less/less!./bqp that.set_interaction(that.m...
Remove remove_axis and switch to null
bloomberg_bqplot
train
534301b8333bfa9ab0aa79d1dbeb44adc76b0663
diff --git a/pyecore/resources/xmi.py b/pyecore/resources/xmi.py index <HASH>..<HASH> 100644 --- a/pyecore/resources/xmi.py +++ b/pyecore/resources/xmi.py @@ -22,17 +22,12 @@ class XMIResource(Resource): XMIResource.xmiid = '{{{0}}}id'.format(self.prefixes[xmi]) # Decode the XMI modelroot = s...
Remove basic print debug message (oopsie) These 'logs' were here only to identify where the struggle was during XMI deserialization (see previous commit log for information).
pyecore_pyecore
train
a244deb824b42a1a2520e6e3c852b778d77cc619
diff --git a/lib/redde/version.rb b/lib/redde/version.rb index <HASH>..<HASH> 100644 --- a/lib/redde/version.rb +++ b/lib/redde/version.rb @@ -1,3 +1,3 @@ module Redde - VERSION = "0.0.9" + VERSION = "0.1.0" end
Bumped version to <I>
redde_redde
train
ff49cd002eed17dcf4440417bbfb9106948e423a
diff --git a/django_extensions/management/commands/sqldiff.py b/django_extensions/management/commands/sqldiff.py index <HASH>..<HASH> 100644 --- a/django_extensions/management/commands/sqldiff.py +++ b/django_extensions/management/commands/sqldiff.py @@ -105,7 +105,7 @@ class SQLDiff(object): SQL_INDEX_MISSING_IN_...
adding unique constraint should not contain the keyword COLUMN
django-extensions_django-extensions
train
764fda91500dfecb8ac74ab02681cce15c019c0f
diff --git a/lib/dep_selector/version_constraint.rb b/lib/dep_selector/version_constraint.rb index <HASH>..<HASH> 100644 --- a/lib/dep_selector/version_constraint.rb +++ b/lib/dep_selector/version_constraint.rb @@ -26,6 +26,8 @@ module DepSelector OPS = %w(< > = <= >= ~>) PATTERN = /^(#{OPS.join('|')}) (.+)$/...
Implementing == for VersionConstraint
chef_dep-selector
train
f7c465c973aae3836b8dc4660bbedc9be3e04fa5
diff --git a/lib/acts_as_ordered_tree/adapters.rb b/lib/acts_as_ordered_tree/adapters.rb index <HASH>..<HASH> 100644 --- a/lib/acts_as_ordered_tree/adapters.rb +++ b/lib/acts_as_ordered_tree/adapters.rb @@ -7,7 +7,7 @@ require 'acts_as_ordered_tree/adapters/postgresql' module ActsAsOrderedTree module Adapters ...
Fxied bug when Rails 3.x used Recursive adapter with PostgreSQL
take-five_acts_as_ordered_tree
train
76cefc6542765214e39441b646efd87882cba644
diff --git a/src/Stagehand/FSM/StateMachine/StateMachineBuilder.php b/src/Stagehand/FSM/StateMachine/StateMachineBuilder.php index <HASH>..<HASH> 100644 --- a/src/Stagehand/FSM/StateMachine/StateMachineBuilder.php +++ b/src/Stagehand/FSM/StateMachine/StateMachineBuilder.php @@ -80,15 +80,17 @@ class StateMachineBuilder...
changed the StateMachineBuilder::setStartState() method so that the action and guard can be specified
phpmentors-jp_stagehand-fsm
train
4577af51a7a80c7c8efae8b753d1710708aa49f2
diff --git a/lib/active_admin_datetimepicker/inputs/filters/date_time_range_input.rb b/lib/active_admin_datetimepicker/inputs/filters/date_time_range_input.rb index <HASH>..<HASH> 100644 --- a/lib/active_admin_datetimepicker/inputs/filters/date_time_range_input.rb +++ b/lib/active_admin_datetimepicker/inputs/filters/da...
DateTimeRangeInput fields names fixed. Now filtering by time (hours and minutes) is applied correctly.
activeadmin-plugins_active_admin_datetimepicker
train
ed663fd647dd3beb7aab2d931d7284a501248987
diff --git a/anyconfig/tests/common.py b/anyconfig/tests/common.py index <HASH>..<HASH> 100644 --- a/anyconfig/tests/common.py +++ b/anyconfig/tests/common.py @@ -8,6 +8,8 @@ import sys import tempfile import unittest +import anyconfig.compat + CNF_0 = dict(name="a", a=1, b=dict(b=[1, 2], c="C")) SCM_0 = {"type...
move dicts_equal to compare dicts from anyconfig.tests.schema to anyconfig.tests.common
ssato_python-anyconfig
train
9060a192915d93a321bdc00bd81e9f9a407a2657
diff --git a/src/helpers.php b/src/helpers.php index <HASH>..<HASH> 100644 --- a/src/helpers.php +++ b/src/helpers.php @@ -37,14 +37,15 @@ if ( ! function_exists('basset_javascripts')) if ( ! function_exists('basset_assets')) { /** - * Output a given group for an array of collections. + * Output the asse...
Allow an array or string of collections to be given to basset_assets.
Marwelln_basset
train
216aeb3116d2d2a2fb0df1cdb7ece16d458a1bf2
diff --git a/src/shogun2-core/shogun2-model/src/main/java/de/terrestris/shogun2/model/map/MapConfig.java b/src/shogun2-core/shogun2-model/src/main/java/de/terrestris/shogun2/model/map/MapConfig.java index <HASH>..<HASH> 100644 --- a/src/shogun2-core/shogun2-model/src/main/java/de/terrestris/shogun2/model/map/MapConfig....
Change max-/minResolution type & correct resolutions relation
terrestris_shogun-core
train
aa10452bb8a66a23c15d345476d62a17832edd13
diff --git a/domovoi/app.py b/domovoi/app.py index <HASH>..<HASH> 100644 --- a/domovoi/app.py +++ b/domovoi/app.py @@ -60,11 +60,11 @@ class Domovoi(Chalice): def step_function_task(self, state_name, state_machine_definition): def register_sfn_task(func): - if func.__name__ in self.sfn_tasks:...
Key state machine tasks by state name, not function name This allows assigning the same function to handle multiple tasks
kislyuk_domovoi
train
dc117a74aef813ab8b3b59524482e535e9f39524
diff --git a/src/babel/transformation/file.js b/src/babel/transformation/file.js index <HASH>..<HASH> 100644 --- a/src/babel/transformation/file.js +++ b/src/babel/transformation/file.js @@ -534,7 +534,7 @@ export default class File { result.code += "\n" + convertSourceMap.fromObject(result.map).toComment(); ...
both -> inline - thanks @dkieks
babel_babel
train
46c5501b7a9e4036462706d67c135f6b9278551e
diff --git a/dependency-check-core/src/main/java/org/owasp/dependencycheck/Engine.java b/dependency-check-core/src/main/java/org/owasp/dependencycheck/Engine.java index <HASH>..<HASH> 100644 --- a/dependency-check-core/src/main/java/org/owasp/dependencycheck/Engine.java +++ b/dependency-check-core/src/main/java/org/owa...
changed ensureDataExists method to resolve startup time delays as part of a fix for issue #<I> Former-commit-id: <I>e<I>be9e5e<I>f<I>d<I>da4c<I>b<I>eb
jeremylong_DependencyCheck
train
bd8ab48a681e9a36dd1eae29cbc01de9a6d6c7b7
diff --git a/lib/builder.js b/lib/builder.js index <HASH>..<HASH> 100644 --- a/lib/builder.js +++ b/lib/builder.js @@ -113,11 +113,8 @@ Builder.prototype.prep_target_url = function(callback) { if(er) return callback(er) - if(res.statusCode == 200 && res.body._id) { - self.log.info('Deploying to do...
Emit the target for both found and missing docs
iriscouch_static-plus
train
c9869826dce2cdb479e9f6861d0ca45245a44e49
diff --git a/code/fullcalendar/FullcalendarController.php b/code/fullcalendar/FullcalendarController.php index <HASH>..<HASH> 100755 --- a/code/fullcalendar/FullcalendarController.php +++ b/code/fullcalendar/FullcalendarController.php @@ -96,7 +96,7 @@ class FullcalendarController extends Controller { /** * Handle...
fixing phpdoc blocks to refering to Objects to built-in types of PHP
titledk_silverstripe-calendar
train
48fa3c72ae1e01f678c67c8127b8f0a594bc6063
diff --git a/test/modelbase_test.js b/test/modelbase_test.js index <HASH>..<HASH> 100644 --- a/test/modelbase_test.js +++ b/test/modelbase_test.js @@ -45,5 +45,21 @@ describe('Modelbase', function() { assert(empty()) done() }) + + it ('should remove undefined paramaters from query', function(done)...
add a test for the query filtering
sportngin_ngin_client_node
train
a99672c23478485b79bf18265c8d3ca4de018290
diff --git a/expression/builtin_miscellaneous_vec.go b/expression/builtin_miscellaneous_vec.go index <HASH>..<HASH> 100644 --- a/expression/builtin_miscellaneous_vec.go +++ b/expression/builtin_miscellaneous_vec.go @@ -16,6 +16,7 @@ package expression import ( "bytes" "encoding/binary" + "fmt" "math" "net" "...
expression:implement vectorized evaluation for builtinInet6NtoaSig (#<I>)
pingcap_tidb
train
c7604b48f049be7c532b5255eaad66b48707826e
diff --git a/lib/plugin.js b/lib/plugin.js index <HASH>..<HASH> 100644 --- a/lib/plugin.js +++ b/lib/plugin.js @@ -1,7 +1,6 @@ 'use strict'; const assign = require('lodash.assign'); -const gutil = require('gulp-util'); const expand = require('expand-hash'); const extend = require('util-extend'); const isTextOrBi...
Remove gulp-util resolves #<I>
sparkartgroup_gulp-markdown-to-json
train
1dfafbd5bb50db9a49a2549c6fd2ff3c0868b768
diff --git a/python/setup.py b/python/setup.py index <HASH>..<HASH> 100755 --- a/python/setup.py +++ b/python/setup.py @@ -62,6 +62,7 @@ setup( 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.1', + 'Programming Langua...
Add Python <I> category to setup.py.
cmcqueen_simplerandom
train
c71dc0e90311cef895d55c9d438518606b7f247b
diff --git a/models/Client.js b/models/Client.js index <HASH>..<HASH> 100644 --- a/models/Client.js +++ b/models/Client.js @@ -92,7 +92,7 @@ var Client = Modinha.define('clients', { } }) - // Web clients with implicit grant type (enforced only in development) + // Web clients wit...
fix(Client): Update comment to reflect logic
anvilresearch_connect
train
b7982ae7793d167d3f7bca138bf6934694d8f172
diff --git a/java/test/org/openqa/selenium/grid/distributor/local/LocalDistributorTest.java b/java/test/org/openqa/selenium/grid/distributor/local/LocalDistributorTest.java index <HASH>..<HASH> 100644 --- a/java/test/org/openqa/selenium/grid/distributor/local/LocalDistributorTest.java +++ b/java/test/org/openqa/seleniu...
[grid] Add heath check for LocalDistributor test
SeleniumHQ_selenium
train
00334f95f9c158dc12767792e0edbc48eea777b3
diff --git a/src/org/opencms/main/OpenCmsCore.java b/src/org/opencms/main/OpenCmsCore.java index <HASH>..<HASH> 100644 --- a/src/org/opencms/main/OpenCmsCore.java +++ b/src/org/opencms/main/OpenCmsCore.java @@ -2047,8 +2047,9 @@ public final class OpenCmsCore { // get the right site for the request ...
Fixed problem where OpenCmsCore#updateContext overwrote the site root in the new workplace. Conflicts: src/org/opencms/main/OpenCmsCore.java
alkacon_opencms-core
train
beaa5e83bea8a35db024037637cf811a746535ea
diff --git a/auth/users.go b/auth/users.go index <HASH>..<HASH> 100644 --- a/auth/users.go +++ b/auth/users.go @@ -79,23 +79,34 @@ type UserManager struct { // Create will create a new user with given email and cleartext password. // It will panic on any crypto or database connection errors. func (m *UserManager) Cr...
Added CreateSuperuser method to user manager
aodin_volta
train
9ebb04acbd07c208c30160bd28c342c569246e8f
diff --git a/airflow/contrib/operators/awsbatch_operator.py b/airflow/contrib/operators/awsbatch_operator.py index <HASH>..<HASH> 100644 --- a/airflow/contrib/operators/awsbatch_operator.py +++ b/airflow/contrib/operators/awsbatch_operator.py @@ -153,7 +153,7 @@ class AWSBatchOperator(BaseOperator): for job ...
[AIRFLOW-<I>] Use equality, not identity, check for detecting AWS Batch failures[] Closes #<I> from craigforster/master
apache_airflow
train
0f6f374d272cad9a5e9c5e345427dd1c626c3abe
diff --git a/sqlite3.go b/sqlite3.go index <HASH>..<HASH> 100644 --- a/sqlite3.go +++ b/sqlite3.go @@ -251,7 +251,7 @@ func (s *SQLiteStmt) bind(args []driver.Value) error { rv = C._sqlite3_bind_text(s.s, n, (*C.char)(unsafe.Pointer(&b[0])), C.int(len(b))) } case int: - rv = C.sqlite3_bind_int(s.s, n, C.i...
Treat int as <I>bit
xeodou_go-sqlcipher
train
4784f02d482a51f35f49cff848dfe8d4e361ca93
diff --git a/chess/pgn.py b/chess/pgn.py index <HASH>..<HASH> 100644 --- a/chess/pgn.py +++ b/chess/pgn.py @@ -358,7 +358,7 @@ class Game(GameNode): Unless the `SetUp` and `FEN` header tags are set this is the default starting position. """ - if "FEN" in self.headers and "SetUp" in sel...
Ignore missing SetUp tag in PGNs
niklasf_python-chess
train
8e7d06bee747e6afc9ad2fbe6084b57d21631adc
diff --git a/spring-cloud-contract-stub-runner/src/main/java/org/springframework/cloud/contract/stubrunner/spring/StubRunnerConfiguration.java b/spring-cloud-contract-stub-runner/src/main/java/org/springframework/cloud/contract/stubrunner/spring/StubRunnerConfiguration.java index <HASH>..<HASH> 100644 --- a/spring-clou...
Fixes #<I> - When specifying 'workOffline=false', the stubrunner will now always fail if unable to find the stub remotely
spring-cloud_spring-cloud-contract
train
6822ed223dc93d2b73c5dccf041368b172f9b260
diff --git a/src/Post.php b/src/Post.php index <HASH>..<HASH> 100644 --- a/src/Post.php +++ b/src/Post.php @@ -4,17 +4,49 @@ namespace Formulaic; abstract class Post extends Form { + use Form\Tostring { + Form\Tostring::__toString as private __parentToString; + } + protected $attributes = ['method...
cleanup, and check if the post form has any file inputs so we can set enctype accordingly
monolyth-php_formulaic
train
3ae3414a0d05a5779e603286f4963fbf63f91870
diff --git a/tests/PHPUnit/RedisCommandConstraint.php b/tests/PHPUnit/RedisCommandConstraint.php index <HASH>..<HASH> 100644 --- a/tests/PHPUnit/RedisCommandConstraint.php +++ b/tests/PHPUnit/RedisCommandConstraint.php @@ -25,10 +25,10 @@ class RedisCommandConstraint extends PHPUnit_Framework_Constraint public fun...
[tests] Normalize casing of command identifiers in constraint. We do not care much about the casing of command IDs in our constraint, so it makes no difference for use if it is "SET" or "set".
nrk_predis
train
049982e0de00f88e20671d348aefe6677ed91ca7
diff --git a/lib/api_object.rb b/lib/api_object.rb index <HASH>..<HASH> 100644 --- a/lib/api_object.rb +++ b/lib/api_object.rb @@ -20,7 +20,7 @@ module ActiveApi def get_results_by_ip ip, arguments = {} - self.api_key = arguments.delete(:key) if arguments[:key] + ...
fixed getting data by ip with no api key
tmoskun_api_object
train
7659aec188430dfeec336da924c39e4322b37676
diff --git a/src/js/cljs.js b/src/js/cljs.js index <HASH>..<HASH> 100644 --- a/src/js/cljs.js +++ b/src/js/cljs.js @@ -347,13 +347,13 @@ export default function startClojureScriptEngine(opts: CLIOptsType): void { if (mainScript) { initClojureScriptEngine(opts); executeScript(mainScript, 'path'); - proce...
don't exit scripts synchronously, queue the exit callback
anmonteiro_lumo
train
b544f93491fd73ef00c4fc4d83f6438d6c55f03e
diff --git a/src/webroot/cms/lib/supra/combo/combo.php b/src/webroot/cms/lib/supra/combo/combo.php index <HASH>..<HASH> 100644 --- a/src/webroot/cms/lib/supra/combo/combo.php +++ b/src/webroot/cms/lib/supra/combo/combo.php @@ -31,7 +31,7 @@ $css = strpos($files[0], '.css') !== false ? true : false; $ext = ($css ? 'css...
Issue red #<I>; Make combo.php cache file writes atomic on fs level, hopefully.
sitesupra_sitesupra
train
87fe2ebebb497765518005636c8379549ec922a7
diff --git a/bin/doctrine-module.php b/bin/doctrine-module.php index <HASH>..<HASH> 100644 --- a/bin/doctrine-module.php +++ b/bin/doctrine-module.php @@ -40,10 +40,9 @@ while (!file_exists('config/application.config.php')) { chdir($dir); } -require_once (getenv('ZF2_PATH') ?: 'vendor/ZendFramework/library') . ...
Updating CLI to work with latest autoloading as of skeleton application
doctrine_DoctrineModule
train
2ec982efd69c40f571bc568cdaee4630c8f3a554
diff --git a/unitypack/asset.py b/unitypack/asset.py index <HASH>..<HASH> 100644 --- a/unitypack/asset.py +++ b/unitypack/asset.py @@ -63,7 +63,7 @@ class Asset: return self.environment.get_asset_by_filename(path) def __init__(self): - self.objects = {} + self._objects = {} self.adds = [] self.asset_refs...
Add lazy-loading of Asset on .objects access
HearthSim_UnityPack
train
fe444afbd33df835591eadee35c78a3925608fad
diff --git a/src/Notifications/Notifications/CertificateExpiresSoon.php b/src/Notifications/Notifications/CertificateExpiresSoon.php index <HASH>..<HASH> 100644 --- a/src/Notifications/Notifications/CertificateExpiresSoon.php +++ b/src/Notifications/Notifications/CertificateExpiresSoon.php @@ -57,6 +57,6 @@ class Certi...
Use existing $this->getMonitor() method for consistency (#<I>)
spatie_laravel-uptime-monitor
train
4db61d025d1d683cbb88fb76f0595186d77203bf
diff --git a/provision/kubernetes/provisioner.go b/provision/kubernetes/provisioner.go index <HASH>..<HASH> 100644 --- a/provision/kubernetes/provisioner.go +++ b/provision/kubernetes/provisioner.go @@ -372,6 +372,9 @@ func (p *kubernetesProvisioner) RegisterUnit(a provision.App, unitID string, cus } pod, err := cl...
provision/swarm,kubernetes: fail register unit for unit not found
tsuru_tsuru
train
10cc5f7b1aceb199b8df42d3e2606d0bc50ee316
diff --git a/app-servers/MongoNode.php b/app-servers/MongoNode.php index <HASH>..<HASH> 100644 --- a/app-servers/MongoNode.php +++ b/app-servers/MongoNode.php @@ -36,7 +36,7 @@ class MongoNode extends AppInstance $appInstance = $this; $this->LockClient->job(__CLASS__,TRUE,function($jobname) use ($appInstance) ...
Fixed critical typo bug in MongoNode.php (issue #9 reported by Emmerman)
kakserpom_phpdaemon
train
59559f3f9f711e3c8468d2419caf944979e27580
diff --git a/sonar-batch/src/main/java/org/sonar/batch/scan/filesystem/ProjectFileSystemAdapter.java b/sonar-batch/src/main/java/org/sonar/batch/scan/filesystem/ProjectFileSystemAdapter.java index <HASH>..<HASH> 100644 --- a/sonar-batch/src/main/java/org/sonar/batch/scan/filesystem/ProjectFileSystemAdapter.java +++ b/s...
Fix ProjectFileSystemAdapter to also returns files that are outside source folders
SonarSource_sonarqube
train
5cedab4bd60383eea7b75ecac466342d17ed1b93
diff --git a/biojava-core/src/main/java/org/biojava/nbio/core/sequence/io/GenbankSequenceParser.java b/biojava-core/src/main/java/org/biojava/nbio/core/sequence/io/GenbankSequenceParser.java index <HASH>..<HASH> 100644 --- a/biojava-core/src/main/java/org/biojava/nbio/core/sequence/io/GenbankSequenceParser.java +++ b/b...
Refactored this, no need explicit cast if DBReferenceInfo is needed
biojava_biojava
train
cc1c074c227bcbe43f55f9be181bbef3f93fc979
diff --git a/capi_experimental/manifest.go b/capi_experimental/manifest.go index <HASH>..<HASH> 100644 --- a/capi_experimental/manifest.go +++ b/capi_experimental/manifest.go @@ -57,7 +57,8 @@ var _ = CapiExperimentalDescribe("apply_manifest", func() { By("Creating a Route") By("Starting an App") StartApp(appG...
Use a random route prefix in experimental app manifest spec - If CATS are being run concurrently there is a chance that two tests will try to assign the same route and fail. Randomizing the name of the routes that these tests use will avoid this situation
cloudfoundry_cf-acceptance-tests
train
b2f60730bde45bbf1fa3a1d4f855d34f5cbd53f1
diff --git a/py/selenium/webdriver/chrome/service.py b/py/selenium/webdriver/chrome/service.py index <HASH>..<HASH> 100644 --- a/py/selenium/webdriver/chrome/service.py +++ b/py/selenium/webdriver/chrome/service.py @@ -17,6 +17,7 @@ # specific language governing permissions and limitations # under the License. impor...
py: improve OSError exception on starting chromedriver Fixes issue <I> on googlecode. Catching too-broad an exception squashes esoteric bugs like <I> on googlecode (too many open files).
SeleniumHQ_selenium
train
c97685ae9175128e18ed184fd4ff4faee7ef32d0
diff --git a/lib/salt.rb b/lib/salt.rb index <HASH>..<HASH> 100644 --- a/lib/salt.rb +++ b/lib/salt.rb @@ -9,7 +9,7 @@ require 'erubis' require 'redcarpet' require 'salt/frontable' -require 'salt/renderable' +require 'salt/publishable' require 'salt/configuration' require 'salt/page' require 'salt/post'
Swapped renderable for publishable.
waferbaby_dimples
train
7f751b44ed3efcc57f0b9d35ace44d0a5951be0b
diff --git a/pkg/hijack/hijack.go b/pkg/hijack/hijack.go index <HASH>..<HASH> 100644 --- a/pkg/hijack/hijack.go +++ b/pkg/hijack/hijack.go @@ -14,8 +14,8 @@ type HijackReadWriter struct { Header string Response http.ResponseWriter + Hijacked bool - hijacked bool // writer is returned when hijacking the conn...
If the connection has been hijacked, write the error to the stream
remind101_empire
train
ffcaaac9d92541ffc632156942d1c26f44749755
diff --git a/src/PHPRouter/Router.php b/src/PHPRouter/Router.php index <HASH>..<HASH> 100755 --- a/src/PHPRouter/Router.php +++ b/src/PHPRouter/Router.php @@ -101,6 +101,9 @@ class Router continue; } + $currentDir = dirname($_SERVER['SCRIPT_NAME']); + $requestUrl = ...
Make possible to use PHPRouter on a subpath folder as `localhost/app/web`
dannyvankooten_PHP-Router
train
f16848a5cd0f2de33ec0ce3ee48cc394f2f8fcac
diff --git a/modules/Access.php b/modules/Access.php index <HASH>..<HASH> 100755 --- a/modules/Access.php +++ b/modules/Access.php @@ -103,9 +103,9 @@ class Piwik_Access // we join with site in case there are rows in access for an idsite that doesn't exist anymore // (backward compatibility ; before we ...
- fixing Uncaught exception: 'SQLSTATE[<I>]: Integrity constraint violation: <I> Column 'idsite' in field list is ambiguous' git-svn-id: <URL>
matomo-org_matomo
train
654c620933129314130cd12bdb0596c5e69900c1
diff --git a/src/org/jgroups/client/StompConnection.java b/src/org/jgroups/client/StompConnection.java index <HASH>..<HASH> 100644 --- a/src/org/jgroups/client/StompConnection.java +++ b/src/org/jgroups/client/StompConnection.java @@ -13,6 +13,7 @@ import java.io.IOException; import java.net.*; import javax.net.Socke...
Add constructor that adds a custome SSLContext object. Remove if conditional. Create final version of sslcontext changes Remove comments
belaban_JGroups
train
a31f01e3d524973de362b15df7665fc7ecfe8116
diff --git a/announce.go b/announce.go index <HASH>..<HASH> 100644 --- a/announce.go +++ b/announce.go @@ -177,6 +177,8 @@ func (a *Announce) getPeers(addr Addr) error { return a.server.getPeers(addr, a.infoHash, func(m krpc.Msg, err error) { // Register suggested nodes closer to the target info-hash. if m.R !=...
Add some expvars for get_peers response values
anacrolix_dht
train
678aee340bb2ac74695fdb6118757bc61b4a6f7c
diff --git a/openstack_dashboard/dashboards/project/stacks/tabs.py b/openstack_dashboard/dashboards/project/stacks/tabs.py index <HASH>..<HASH> 100644 --- a/openstack_dashboard/dashboards/project/stacks/tabs.py +++ b/openstack_dashboard/dashboards/project/stacks/tabs.py @@ -40,7 +40,7 @@ class StackTopologyTab(tabs.Tab...
Correct error in policy action name It is "resource" not "resources". Change-Id: I<I>cd5be<I>ebe<I>ebc6a<I>f<I>f1ce Closes-Bug: <I>
openstack_horizon
train
35d3923ea0c51b3a628e913e3b35f85124de8ac8
diff --git a/activerecord/lib/active_record/autosave_association.rb b/activerecord/lib/active_record/autosave_association.rb index <HASH>..<HASH> 100644 --- a/activerecord/lib/active_record/autosave_association.rb +++ b/activerecord/lib/active_record/autosave_association.rb @@ -284,7 +284,7 @@ module ActiveRecord ...
Exclude #saving? from API docs We don't have a concrete use case for it outside of AR itself.
rails_rails
train
5d66a7800590ec20ddc2940ba982afb6c71631bb
diff --git a/m2bk/driver.py b/m2bk/driver.py index <HASH>..<HASH> 100644 --- a/m2bk/driver.py +++ b/m2bk/driver.py @@ -43,6 +43,9 @@ def load(*, name="dummy", **kwargs): # Try to load specified driver if name in VALID_DRIVERS: + # log the thing first + log.msg_debug("Attempting to load driver:...
Explicit log messages on driver interface
axltxl_m2bk
train
f1130fdc03178be72cb117a8a5303a5edfdda432
diff --git a/minio/api.py b/minio/api.py index <HASH>..<HASH> 100644 --- a/minio/api.py +++ b/minio/api.py @@ -1525,7 +1525,15 @@ class Minio(object): parts_to_upload.append((bucket_name, object_name, upload_id, part_number, part_data)) # Run parts upload in parallel - pool.parallel_run(s...
Cleanup incomplete upload upon error (#<I>) Since we do not have resuming support, we should simply cleanup failed transfers.
minio_minio-py
train
88da704eedc5149b70dcec7845453456a6e26761
diff --git a/js/src/carousel.js b/js/src/carousel.js index <HASH>..<HASH> 100644 --- a/js/src/carousel.js +++ b/js/src/carousel.js @@ -389,10 +389,6 @@ class Carousel extends BaseComponent { } _directionToOrder(direction) { - if (![DIRECTION_RIGHT, DIRECTION_LEFT].includes(direction)) { - return directi...
Carousel: omit redundant checks as we are always transforming the right values
twbs_bootstrap
train
96e96a080bb80a636ffd752d5aa700494ba99d70
diff --git a/www/_include.php b/www/_include.php index <HASH>..<HASH> 100644 --- a/www/_include.php +++ b/www/_include.php @@ -32,6 +32,13 @@ set_exception_handler('SimpleSAML_exception_handler'); /* Log full backtrace on errors and warnings. */ function SimpleSAML_error_handler($errno, $errstr, $errfile = NULL, $err...
_include.php: Limit the number of errors that will be logged.
simplesamlphp_saml2
train
17cc088a6ee49e29daf35429060574de08b67720
diff --git a/registrasion/reporting/views.py b/registrasion/reporting/views.py index <HASH>..<HASH> 100644 --- a/registrasion/reporting/views.py +++ b/registrasion/reporting/views.py @@ -382,6 +382,21 @@ def credit_notes(request, form): ) +@report_view("Invoices") +def invoices(request,form): + ''' Shows al...
Adds an “invoices” view
chrisjrn_registrasion
train