diff
stringlengths
65
26.7k
message
stringlengths
7
9.92k
diff --git a/project_generator/project.py b/project_generator/project.py index <HASH>..<HASH> 100644 --- a/project_generator/project.py +++ b/project_generator/project.py @@ -471,19 +471,23 @@ class Project: def _set_output_dir_path(self, tool, workspace_path): if self.pgen_workspace.settings.generated_...
Project - set output dir path - add comments
diff --git a/aws/resource_aws_secretsmanager_secret_policy_test.go b/aws/resource_aws_secretsmanager_secret_policy_test.go index <HASH>..<HASH> 100644 --- a/aws/resource_aws_secretsmanager_secret_policy_test.go +++ b/aws/resource_aws_secretsmanager_secret_policy_test.go @@ -28,7 +28,7 @@ func testSweepSecretsManagerSec...
tests/r/secretsmanager_secret_policy: Use consistent var name
diff --git a/Form/Type/ImmutableArrayType.php b/Form/Type/ImmutableArrayType.php index <HASH>..<HASH> 100644 --- a/Form/Type/ImmutableArrayType.php +++ b/Form/Type/ImmutableArrayType.php @@ -21,9 +21,12 @@ class ImmutableArrayType extends AbstractType public function buildForm(FormBuilder $builder, array $options)...
mmutableArrayType buildForm with FormBuilder as option
diff --git a/aikif/project.py b/aikif/project.py index <HASH>..<HASH> 100644 --- a/aikif/project.py +++ b/aikif/project.py @@ -80,11 +80,6 @@ class Project(object): res += t.name + '\n' return res - def add_goal(self, goal_id, name, due_date=None, priority=None): - """ - add...
removed project functions add_link add_goal
diff --git a/neo4jrestclient/query.py b/neo4jrestclient/query.py index <HASH>..<HASH> 100644 --- a/neo4jrestclient/query.py +++ b/neo4jrestclient/query.py @@ -215,7 +215,7 @@ class Q(BaseQ): op_not = self._not.get_query_objects(params=params, version=versio...
Update NOT check to in query.Q to use True=NOT()
diff --git a/lib/workable/client.rb b/lib/workable/client.rb index <HASH>..<HASH> 100644 --- a/lib/workable/client.rb +++ b/lib/workable/client.rb @@ -57,7 +57,7 @@ module Workable when 404 raise Errors::NotFound, response.body when 503 - raise Errors::RequestToLong, "Response code: #{resp...
We know it's <I>, let's return body as message
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -35,8 +35,10 @@ module.exports = { var headerConfig = appConfig.contentSecurityPolicy; if (options.liveReload) { - headerConfig['connect-src'] = headerConfig['connect-src'] + ' ws://localhost:' + options...
Allow both <I> and localhost for livereload.
diff --git a/lib/bootstrap.js b/lib/bootstrap.js index <HASH>..<HASH> 100644 --- a/lib/bootstrap.js +++ b/lib/bootstrap.js @@ -38,7 +38,7 @@ module.exports = function(options, db) { }, function(err, file) { if (!file) { - fs.createReadStream(appPath + '/public/lib/bootstrap/dist/c...
update path to bower_components
diff --git a/src/SVGImage.php b/src/SVGImage.php index <HASH>..<HASH> 100644 --- a/src/SVGImage.php +++ b/src/SVGImage.php @@ -20,8 +20,8 @@ class SVGImage private $document; /** - * @param int $width The image's width, in pixels. - * @param int $height The image's height, in pixe...
Fix misleading SVGImage constructor doc comment The size does not have to be in pixels, and neither of type int.
diff --git a/kernel/content/ezcontentoperationcollection.php b/kernel/content/ezcontentoperationcollection.php index <HASH>..<HASH> 100644 --- a/kernel/content/ezcontentoperationcollection.php +++ b/kernel/content/ezcontentoperationcollection.php @@ -283,9 +283,9 @@ class eZContentOperationCollection ...
#- Moved the restoration of the current user (PreGeneration) to outside of # the siteaccess loop. # (Manually merged from stable/<I> (<I>) rev. <I>) git-svn-id: file:///home/patrick.allaert/svn-git/ezp-repo/ezpublish/trunk@<I> a<I>eee8c-daba-<I>-acae-fa<I>f<I>
diff --git a/lib/Model.js b/lib/Model.js index <HASH>..<HASH> 100644 --- a/lib/Model.js +++ b/lib/Model.js @@ -150,7 +150,7 @@ function Model(opts) { if (data.length === 0) { return cb(new Error("Not found")); } - Singleton.get(opts.table + "/" + id, { + Singleton.get(opts.driver.uid + "/" + opts.table...
Changes singleton uid creation to use driver uid (#<I>)
diff --git a/core/core.go b/core/core.go index <HASH>..<HASH> 100644 --- a/core/core.go +++ b/core/core.go @@ -117,7 +117,7 @@ type Config struct { Vault struct { Address string `yaml:"address" env:"SHIELD_VAULT_ADDRESS"` - CACert string `yaml:"ca" env:"SHIELD_VAULT_CA"` + CACert string `yaml:"ca" env:"...
More environment configuration in SHIELD core
diff --git a/grade/report/user/externallib.php b/grade/report/user/externallib.php index <HASH>..<HASH> 100644 --- a/grade/report/user/externallib.php +++ b/grade/report/user/externallib.php @@ -115,6 +115,9 @@ class gradereport_user_external extends external_api { require_once($CFG->dirroot . '/grade/lib.php'...
MDL-<I> gradereport_user: Force regrade in external function
diff --git a/semantic_version/base.py b/semantic_version/base.py index <HASH>..<HASH> 100644 --- a/semantic_version/base.py +++ b/semantic_version/base.py @@ -91,13 +91,13 @@ class Version(object): return int(value) def next_major(self): - if self.prerelease and self.minor is 0 and self.patch is ...
Don't use `is` for integer comparisons. Closes #<I>.
diff --git a/sdjournal/journal.go b/sdjournal/journal.go index <HASH>..<HASH> 100644 --- a/sdjournal/journal.go +++ b/sdjournal/journal.go @@ -736,14 +736,13 @@ func (j *Journal) GetEntry() (*JournalEntry, error) { entry.MonotonicTimestamp = uint64(monotonicUsec) var c *C.char - defer C.free(unsafe.Pointer(c)) - ...
sdjournal: free correct pointer Since defer creates a closure, it ends up freeing the wrong pointer in these situations (i.e. not the one that ends up getting allocated by asprintf during the actual sdjournal call).
diff --git a/server/storage/backend/backend_test.go b/server/storage/backend/backend_test.go index <HASH>..<HASH> 100644 --- a/server/storage/backend/backend_test.go +++ b/server/storage/backend/backend_test.go @@ -32,7 +32,7 @@ func TestBackendClose(t *testing.T) { b, _ := betesting.NewTmpBackend(t, time.Hour, 10000...
fixing the goroutine leak in TestBackendClose
diff --git a/cli/command/config/remove_test.go b/cli/command/config/remove_test.go index <HASH>..<HASH> 100644 --- a/cli/command/config/remove_test.go +++ b/cli/command/config/remove_test.go @@ -77,6 +77,7 @@ func TestConfigRemoveContinueAfterError(t *testing.T) { cmd := newConfigRemoveCommand(cli) cmd.SetArgs(na...
fixed the output leak from error test case for config/remove
diff --git a/src/cf/terminal/ui.go b/src/cf/terminal/ui.go index <HASH>..<HASH> 100644 --- a/src/cf/terminal/ui.go +++ b/src/cf/terminal/ui.go @@ -50,8 +50,7 @@ func (c TerminalUI) Ok() { func (c TerminalUI) Failed(message string) { c.Say(FailureColor("FAILED")) c.Say(message) - - return + os.Exit(1) } func (c...
exit with status 1 on failure [#<I>]
diff --git a/code/editor/EditableCheckboxGroupField.php b/code/editor/EditableCheckboxGroupField.php index <HASH>..<HASH> 100755 --- a/code/editor/EditableCheckboxGroupField.php +++ b/code/editor/EditableCheckboxGroupField.php @@ -65,7 +65,7 @@ class EditableCheckboxGroupField extends EditableFormField { continue;...
BUGFIX added isset to [->ID]
diff --git a/lib/components/Redoc/redoc.js b/lib/components/Redoc/redoc.js index <HASH>..<HASH> 100644 --- a/lib/components/Redoc/redoc.js +++ b/lib/components/Redoc/redoc.js @@ -12,8 +12,8 @@ import {ChangeDetectionStrategy} from 'angular2/angular2'; providers: [SchemaManager], templateUrl: './lib/components/Red...
uncomment changeDetection spec in redoc
diff --git a/core/server/models/base/index.js b/core/server/models/base/index.js index <HASH>..<HASH> 100644 --- a/core/server/models/base/index.js +++ b/core/server/models/base/index.js @@ -118,6 +118,7 @@ ghostBookshelf.Model = ghostBookshelf.Model.extend({ debug(model.tableName, event); if (!opti...
Added base model debug log for events no issue
diff --git a/addon/components/tour-start-button.js b/addon/components/tour-start-button.js index <HASH>..<HASH> 100644 --- a/addon/components/tour-start-button.js +++ b/addon/components/tour-start-button.js @@ -195,9 +195,9 @@ export default Ember.Component.extend({ let tour = get(this, 'tour'); let callout =...
Do not use array deconstructing on jQuery collection This caused the code to fail on environments where Symbol is not natively available (e.g. IE or phantomjs)
diff --git a/tests/PosPaymentTest.php b/tests/PosPaymentTest.php index <HASH>..<HASH> 100644 --- a/tests/PosPaymentTest.php +++ b/tests/PosPaymentTest.php @@ -62,7 +62,6 @@ class PosPaymentTest extends TestCase $this->validateApiPermission($e); } - print $result; $this->assertTru...
PW-<I>: removed print statement
diff --git a/go/vt/vtadmin/cluster/cluster.go b/go/vt/vtadmin/cluster/cluster.go index <HASH>..<HASH> 100644 --- a/go/vt/vtadmin/cluster/cluster.go +++ b/go/vt/vtadmin/cluster/cluster.go @@ -211,14 +211,20 @@ func New(ctx context.Context, cfg Config) (*Cluster, error) { // to avoid data races in tests (the latter of t...
Fix data race in vtadmin (#<I>) The schema cache has a backfill goroutine running which depends on the clutser's Vtctld, so there's a more subtle `Close` ordering dependency here. It's okay (and good!) to close caches concurrently, and proxy connections concurrently, but never concurrently _with each other_, and...
diff --git a/src/livestreamer/plugins/tvcatchup.py b/src/livestreamer/plugins/tvcatchup.py index <HASH>..<HASH> 100644 --- a/src/livestreamer/plugins/tvcatchup.py +++ b/src/livestreamer/plugins/tvcatchup.py @@ -25,7 +25,7 @@ class TVCatchup(Plugin): stream_url = match.groupdict()["stream_url"] ...
tvcatchup now returns a variant playlist
diff --git a/client/http_client.go b/client/http_client.go index <HASH>..<HASH> 100644 --- a/client/http_client.go +++ b/client/http_client.go @@ -11,10 +11,10 @@ import ( "os" "path/filepath" "regexp" - "text/template" + "strconv" "strings" + "text/template" "time" - "strconv" ) const NON_VERBOSE = "NON_...
Need to cast to time.Duration
diff --git a/xmantissa/tdb.py b/xmantissa/tdb.py index <HASH>..<HASH> 100644 --- a/xmantissa/tdb.py +++ b/xmantissa/tdb.py @@ -142,6 +142,7 @@ class TabularDataModel: # hasNextPage and hasPrevPage methosd. We gracefully handle it # anyway simply because we expect multiple frontends for this ...
ensure "totalItems" and "totalPages" are always attributes of the TDM, even if their values are 0.
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -371,7 +371,7 @@ wjs.prototype.addPlayer = function(wcpSettings) { } else vlcs[wjsPlayer.context].hideUI = setTimeout(function(i) { return function() { hideUI.call(players[i]); } }(wjsPlayer.context),3000)...
Fixed mouse cursor on UI hidden
diff --git a/.tools/validate.go b/.tools/validate.go index <HASH>..<HASH> 100644 --- a/.tools/validate.go +++ b/.tools/validate.go @@ -210,7 +210,7 @@ func GitCommits(commitrange string) ([]CommitEntry, error) { // GitFetchHeadCommit returns the hash of FETCH_HEAD func GitFetchHeadCommit() (string, error) { - outpu...
.tools: make GetFetchHeadCommit do what it says
diff --git a/sidebar-templates/sidebar-herocanvas.php b/sidebar-templates/sidebar-herocanvas.php index <HASH>..<HASH> 100644 --- a/sidebar-templates/sidebar-herocanvas.php +++ b/sidebar-templates/sidebar-herocanvas.php @@ -16,4 +16,4 @@ if ( ! defined( 'ABSPATH' ) ) { <?php dynamic_sidebar( 'herocanvas' ); ?> -<?...
Fix missing new line at end of file
diff --git a/TYPO3.Fluid/Classes/ViewHelpers/Form/UploadViewHelper.php b/TYPO3.Fluid/Classes/ViewHelpers/Form/UploadViewHelper.php index <HASH>..<HASH> 100644 --- a/TYPO3.Fluid/Classes/ViewHelpers/Form/UploadViewHelper.php +++ b/TYPO3.Fluid/Classes/ViewHelpers/Form/UploadViewHelper.php @@ -16,21 +16,22 @@ namespace F3\...
Small addition to the upload view helper Original-Commit-Hash: <I>b<I>fd<I>b3f4f<I>a<I>bc
diff --git a/lib/table.js b/lib/table.js index <HASH>..<HASH> 100644 --- a/lib/table.js +++ b/lib/table.js @@ -44,7 +44,8 @@ Table.prototype.getName = function() { } Table.prototype.star = function() { - return new TextNode('"'+this._name+'".*'); + var name = this.alias || this._name; + return new TextNode('"'+n...
table alias were not applying to star queries
diff --git a/src/Http/StringHttpAdapter.php b/src/Http/StringHttpAdapter.php index <HASH>..<HASH> 100644 --- a/src/Http/StringHttpAdapter.php +++ b/src/Http/StringHttpAdapter.php @@ -7,7 +7,6 @@ use Aidantwoods\SecureHeaders\HeaderBag; class StringHttpAdapter implements HttpAdapter { private $headers = []; - ...
bugfix: ensure only one list of headers in StringAdapter
diff --git a/classes/Gems/Util/DatabasePatcher.php b/classes/Gems/Util/DatabasePatcher.php index <HASH>..<HASH> 100644 --- a/classes/Gems/Util/DatabasePatcher.php +++ b/classes/Gems/Util/DatabasePatcher.php @@ -64,7 +64,17 @@ class Gems_Util_DatabasePatcher $this->patch_files[] = $file; ...
Adapted patcher to new database path strings
diff --git a/test/test_helper.rb b/test/test_helper.rb index <HASH>..<HASH> 100644 --- a/test/test_helper.rb +++ b/test/test_helper.rb @@ -27,4 +27,5 @@ CREATE SCHEMA "Bar"; CREATE TABLE "Bar"."Foo"("Id" int); INSERT INTO "Bar"."Foo" SELECT * FROM generate_series(1, 100000); +ANALYZE "Bar"."Foo"; SQL
Analyze before tests [skip ci]
diff --git a/gns3server/handlers/api/controller/server_handler.py b/gns3server/handlers/api/controller/server_handler.py index <HASH>..<HASH> 100644 --- a/gns3server/handlers/api/controller/server_handler.py +++ b/gns3server/handlers/api/controller/server_handler.py @@ -169,7 +169,7 @@ class ServerHandler: ...
Fix bug when exporting debug information with multiple remote servers Fix #<I>
diff --git a/salt/master.py b/salt/master.py index <HASH>..<HASH> 100644 --- a/salt/master.py +++ b/salt/master.py @@ -1805,9 +1805,9 @@ class ClearFuncs(object): 'user': token['name']} try: self.event.fire_event(data, tagify([jid, 'new'], 'wheel')) - re...
Fix 'success' value for wheel commands The ClearFuncs was assuming a 'success' of True <I>% of the time for wheel functions. This causes wheel funcs executed via salt-api (and probably elsewhere) to incorrectly report the 'success' field when the wheel function triggers a traceback (such as when required positional ar...
diff --git a/Documentation/conf.py b/Documentation/conf.py index <HASH>..<HASH> 100644 --- a/Documentation/conf.py +++ b/Documentation/conf.py @@ -130,6 +130,7 @@ extlinks = { 'jenkins-branch': (jenkins_branch + "/%s", ''), 'github-project': (project_link + '%s', ''), 'github-backport': (backport_format,...
docs: conf.py: add :gh-issue: role to reference GitHub issues Use the extlink Sphinx extension to add a role for referencing GitHub issues in a uniform fashion. Writing :gh-issue:`<I>` will automatically convert into "GitHub issue <I>", with a link to the relevant issue.
diff --git a/provision/kubernetes/helpers.go b/provision/kubernetes/helpers.go index <HASH>..<HASH> 100644 --- a/provision/kubernetes/helpers.go +++ b/provision/kubernetes/helpers.go @@ -1084,6 +1084,7 @@ func runPod(ctx context.Context, args runSinglePodArgs) error { if err != nil { return err } + enableService...
Disable serviceLinks for isolated run
diff --git a/src/CleanFormatter.php b/src/CleanFormatter.php index <HASH>..<HASH> 100644 --- a/src/CleanFormatter.php +++ b/src/CleanFormatter.php @@ -104,7 +104,7 @@ final class CleanFormatter implements Formatter $types = implode('|', $types); - [$oldTypes, $nameAndDescription] = e...
fix CleanFormatter removing description
diff --git a/test/fragmentation-test-server.js b/test/fragmentation-test-server.js index <HASH>..<HASH> 100755 --- a/test/fragmentation-test-server.js +++ b/test/fragmentation-test-server.js @@ -130,7 +130,7 @@ router.mount('*', 'fragmentation-test', function(request) { } }); - connection.on('close',...
Fixing fragmentation-test-server to accept the correct parameters for the 'close' event.
diff --git a/packages/neos-ui/src/Containers/LeftSideBar/PageTree/Node/index.js b/packages/neos-ui/src/Containers/LeftSideBar/PageTree/Node/index.js index <HASH>..<HASH> 100644 --- a/packages/neos-ui/src/Containers/LeftSideBar/PageTree/Node/index.js +++ b/packages/neos-ui/src/Containers/LeftSideBar/PageTree/Node/index....
BUGFIX: Remove trailing comma to satisfy linter
diff --git a/src/watoki/curir/composition/PostProcessor.php b/src/watoki/curir/composition/PostProcessor.php index <HASH>..<HASH> 100644 --- a/src/watoki/curir/composition/PostProcessor.php +++ b/src/watoki/curir/composition/PostProcessor.php @@ -37,8 +37,6 @@ class PostProcessor { 'button' => 'name' ); ...
Removed html head from http header
diff --git a/Tests/Acceptance/Support/Extension/BackendStyleguideEnvironment.php b/Tests/Acceptance/Support/Extension/BackendStyleguideEnvironment.php index <HASH>..<HASH> 100644 --- a/Tests/Acceptance/Support/Extension/BackendStyleguideEnvironment.php +++ b/Tests/Acceptance/Support/Extension/BackendStyleguideEnvironme...
[BUGFIX] AC tests don't reference ext:about anymore
diff --git a/test/campaign.test.js b/test/campaign.test.js index <HASH>..<HASH> 100644 --- a/test/campaign.test.js +++ b/test/campaign.test.js @@ -249,10 +249,10 @@ describe('@campaign-contactlists', function() { } Rhizome.Contactlist .create({ - campaign: _campaign.id, + campai...
- CHANGED: harmonise the naming conventions
diff --git a/openquake/engine/calculators/hazard/scenario/core.py b/openquake/engine/calculators/hazard/scenario/core.py index <HASH>..<HASH> 100644 --- a/openquake/engine/calculators/hazard/scenario/core.py +++ b/openquake/engine/calculators/hazard/scenario/core.py @@ -173,7 +173,7 @@ class ScenarioHazardCalculator(ha...
Fixed the scenario calculator Former-commit-id: e2c0ca1af<I>d<I>fe<I>b2cf<I>fb<I>c
diff --git a/text/atlas.go b/text/atlas.go index <HASH>..<HASH> 100644 --- a/text/atlas.go +++ b/text/atlas.go @@ -30,6 +30,8 @@ type Atlas struct { // NewAtlas creates a new Atlas containing glyphs of the given set of runes from the given font // face. +// +// Do not destroy or close the font.Face after creating t...
add note about not destroying face.Face to Atlas doc
diff --git a/meme.py b/meme.py index <HASH>..<HASH> 100755 --- a/meme.py +++ b/meme.py @@ -13,6 +13,8 @@ GENERATORS = { 'BUTTHURT_DWELLER' : ('AdviceDogSpinoff' , 1438 , 'Butthurt-Dweller' , ) , 'B_FROG' : ('AdviceDogSpinoff' , 1211 , 'Foul-Bachelorette-Frog' ...
added bill oreilly, you can't explain that
diff --git a/admin/langimport.php b/admin/langimport.php index <HASH>..<HASH> 100755 --- a/admin/langimport.php +++ b/admin/langimport.php @@ -331,7 +331,7 @@ /** * Returns a list of available language packs from a * local copy shipped with standard moodle distro - * this is for site that can't per...
MDL-<I>, MDL-<I> - fixed inline docs; merged from MOODLE_<I>_STABLE
diff --git a/gitreceived.go b/gitreceived.go index <HASH>..<HASH> 100644 --- a/gitreceived.go +++ b/gitreceived.go @@ -40,7 +40,7 @@ var privateKey string func init() { flag.Usage = func() { - fmt.Fprintf(os.Stderr, "Usage: %v [options] <authchecker> <receiver>\n\n", os.Args[0]) + fmt.Fprintf(os.Stderr, "Usage: ...
gitreceived: Fix usage Closes #<I>
diff --git a/tests/test_settings.py b/tests/test_settings.py index <HASH>..<HASH> 100644 --- a/tests/test_settings.py +++ b/tests/test_settings.py @@ -42,12 +42,6 @@ class TestProject(TestCase): def test_update(self): self.settings.update(settings_dict) - assert self.settings.get_env_settings('de...
Tests - path definitions removal
diff --git a/lib/tomlrb/scanner.rb b/lib/tomlrb/scanner.rb index <HASH>..<HASH> 100644 --- a/lib/tomlrb/scanner.rb +++ b/lib/tomlrb/scanner.rb @@ -29,7 +29,7 @@ module Tomlrb @eos = false end - def next_token + def next_token # rubocop:disable Metrics/MethodLength case when @ss.eos? th...
Allow many lines to Scanner#next_token
diff --git a/src/medpy/itkvtk/application/gradient.py b/src/medpy/itkvtk/application/gradient.py index <HASH>..<HASH> 100755 --- a/src/medpy/itkvtk/application/gradient.py +++ b/src/medpy/itkvtk/application/gradient.py @@ -14,11 +14,13 @@ import logging from medpy.io import load, save, header from medpy.core import L...
Minor change: A possible existance of the output file is now checked beforehand to save frustration.
diff --git a/dipper/sources/FlyBase.py b/dipper/sources/FlyBase.py index <HASH>..<HASH> 100644 --- a/dipper/sources/FlyBase.py +++ b/dipper/sources/FlyBase.py @@ -64,7 +64,7 @@ class FlyBase(PostgreSQLSource): # itself (watch out for is_not) ] - #columns = { WIP + # columns = { WIP #'gen...
fly bits cimments and prep
diff --git a/src/ui/InputPopover.js b/src/ui/InputPopover.js index <HASH>..<HASH> 100644 --- a/src/ui/InputPopover.js +++ b/src/ui/InputPopover.js @@ -48,7 +48,7 @@ export default class InputPopover extends Component { } componentDidMount() { - document.addEventListener('click', this._onDocumentClick); + ...
Fix Link and Image popover button not working in React <I> (#<I>)
diff --git a/www/src/pages/components/overlays.js b/www/src/pages/components/overlays.js index <HASH>..<HASH> 100644 --- a/www/src/pages/components/overlays.js +++ b/www/src/pages/components/overlays.js @@ -74,7 +74,7 @@ export default withLayout(function TooltipSection({ data }) { Overlay </LinkedHeadi...
Fixed spelling in documentation (#<I>)
diff --git a/src/main/java/com/relayrides/pushy/apns/util/ApnsPayloadBuilder.java b/src/main/java/com/relayrides/pushy/apns/util/ApnsPayloadBuilder.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/relayrides/pushy/apns/util/ApnsPayloadBuilder.java +++ b/src/main/java/com/relayrides/pushy/apns/util/ApnsPayloadBu...
Patch fail. Added a couple lines that were accidentally dropped from <I>cab<I>.
diff --git a/pyaxiom/netcdf/sensors/timeseries.py b/pyaxiom/netcdf/sensors/timeseries.py index <HASH>..<HASH> 100644 --- a/pyaxiom/netcdf/sensors/timeseries.py +++ b/pyaxiom/netcdf/sensors/timeseries.py @@ -520,7 +520,6 @@ class TimeSeries(object): @property def ncd(self): - warnings.warn('This prope...
Don't warn about using the .ncd method (#3)
diff --git a/naima/radiative.py b/naima/radiative.py index <HASH>..<HASH> 100644 --- a/naima/radiative.py +++ b/naima/radiative.py @@ -93,6 +93,8 @@ class BaseRadiative(object): else: out_unit = 'erg/s' + photon_energy = _validate_ene(photon_energy) + sed = (self.flux(photon_ener...
fix radiative sed when calling with dict or table
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -84,7 +84,7 @@ setup_kwargs = dict( ) setup_kwargs['install_requires'] = [ - 'tornado', 'trollius', 'lxml', 'chardet', 'sqlalchemy', + 'tornado', 'trollius', 'chardet', 'sqlalchemy', 'namedlist', 'html5lib', ]
setup.py: Drop lxml as hard requirement
diff --git a/mod/hotpot/db/update_to_v2.php b/mod/hotpot/db/update_to_v2.php index <HASH>..<HASH> 100644 --- a/mod/hotpot/db/update_to_v2.php +++ b/mod/hotpot/db/update_to_v2.php @@ -7,7 +7,7 @@ function hotpot_update_to_v2_1_16() { $length = 20; $field = 'name'; $table = 'hotpot_questions'; - $index = '{$tabl...
change single quotes to double quotes. Probable fix for bug <I>
diff --git a/tests/integration/mixins/track-relationships-test.js b/tests/integration/mixins/track-relationships-test.js index <HASH>..<HASH> 100644 --- a/tests/integration/mixins/track-relationships-test.js +++ b/tests/integration/mixins/track-relationships-test.js @@ -1,4 +1,5 @@ import Model, { hasMany, belongsTo, ...
Add default serializer with deprecation and removal of fallback serializer
diff --git a/lxd/instance/operationlock/operationlock.go b/lxd/instance/operationlock/operationlock.go index <HASH>..<HASH> 100644 --- a/lxd/instance/operationlock/operationlock.go +++ b/lxd/instance/operationlock/operationlock.go @@ -57,6 +57,8 @@ func Create(instanceID int, action string, reusable bool, reuse bool) (...
lxd/instance/operationlock: Exit go routine started in Create when the operation is done Otherwise I have observed that go routines can hang around for up to <I>s after operation is completed.
diff --git a/src/sentry_plugins/splunk/plugin.py b/src/sentry_plugins/splunk/plugin.py index <HASH>..<HASH> 100644 --- a/src/sentry_plugins/splunk/plugin.py +++ b/src/sentry_plugins/splunk/plugin.py @@ -180,6 +180,7 @@ class SplunkPlugin(CorePluginMixin, Plugin): headers={ 'Authori...
ref(splunk): Lower timeout to 5s
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -182,7 +182,8 @@ class mochaPlugin { // Verify that the service runtime matches with the current runtime let { runtime } = inited.provider; // Fix the real version for node10 - runtime = runtime.repla...
Check runtime var To avoid "Cannot read property 'replace' of undefined" error if provider dont have Node version.
diff --git a/tests/test_basic.py b/tests/test_basic.py index <HASH>..<HASH> 100644 --- a/tests/test_basic.py +++ b/tests/test_basic.py @@ -108,6 +108,13 @@ class TestBasic(unittest.TestCase): class NoMoreDocOrder(WithDocOrder): _doc_order = None + assert properties.Property('').equal(5, 5...
Add properties.Property.equal tests which fail
diff --git a/lib/runners/to-result.js b/lib/runners/to-result.js index <HASH>..<HASH> 100644 --- a/lib/runners/to-result.js +++ b/lib/runners/to-result.js @@ -2,9 +2,10 @@ var log = require('npmlog'); -module.exports = function toResult(launcherId, err, code, runnerProcess, config, testContext = {}) { +module.expo...
Make toResult compatiable with node4
diff --git a/src/pt-BR/validation.php b/src/pt-BR/validation.php index <HASH>..<HASH> 100644 --- a/src/pt-BR/validation.php +++ b/src/pt-BR/validation.php @@ -121,7 +121,7 @@ return [ 'city' => 'cidade', 'country' => 'país', 'date' => 'data', - ...
Update pt-br validation.php Minor type in the translation of the "day" word.
diff --git a/js/feature/featureFileReader.js b/js/feature/featureFileReader.js index <HASH>..<HASH> 100644 --- a/js/feature/featureFileReader.js +++ b/js/feature/featureFileReader.js @@ -156,17 +156,15 @@ var igv = (function (igv) { }; igv.FeatureFileReader.prototype.isIndexable = function () { + var...
track - config.localFile param removed.
diff --git a/test/cluster/cluster-registry-clusterSpec.js b/test/cluster/cluster-registry-clusterSpec.js index <HASH>..<HASH> 100644 --- a/test/cluster/cluster-registry-clusterSpec.js +++ b/test/cluster/cluster-registry-clusterSpec.js @@ -9,7 +9,7 @@ const connectionEndpointMock = { getConnectionCount() { return 8 }...
test: disabling cluster registry tests
diff --git a/src/main/java/org/minimalj/application/Configuration.java b/src/main/java/org/minimalj/application/Configuration.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/minimalj/application/Configuration.java +++ b/src/main/java/org/minimalj/application/Configuration.java @@ -70,12 +70,19 @@ public class ...
Configuration: java doesn't provide getContructor with specific classes
diff --git a/app/models/user.rb b/app/models/user.rb index <HASH>..<HASH> 100644 --- a/app/models/user.rb +++ b/app/models/user.rb @@ -2,7 +2,9 @@ class User < ActiveRecord::Base has_secure_password + # associations connected to tkh_content gem. Any page or comment model will do has_many :pages + has_ma...
Added has_many comments association.
diff --git a/tests/Models/EntryTest.php b/tests/Models/EntryTest.php index <HASH>..<HASH> 100644 --- a/tests/Models/EntryTest.php +++ b/tests/Models/EntryTest.php @@ -457,4 +457,22 @@ class EntryTest extends TestCase $this->assertEquals(['New Common Name'], $model->getAttributes()['cn']); $this->asser...
Added tests for setFirstAttribute and getFirstAttribute
diff --git a/src/ui/legend.js b/src/ui/legend.js index <HASH>..<HASH> 100644 --- a/src/ui/legend.js +++ b/src/ui/legend.js @@ -28,8 +28,8 @@ d3plus.ui.legend = function(vars) { var color_groups = {}, placed = [], data = vars.nodes.restricted ? vars.nodes.restricted : - vars.nodes...
legend colors should be determined from app data, not pooled data
diff --git a/spec/integration/memory_spec.rb b/spec/integration/memory_spec.rb index <HASH>..<HASH> 100644 --- a/spec/integration/memory_spec.rb +++ b/spec/integration/memory_spec.rb @@ -18,7 +18,7 @@ describe "Memory Leak" do load_defaults! GC.start - count_instances_of(klass).should == count + ...
memory_spec: objects become less is acceptable
diff --git a/lib/comma/version.rb b/lib/comma/version.rb index <HASH>..<HASH> 100644 --- a/lib/comma/version.rb +++ b/lib/comma/version.rb @@ -1,3 +1,3 @@ module Comma - VERSION = "3.0.3" + VERSION = "3.0.4" end
Bump gem patch version for customisable file extensions
diff --git a/releaf-core/spec/lib/template_field_type_mapper_spec.rb b/releaf-core/spec/lib/template_field_type_mapper_spec.rb index <HASH>..<HASH> 100644 --- a/releaf-core/spec/lib/template_field_type_mapper_spec.rb +++ b/releaf-core/spec/lib/template_field_type_mapper_spec.rb @@ -272,6 +272,15 @@ describe Releaf::Tem...
Added field_type_name_for_float test
diff --git a/lxd/container_lxc.go b/lxd/container_lxc.go index <HASH>..<HASH> 100644 --- a/lxd/container_lxc.go +++ b/lxd/container_lxc.go @@ -4157,6 +4157,31 @@ func (c *containerLXC) Restore(sourceContainer container, stateful bool) error { if c.IsRunning() { wasRunning = true + ephemeral := c.IsEphemeral() +...
lxd/containers: Fix snapshot restore on ephemeral Closes #<I>
diff --git a/Swat/SwatCellRenderer.php b/Swat/SwatCellRenderer.php index <HASH>..<HASH> 100644 --- a/Swat/SwatCellRenderer.php +++ b/Swat/SwatCellRenderer.php @@ -130,9 +130,8 @@ abstract class SwatCellRenderer extends SwatUIObject $css_class_name = substr($css_class_name, 1); $css_class_names[] = $css_cla...
fix an infinite loop bug. crisis averted svn commit r<I>
diff --git a/logger.go b/logger.go index <HASH>..<HASH> 100644 --- a/logger.go +++ b/logger.go @@ -10,8 +10,7 @@ import ( "time" ) -// LoggerEntry is the structure -// passed to the template. +// LoggerEntry is the structure passed to the template. type LoggerEntry struct { StartTime string Status int @@ -...
Remove newline character from default logging template + Clean up comments
diff --git a/test/unit/test_composites.py b/test/unit/test_composites.py index <HASH>..<HASH> 100644 --- a/test/unit/test_composites.py +++ b/test/unit/test_composites.py @@ -276,7 +276,7 @@ def get_url_tester_mock(identifier): return source -class UrlTesterChainTest( +class URLTesterChainTest( UrlTes...
Rename UrlTesterChainTest to URLTesterChainTest
diff --git a/green/runner.py b/green/runner.py index <HASH>..<HASH> 100644 --- a/green/runner.py +++ b/green/runner.py @@ -83,6 +83,8 @@ class GreenTestRunner(): # This blocks until the worker who is processing this # particular test actually finishes ...
Explicitly terminating and joining pools after we have finished, which makes it much easier to clean up after unit tests that exercise subprocesses on Windows.
diff --git a/src/bootstrap-table.js b/src/bootstrap-table.js index <HASH>..<HASH> 100644 --- a/src/bootstrap-table.js +++ b/src/bootstrap-table.js @@ -200,7 +200,7 @@ columns.push(column); }); - this.options.columns = $.extend(columns, this.options.columns); + this.options.columns ...
Fix for headers where data is split to html and js Tables with headers defined in markup (<th>Label<th>) and extra data (like visiblity) in JS would get existing Labels overwritten unless deep-extend is performed.
diff --git a/src/commands/open.js b/src/commands/open.js index <HASH>..<HASH> 100644 --- a/src/commands/open.js +++ b/src/commands/open.js @@ -8,9 +8,9 @@ const Logger = require('../logger.js'); async function open (params) { const { alias } = params.options; - const { org_id, app_id: appId } = await AppConfig.g...
Use `getAppDetails()` in `clever open`
diff --git a/djstripe/models.py b/djstripe/models.py index <HASH>..<HASH> 100644 --- a/djstripe/models.py +++ b/djstripe/models.py @@ -193,7 +193,7 @@ Use ``Customer.sources`` and ``Customer.subscriptions`` to access them. try: self._api_delete() except InvalidRequestError as exc: - ...
API Change breaks customer deleted on stripe sync (#<I>) When deleting a customer, check the entire error message string for "No such customer", as in newer versions of the API it is not at the beginning of the string.
diff --git a/client/src/views/channel.js b/client/src/views/channel.js index <HASH>..<HASH> 100644 --- a/client/src/views/channel.js +++ b/client/src/views/channel.js @@ -88,6 +88,10 @@ _kiwi.view.Channel = _kiwi.view.Panel.extend({ var nice = url, extra_html = ''; + if (url.m...
Patching XSS vulnerability The following message produces a clickable link that triggers JavaScript when clicked (pre-patch): javascript://www.google.com/?%0Aalert(0); Patch was designed to prevent this while maintaining support for arbitrary link protocols.
diff --git a/userns.go b/userns.go index <HASH>..<HASH> 100644 --- a/userns.go +++ b/userns.go @@ -113,7 +113,7 @@ func parseMountedFiles(containerMount, passwdFile, groupFile string) uint32 { size = u.Uid } if u.Gid > size { - size = u.Uid + size = u.Gid } } }
Coverity found an issue with copy and pasted code
diff --git a/agario-client.js b/agario-client.js index <HASH>..<HASH> 100644 --- a/agario-client.js +++ b/agario-client.js @@ -137,7 +137,28 @@ Client.prototype = { this.log('dump: ' + packet.toString()); this.emit('message', packet); - processor(this, packet); + + try { + ...
Event client.on.packetError added
diff --git a/will/plugins/storage.py b/will/plugins/storage.py index <HASH>..<HASH> 100644 --- a/will/plugins/storage.py +++ b/will/plugins/storage.py @@ -4,6 +4,11 @@ from will.decorators import respond_to, periodic, hear, randomly, route, rendere class StoragePlugin(WillPlugin): + @respond_to("^How big is the...
Adds "how big is the db?"
diff --git a/plugins/org.eclipse.xtext/src/org/eclipse/xtext/internal/ResourceServiceProviderDescriptor.java b/plugins/org.eclipse.xtext/src/org/eclipse/xtext/internal/ResourceServiceProviderDescriptor.java index <HASH>..<HASH> 100644 --- a/plugins/org.eclipse.xtext/src/org/eclipse/xtext/internal/ResourceServiceProvide...
[general] Improved handling of broken plugin.xml Catch NoClassDefFoundError and provide a meaningful log output. Change-Id: I<I>f<I>a<I>b6ca<I>c6b<I>bcb1b<I>b6a7cd
diff --git a/marklogic-sesame/src/test/java/com/marklogic/semantics/sesame/MarkLogicGraphPermsTest.java b/marklogic-sesame/src/test/java/com/marklogic/semantics/sesame/MarkLogicGraphPermsTest.java index <HASH>..<HASH> 100644 --- a/marklogic-sesame/src/test/java/com/marklogic/semantics/sesame/MarkLogicGraphPermsTest.jav...
change test to use pre-existing role
diff --git a/registry/storage/driver/swift/swift.go b/registry/storage/driver/swift/swift.go index <HASH>..<HASH> 100644 --- a/registry/storage/driver/swift/swift.go +++ b/registry/storage/driver/swift/swift.go @@ -39,6 +39,7 @@ import ( storagedriver "github.com/docker/distribution/registry/storage/driver" "github...
Show distribution version in User-Agent
diff --git a/ui/app/helpers/lazy-click.js b/ui/app/helpers/lazy-click.js index <HASH>..<HASH> 100644 --- a/ui/app/helpers/lazy-click.js +++ b/ui/app/helpers/lazy-click.js @@ -1,5 +1,4 @@ import Helper from '@ember/component/helper'; -import $ from 'jquery'; /** * Lazy Click Event @@ -10,7 +9,7 @@ import $ from 'j...
Remove jquery from the lazy-click helper
diff --git a/features/bootstrap/FeatureContext.php b/features/bootstrap/FeatureContext.php index <HASH>..<HASH> 100644 --- a/features/bootstrap/FeatureContext.php +++ b/features/bootstrap/FeatureContext.php @@ -7,8 +7,6 @@ use Behat\Behat\Context\ClosuredContextInterface, use \WP_CLI\Utils; -require_once 'PHPUnit/...
replace PHPUnit assertEquals() with homegrown variant
diff --git a/lib/vagrant/action/vm/import.rb b/lib/vagrant/action/vm/import.rb index <HASH>..<HASH> 100644 --- a/lib/vagrant/action/vm/import.rb +++ b/lib/vagrant/action/vm/import.rb @@ -22,10 +22,12 @@ module Vagrant end # Import completed successfully. Continue the chain - @app.call(e...
first middleware, import, moved to rescue for cleanup
diff --git a/sdk/go/src/sawtooth_sdk/processor/worker.go b/sdk/go/src/sawtooth_sdk/processor/worker.go index <HASH>..<HASH> 100644 --- a/sdk/go/src/sawtooth_sdk/processor/worker.go +++ b/sdk/go/src/sawtooth_sdk/processor/worker.go @@ -28,7 +28,7 @@ import ( ) // The main worker thread finds an appropriate handler a...
Make worker() queue a receive-only channel Making this a receive-only channel clarifies the intent and prevents sending on the channel.
diff --git a/builtin/providers/aws/resource_aws_rds_cluster_instance_test.go b/builtin/providers/aws/resource_aws_rds_cluster_instance_test.go index <HASH>..<HASH> 100644 --- a/builtin/providers/aws/resource_aws_rds_cluster_instance_test.go +++ b/builtin/providers/aws/resource_aws_rds_cluster_instance_test.go @@ -177,1...
provider/aws: Add db_param group to RDS Cluster Instance test
diff --git a/pyethereum/packeter.py b/pyethereum/packeter.py index <HASH>..<HASH> 100644 --- a/pyethereum/packeter.py +++ b/pyethereum/packeter.py @@ -64,11 +64,11 @@ class Packeter(object): dict((v, k) for k, v in disconnect_reasons_map.items()) SYNCHRONIZATION_TOKEN = 0x22400891 - PROTOCOL_VERSION ...
increase protocol version to 0x0f
diff --git a/lib/dentaku/calculator.rb b/lib/dentaku/calculator.rb index <HASH>..<HASH> 100644 --- a/lib/dentaku/calculator.rb +++ b/lib/dentaku/calculator.rb @@ -71,9 +71,14 @@ module Dentaku end if block_given? - result = yield - @memory = restore - return result + begin + ...
prevent errors from corrupting calculator memory Closes #<I>
diff --git a/activiti-engine/src/main/java/org/activiti/engine/repository/DeploymentBuilder.java b/activiti-engine/src/main/java/org/activiti/engine/repository/DeploymentBuilder.java index <HASH>..<HASH> 100644 --- a/activiti-engine/src/main/java/org/activiti/engine/repository/DeploymentBuilder.java +++ b/activiti-engi...
Javadoc fix for DeploymentBuilder