diff
stringlengths
65
26.7k
message
stringlengths
7
9.92k
diff --git a/lib/utils/copyEvents.js b/lib/utils/copyEvents.js index <HASH>..<HASH> 100644 --- a/lib/utils/copyEvents.js +++ b/lib/utils/copyEvents.js @@ -6,6 +6,7 @@ const _ = require('lodash'); module.exports = function copyEvents(from, to) { // Clone all events _.each(from._events, function(events, eventName)...
fix events will not be copied when there is only one
diff --git a/ftfy/fixes.py b/ftfy/fixes.py index <HASH>..<HASH> 100644 --- a/ftfy/fixes.py +++ b/ftfy/fixes.py @@ -210,11 +210,13 @@ def fix_text_and_explain(text): steps = [('encode', 'latin-1'), ('decode', 'windows-1252')] return fixed, steps except UnicodeDecodeError: -...
Document the case where we give up on decoding text as Windows-<I>. This includes fixing an inaccurate comment that appeared after it.
diff --git a/fireplace/card.py b/fireplace/card.py index <HASH>..<HASH> 100644 --- a/fireplace/card.py +++ b/fireplace/card.py @@ -91,7 +91,6 @@ class BaseCard(Entity): type = _TAG(GameTag.CARDTYPE, CardType.INVALID) aura = _TAG(GameTag.AURA, False) controller = _TAG(GameTag.CONTROLLER, None) - exhausted = _TAG(G...
Move exhausted tag to PlayableCard
diff --git a/hazelcast-wm/src/main/java/com/hazelcast/web/WebFilter.java b/hazelcast-wm/src/main/java/com/hazelcast/web/WebFilter.java index <HASH>..<HASH> 100644 --- a/hazelcast-wm/src/main/java/com/hazelcast/web/WebFilter.java +++ b/hazelcast-wm/src/main/java/com/hazelcast/web/WebFilter.java @@ -535,7 +535,8 @@ publi...
backport for issue #<I>
diff --git a/calligraphy/src/main/java/uk/co/chrisjenx/calligraphy/CalligraphyFactory.java b/calligraphy/src/main/java/uk/co/chrisjenx/calligraphy/CalligraphyFactory.java index <HASH>..<HASH> 100644 --- a/calligraphy/src/main/java/uk/co/chrisjenx/calligraphy/CalligraphyFactory.java +++ b/calligraphy/src/main/java/uk/co...
use whitespace just incase the user does something weird
diff --git a/src/BotApi.php b/src/BotApi.php index <HASH>..<HASH> 100644 --- a/src/BotApi.php +++ b/src/BotApi.php @@ -277,7 +277,7 @@ class BotApi /** * Use this method to send text messages. On success, the sent \TelegramBot\Api\Types\Message is returned. * - * @param int $chatId + * @param i...
fixes for issues #<I> and #<I>
diff --git a/src/Commands/PackageClone.php b/src/Commands/PackageClone.php index <HASH>..<HASH> 100644 --- a/src/Commands/PackageClone.php +++ b/src/Commands/PackageClone.php @@ -91,7 +91,12 @@ class PackageClone extends Command if (Str::contains($url, '@')) { $vendorAndPackage = explode(':', $url...
fix bug with clone url with .git on the end
diff --git a/lib/discordrb/gateway.rb b/lib/discordrb/gateway.rb index <HASH>..<HASH> 100644 --- a/lib/discordrb/gateway.rb +++ b/lib/discordrb/gateway.rb @@ -278,5 +278,17 @@ module Discordrb def handle_message(msg) end + + def send(data, opt = { type: :text }) + return if !@handshaked || @closed +...
Copy over WSCS' send method
diff --git a/test/legacy/node-8/main.js b/test/legacy/node-8/main.js index <HASH>..<HASH> 100644 --- a/test/legacy/node-8/main.js +++ b/test/legacy/node-8/main.js @@ -67,6 +67,11 @@ testArbitrary(fc.float({ next: true, noNaN: true })); // NaN is not properly rec testArbitrary(fc.double({ next: true, noNaN: true })); ...
✅ Add legacy tests for typed arrays (#<I>)
diff --git a/jsoup/src/main/java/org/hobsoft/microbrowser/jsoup/JsoupForm.java b/jsoup/src/main/java/org/hobsoft/microbrowser/jsoup/JsoupForm.java index <HASH>..<HASH> 100644 --- a/jsoup/src/main/java/org/hobsoft/microbrowser/jsoup/JsoupForm.java +++ b/jsoup/src/main/java/org/hobsoft/microbrowser/jsoup/JsoupForm.java @...
Simplify obtaining form's base URI
diff --git a/sesame/test_backends.py b/sesame/test_backends.py index <HASH>..<HASH> 100644 --- a/sesame/test_backends.py +++ b/sesame/test_backends.py @@ -75,15 +75,6 @@ class TestModelBackend(TestCase): self.assertEqual(user, None) self.assertIn("Invalid token", self.get_log()) - def test_type_e...
Remove test forgotten in <I>dd<I>.
diff --git a/src/main/java/io/appium/java_client/MobileBy.java b/src/main/java/io/appium/java_client/MobileBy.java index <HASH>..<HASH> 100644 --- a/src/main/java/io/appium/java_client/MobileBy.java +++ b/src/main/java/io/appium/java_client/MobileBy.java @@ -102,9 +102,13 @@ public abstract class MobileBy extends By { ...
#<I> fix. Issues that found by Codecy were fixed
diff --git a/pipenv/environments.py b/pipenv/environments.py index <HASH>..<HASH> 100644 --- a/pipenv/environments.py +++ b/pipenv/environments.py @@ -25,12 +25,6 @@ Some people don't like colors in their terminals, for some reason. Default is to show colors. """ -PIPENV_VERBOSITY = int(os.environ.get("PIPENV_VERBO...
Move PIPENV_VERBOSITY to correct place in alphabet Oops.
diff --git a/core-bundle/contao/library/Contao/Model/QueryBuilder.php b/core-bundle/contao/library/Contao/Model/QueryBuilder.php index <HASH>..<HASH> 100644 --- a/core-bundle/contao/library/Contao/Model/QueryBuilder.php +++ b/core-bundle/contao/library/Contao/Model/QueryBuilder.php @@ -83,6 +83,12 @@ class QueryBuilder...
[Core] Support the "HAVING" command in the `Model\QueryBuilder` class (see #<I>)
diff --git a/api/src/main/java/org/telegram/botapi/api/chat/Chat.java b/api/src/main/java/org/telegram/botapi/api/chat/Chat.java index <HASH>..<HASH> 100644 --- a/api/src/main/java/org/telegram/botapi/api/chat/Chat.java +++ b/api/src/main/java/org/telegram/botapi/api/chat/Chat.java @@ -1,5 +1,6 @@ package org.telegram...
Changed Chat#sendMessage(String) and Chat#sendMessage(SendableMessage) to include a TelegramBot argument in order to support multiple bots in one program
diff --git a/src/libs/customelement.js b/src/libs/customelement.js index <HASH>..<HASH> 100644 --- a/src/libs/customelement.js +++ b/src/libs/customelement.js @@ -29,14 +29,6 @@ export default class CustomElement { // create static factory method for creating dominstance ComponentClass.create = function($create_v...
customelement.js: removed unnecessary code
diff --git a/src/canari/unittests/maltego/entities.py b/src/canari/unittests/maltego/entities.py index <HASH>..<HASH> 100644 --- a/src/canari/unittests/maltego/entities.py +++ b/src/canari/unittests/maltego/entities.py @@ -1,6 +1,6 @@ from datetime import date, datetime, timedelta from canari.maltego.message import E...
Old entities unittests need to update
diff --git a/core/Common.php b/core/Common.php index <HASH>..<HASH> 100644 --- a/core/Common.php +++ b/core/Common.php @@ -471,7 +471,13 @@ class Common $ok = false; if ($varType === 'string') { - if (is_string($value)) $ok = true; + if (is_string($value) || is_...
do not lose value in case it is an integer or a float. Instead convert it to a string. Eg this returned the default value in the past: `Common::getRequestVar('param', 'string', 'default', array('param' => 5))` which can happen eg in BulkTracking etc. causing many values not to be tracked. Wondering if it breaks anythi...
diff --git a/lib/cucumber/cli/options.rb b/lib/cucumber/cli/options.rb index <HASH>..<HASH> 100644 --- a/lib/cucumber/cli/options.rb +++ b/lib/cucumber/cli/options.rb @@ -27,7 +27,7 @@ module Cucumber max = BUILTIN_FORMATS.keys.map{|s| s.length}.max FORMAT_HELP = (BUILTIN_FORMATS.keys.sort.map do |key| ...
Incorrect help text was bothering me.
diff --git a/quarkc/command.py b/quarkc/command.py index <HASH>..<HASH> 100644 --- a/quarkc/command.py +++ b/quarkc/command.py @@ -219,6 +219,7 @@ def main(args): else: assert False except compiler.QuarkError as err: + command_log.warn("") return err command_log...
Flush progress bar in case of compile errors
diff --git a/src/eth/NonceService.js b/src/eth/NonceService.js index <HASH>..<HASH> 100644 --- a/src/eth/NonceService.js +++ b/src/eth/NonceService.js @@ -26,7 +26,8 @@ export default class NonceService extends PublicService { getNonce() { return this.get('web3')._web3.eth.getTransactionCount( - this.get...
Include pending transactions in web3 count query
diff --git a/test_load_paul_pubring.py b/test_load_paul_pubring.py index <HASH>..<HASH> 100644 --- a/test_load_paul_pubring.py +++ b/test_load_paul_pubring.py @@ -72,7 +72,12 @@ pb3w = [PacketCounter(packets), '|', Timer("%s"), '|', Percentage(), Bar()] pbar3 = ProgressBar(maxval=_mv, widgets=pb3w).start() while le...
added some helpful error output to benchmark script
diff --git a/src/test/java/com/suse/salt/netapi/examples/GitModule.java b/src/test/java/com/suse/salt/netapi/examples/GitModule.java index <HASH>..<HASH> 100644 --- a/src/test/java/com/suse/salt/netapi/examples/GitModule.java +++ b/src/test/java/com/suse/salt/netapi/examples/GitModule.java @@ -30,8 +30,8 @@ public clas...
Remove tabs at the beguinning of the line.
diff --git a/lib/flapjack/processor.rb b/lib/flapjack/processor.rb index <HASH>..<HASH> 100755 --- a/lib/flapjack/processor.rb +++ b/lib/flapjack/processor.rb @@ -86,7 +86,7 @@ module Flapjack redis_version = Flapjack.redis.info['redis_version'] required_version = '2.6.12' - raise "Redis too ...
Only exit if we were able to detect redis' current version
diff --git a/bucket/option/put.go b/bucket/option/put.go index <HASH>..<HASH> 100644 --- a/bucket/option/put.go +++ b/bucket/option/put.go @@ -13,6 +13,7 @@ type PutObjectInput func(req *s3.PutObjectInput) func SSEKMSKeyID(keyID string) PutObjectInput { return func(req *s3.PutObjectInput) { req.SSEKMSKeyId = aws....
bucket: Set ServerSideEncryption = "aws:kms"
diff --git a/definitions/npm/koa_v2.x.x/flow_v0.94.x-/koa_v2.x.x.js b/definitions/npm/koa_v2.x.x/flow_v0.94.x-/koa_v2.x.x.js index <HASH>..<HASH> 100644 --- a/definitions/npm/koa_v2.x.x/flow_v0.94.x-/koa_v2.x.x.js +++ b/definitions/npm/koa_v2.x.x/flow_v0.94.x-/koa_v2.x.x.js @@ -8,7 +8,7 @@ * breaking: ctx.throw([stat...
[koa_v2.x.x.js] Update object types (#<I>) * Update koa types * Change undefined to void
diff --git a/faker/providers/person/en_GB/__init__.py b/faker/providers/person/en_GB/__init__.py index <HASH>..<HASH> 100644 --- a/faker/providers/person/en_GB/__init__.py +++ b/faker/providers/person/en_GB/__init__.py @@ -588,5 +588,5 @@ class Provider(PersonProvider): ('Watkins', 0.06), )) - prefix...
Remove period/fullstop from en_GB prefixes (#<I>)
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -27,7 +27,7 @@ setup( long_description=_get_description(), long_description_content_type="text/markdown", install_requires=["Django>=1.11,<2.3", "psycopg2-binary"], - extras_require={"development": ["python-c...
python-coveralls --> coveralls
diff --git a/pycbc/libutils.py b/pycbc/libutils.py index <HASH>..<HASH> 100644 --- a/pycbc/libutils.py +++ b/pycbc/libutils.py @@ -39,7 +39,7 @@ def pkg_config_libdirs(packages): raise ValueError("Package {0} cannot be found on the pkg-config search path".format(pkg)) libdirs = [] - for token in ...
Fix pycbc.libutils.pkg_config_libdirs to properly include system installs
diff --git a/lib/yard/server/commands/frames_command.rb b/lib/yard/server/commands/frames_command.rb index <HASH>..<HASH> 100644 --- a/lib/yard/server/commands/frames_command.rb +++ b/lib/yard/server/commands/frames_command.rb @@ -6,7 +6,9 @@ module YARD def run main_url = request.path.gsu...
Fix titles for File urls in frames
diff --git a/DependencyInjection/DoctrineExtension.php b/DependencyInjection/DoctrineExtension.php index <HASH>..<HASH> 100755 --- a/DependencyInjection/DoctrineExtension.php +++ b/DependencyInjection/DoctrineExtension.php @@ -154,7 +154,7 @@ class DoctrineExtension extends AbstractDoctrineExtension { $co...
[DoctrineBundle] Fixed loggin in DoctrineExtension not being taken into account
diff --git a/tests/rackspace/models/compute_v2/servers_tests.rb b/tests/rackspace/models/compute_v2/servers_tests.rb index <HASH>..<HASH> 100644 --- a/tests/rackspace/models/compute_v2/servers_tests.rb +++ b/tests/rackspace/models/compute_v2/servers_tests.rb @@ -11,4 +11,10 @@ Shindo.tests('Fog::Compute::RackspaceV2 | ...
[rackspace|computev2] aded test for bootstrap
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -30,7 +30,6 @@ setup( packages=["geojson"], package_dir={"geojson": "geojson"}, package_data={"geojson": ["*.rst"]}, - setup_requires=["nose==1.3.0"], tests_require=["nose==1.3.0", "coverage==3.6"], ...
Remove nose from setup_requires. Fixes #<I>
diff --git a/sphinx-prompt/__init__.py b/sphinx-prompt/__init__.py index <HASH>..<HASH> 100644 --- a/sphinx-prompt/__init__.py +++ b/sphinx-prompt/__init__.py @@ -103,7 +103,7 @@ class PromptDirective(rst.Directive): ).strip('\r\n') ) ...
Only strip trailing whitespace from lines to preserve indentation.
diff --git a/lib/schema/schema/compare/comparison.rb b/lib/schema/schema/compare/comparison.rb index <HASH>..<HASH> 100644 --- a/lib/schema/schema/compare/comparison.rb +++ b/lib/schema/schema/compare/comparison.rb @@ -28,11 +28,11 @@ module Schema def self.assure_schemas(control, compare) if not cont...
Control and compare classes are printed in the error message when inputs aren't Schema instances
diff --git a/examples/run_swag.py b/examples/run_swag.py index <HASH>..<HASH> 100644 --- a/examples/run_swag.py +++ b/examples/run_swag.py @@ -509,7 +509,7 @@ def main(): model.eval() eval_loss, eval_accuracy = 0, 0 nb_eval_steps, nb_eval_examples = 0, 0 - for input_ids, input_mask, se...
add tqdm to the process of eval Maybe better.
diff --git a/grails-bootstrap/src/main/groovy/org/codehaus/groovy/grails/resolve/GrailsRepoResolver.java b/grails-bootstrap/src/main/groovy/org/codehaus/groovy/grails/resolve/GrailsRepoResolver.java index <HASH>..<HASH> 100644 --- a/grails-bootstrap/src/main/groovy/org/codehaus/groovy/grails/resolve/GrailsRepoResolver....
fix for GRAILS-<I> "latest.release in plugin does not work in <I> RC2 against main grails repo"
diff --git a/lib/generators/engine_cart/install_generator.rb b/lib/generators/engine_cart/install_generator.rb index <HASH>..<HASH> 100644 --- a/lib/generators/engine_cart/install_generator.rb +++ b/lib/generators/engine_cart/install_generator.rb @@ -41,7 +41,7 @@ module EngineCart return if (system('git', 'chec...
Handling entry into .gitignore In cases where the last line of the .gitignore is a non-empty line, this patch ensures that the injected entry isn't concatonated with the non-empty line.
diff --git a/werkzeug/wsgi.py b/werkzeug/wsgi.py index <HASH>..<HASH> 100644 --- a/werkzeug/wsgi.py +++ b/werkzeug/wsgi.py @@ -691,8 +691,8 @@ def make_line_iter(stream, limit=None, buffer_size=10 * 1024): new_buf = [] for item in chain(buffer, new_data.splitlines(True)): new_...
Make make_line_iter operate on native strings Previously it was inconsistently broken, now it is consistently broken and produces more errors. That's not as bad as it sounds.
diff --git a/networkzero/core.py b/networkzero/core.py index <HASH>..<HASH> 100644 --- a/networkzero/core.py +++ b/networkzero/core.py @@ -267,6 +267,7 @@ def address(address=None): except socket.gaierror as exc: raise InvalidAddressError(host_or_ip, exc.errno) + _logger.debug("About to r...
Put a bit of extra tracing in
diff --git a/test/test_ops.py b/test/test_ops.py index <HASH>..<HASH> 100644 --- a/test/test_ops.py +++ b/test/test_ops.py @@ -46,9 +46,11 @@ class RoIOpTester(ABC): tol = 1e-3 if (x_dtype is torch.half or rois_dtype is torch.half) else 1e-5 torch.testing.assert_close(gt_y.to(y), y, rtol=tol, atol=tol...
Setting seeds for TestRoiPool backward. (#<I>)
diff --git a/openquake/engine/db/models.py b/openquake/engine/db/models.py index <HASH>..<HASH> 100644 --- a/openquake/engine/db/models.py +++ b/openquake/engine/db/models.py @@ -97,7 +97,7 @@ LOSS_TYPES = ["structural", "nonstructural", "fatalities", "contents"] #: relative tolerance to consider two risk outputs ...
increased tolerance to 8% Former-commit-id: c<I>e7d4f<I>bdfc7a6ae2ec8d<I>dc9cf<I>c<I>
diff --git a/openid/consumer/discover.py b/openid/consumer/discover.py index <HASH>..<HASH> 100644 --- a/openid/consumer/discover.py +++ b/openid/consumer/discover.py @@ -433,7 +433,7 @@ def discoverXRI(iname): def discoverNoYadis(uri): http_resp = fetchers.fetch(uri) - if http_resp.status != 200: + if ht...
[project @ Add <I> status check to openid.consumer.discover]
diff --git a/BimServer/src/org/bimserver/geometry/GeometryGenerationReport.java b/BimServer/src/org/bimserver/geometry/GeometryGenerationReport.java index <HASH>..<HASH> 100644 --- a/BimServer/src/org/bimserver/geometry/GeometryGenerationReport.java +++ b/BimServer/src/org/bimserver/geometry/GeometryGenerationReport.ja...
Fixed concurrency issue when writing debug files (endless loop...)
diff --git a/libraries/joomla/application/categories.php b/libraries/joomla/application/categories.php index <HASH>..<HASH> 100644 --- a/libraries/joomla/application/categories.php +++ b/libraries/joomla/application/categories.php @@ -281,7 +281,7 @@ class JCategories $this->_nodes[$result->id] = new JCategoryNod...
Correct fatal error when a category id of 0 is passed in; this was exposed as a problem with system test failurs on the CMS whem there was a failure to get the module params correctly. With this hange fall back to default works.
diff --git a/src/client/index.js b/src/client/index.js index <HASH>..<HASH> 100644 --- a/src/client/index.js +++ b/src/client/index.js @@ -115,7 +115,7 @@ const setOptions = ({ } // Universal method (client + server) -const getSession = async ({ req, ctx, triggerEvent = true } = {}) => { +export const getSession = ...
fix: export getSession [skip release] somehow the default export does not work in the dev app
diff --git a/auth/db/auth.php b/auth/db/auth.php index <HASH>..<HASH> 100644 --- a/auth/db/auth.php +++ b/auth/db/auth.php @@ -334,10 +334,12 @@ class auth_plugin_db extends auth_plugin_base { // simplify down to usernames $usernames = array(); - foreach ($users as $user) { - array...
Merged from MOODLE_<I>_STABLE: MDL-<I> - auth/db - suppress php warning when there are no users using db auth
diff --git a/sim_access.py b/sim_access.py index <HASH>..<HASH> 100644 --- a/sim_access.py +++ b/sim_access.py @@ -6,9 +6,9 @@ import difflib # read the contents of /etc/authorization with open('/etc/authorization','r') as file: content = file.read() -match = re.search('<key>system.privilege.taskport.debug</key>\s...
removing the debug key - this is not the cause of the issue. Travis have opened a bug to resolve this on their VMs
diff --git a/code/transform/QueuedExternalContentImporter.php b/code/transform/QueuedExternalContentImporter.php index <HASH>..<HASH> 100644 --- a/code/transform/QueuedExternalContentImporter.php +++ b/code/transform/QueuedExternalContentImporter.php @@ -61,8 +61,8 @@ abstract class QueuedExternalContentImporter extend...
Changed queued external importer to use the normal queue
diff --git a/src/components/container_factory/container_factory.js b/src/components/container_factory/container_factory.js index <HASH>..<HASH> 100644 --- a/src/components/container_factory/container_factory.js +++ b/src/components/container_factory/container_factory.js @@ -24,7 +24,7 @@ var ContainerFactory = BaseObje...
container factory: change source type to string to ensure that canplay works correctly
diff --git a/jsonschema/cli.py b/jsonschema/cli.py index <HASH>..<HASH> 100644 --- a/jsonschema/cli.py +++ b/jsonschema/cli.py @@ -22,10 +22,6 @@ def _json_file(path): return json.load(file) -def _read_from_stdin(stdin): - return json.loads(stdin.read()) - - parser = argparse.ArgumentParser( descr...
Might as well just inline it.
diff --git a/lib/shellter.rb b/lib/shellter.rb index <HASH>..<HASH> 100644 --- a/lib/shellter.rb +++ b/lib/shellter.rb @@ -1,5 +1,4 @@ require 'escape' -require 'popen4' require 'shellter/core_ext' diff --git a/lib/shellter/version.rb b/lib/shellter/version.rb index <HASH>..<HASH> 100644 --- a/lib/shellter/versio...
got rid of explicit popen4 requirement
diff --git a/test/Liip/RMT/Tests/Functional/TestsCheckTest.php b/test/Liip/RMT/Tests/Functional/TestsCheckTest.php index <HASH>..<HASH> 100644 --- a/test/Liip/RMT/Tests/Functional/TestsCheckTest.php +++ b/test/Liip/RMT/Tests/Functional/TestsCheckTest.php @@ -10,10 +10,10 @@ class TestsCheckTest extends \PHPUnit_Framewo...
Make mocks added in test-check timeout tests PHPUnit <I>-compatible
diff --git a/lib/wally/application.rb b/lib/wally/application.rb index <HASH>..<HASH> 100644 --- a/lib/wally/application.rb +++ b/lib/wally/application.rb @@ -11,7 +11,7 @@ end if ENV["MONGOHQ_URL"] Mongoid.configure do |config| - config.master = Mongo::Connection.from_uri(ENV["MONGOHQ_URL"]).db + config.ma...
Mongohq url still failing
diff --git a/poetry/console/commands/remove.py b/poetry/console/commands/remove.py index <HASH>..<HASH> 100644 --- a/poetry/console/commands/remove.py +++ b/poetry/console/commands/remove.py @@ -39,7 +39,7 @@ list of installed packages for key in poetry_content[section]: if key.lower() == ...
Fix remove's case insensitivity (#<I>)
diff --git a/src/main/java/com/github/greengerong/PrerenderSeoService.java b/src/main/java/com/github/greengerong/PrerenderSeoService.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/github/greengerong/PrerenderSeoService.java +++ b/src/main/java/com/github/greengerong/PrerenderSeoService.java @@ -262,7 +262,8 ...
Improved file extension checking. Updated logic to look for file extensions at the end of the URL, or just before the first question mark if one is present. This should prevent matching on subdomains or URL parameter values.
diff --git a/hcl/structure.go b/hcl/structure.go index <HASH>..<HASH> 100644 --- a/hcl/structure.go +++ b/hcl/structure.go @@ -33,9 +33,9 @@ type Blocks []*Block type Attributes map[string]*Attribute // Body is a container for attributes and blocks. It serves as the primary -// unit of heirarchical structure within...
hcl: fix minor typos in docs (#<I>)
diff --git a/src/frontend/org/voltdb/AdmissionControlGroup.java b/src/frontend/org/voltdb/AdmissionControlGroup.java index <HASH>..<HASH> 100644 --- a/src/frontend/org/voltdb/AdmissionControlGroup.java +++ b/src/frontend/org/voltdb/AdmissionControlGroup.java @@ -290,7 +290,11 @@ public class AdmissionControlGroup imple...
ENG-<I> removed @SnapshotRestore from latency stats
diff --git a/shared/util.go b/shared/util.go index <HASH>..<HASH> 100644 --- a/shared/util.go +++ b/shared/util.go @@ -385,7 +385,7 @@ func isSharedMount(file *os.File, pathName string) int { for scanner.Scan() { line := scanner.Text() rows := strings.Fields(line) - if !strings.HasSuffix(pathName, rows[3]) || ...
Fix logic for sharedmount check. Fixes #<I>
diff --git a/ayrton/tests/test_castt.py b/ayrton/tests/test_castt.py index <HASH>..<HASH> 100644 --- a/ayrton/tests/test_castt.py +++ b/ayrton/tests/test_castt.py @@ -48,6 +48,16 @@ class TestBinding (unittest.TestCase): self.assertTrue ('os' in self.c.seen_names) + def testTryExcept (self): + t=...
[+] test handling names defined in except: clauses.
diff --git a/reana_commons/models.py b/reana_commons/models.py index <HASH>..<HASH> 100644 --- a/reana_commons/models.py +++ b/reana_commons/models.py @@ -90,7 +90,7 @@ class Workflow(Base, Timestamp): id_ = Column(UUIDType, primary_key=True) name = Column(String(255)) run_number = Column(Integer) - w...
models: increase string sizes * Increases the sizes of string fields that could grow large.
diff --git a/map/__init__.py b/map/__init__.py index <HASH>..<HASH> 100644 --- a/map/__init__.py +++ b/map/__init__.py @@ -1 +1 @@ -__all__ = ['MapArgumentParser', 'MapConstants', 'mapper', 'version'] +__all__ = ['map_argument_parser', 'map_constants', 'mapper', 'version']
Updated due to the renaming of modules.
diff --git a/src/PeskyCMF/Db/Traits/ResetsPasswordsViaAccessKey.php b/src/PeskyCMF/Db/Traits/ResetsPasswordsViaAccessKey.php index <HASH>..<HASH> 100644 --- a/src/PeskyCMF/Db/Traits/ResetsPasswordsViaAccessKey.php +++ b/src/PeskyCMF/Db/Traits/ResetsPasswordsViaAccessKey.php @@ -19,6 +19,7 @@ trait ResetsPasswordsViaAcc...
ResetsPasswordsViaAccessKey->getPasswordRecoveryAccessKey() - added user data reloading to fix problems with outdated timestamps
diff --git a/lib/http/client.rb b/lib/http/client.rb index <HASH>..<HASH> 100644 --- a/lib/http/client.rb +++ b/lib/http/client.rb @@ -3,13 +3,7 @@ module Http class Client # I swear I'll document that nebulous options hash def initialize(uri, options = {}) - if uri.is_a? URI - @uri = uri - ...
Last responsible moment for coercing URI
diff --git a/adapters/src/main/java/org/jboss/jca/adapters/jdbc/WrappedConnection.java b/adapters/src/main/java/org/jboss/jca/adapters/jdbc/WrappedConnection.java index <HASH>..<HASH> 100644 --- a/adapters/src/main/java/org/jboss/jca/adapters/jdbc/WrappedConnection.java +++ b/adapters/src/main/java/org/jboss/jca/adapte...
[JBJCA-<I>] JDBC adapter WrappedConnection: fix beginRequest lookup bug
diff --git a/bokeh/protocol.py b/bokeh/protocol.py index <HASH>..<HASH> 100644 --- a/bokeh/protocol.py +++ b/bokeh/protocol.py @@ -108,7 +108,8 @@ class BokehJSONEncoder(json.JSONEncoder): return self.transform_python_types(obj) def serialize_json(obj, encoder=BokehJSONEncoder, **kwargs): - return js...
Easier debugging.
diff --git a/cli.js b/cli.js index <HASH>..<HASH> 100755 --- a/cli.js +++ b/cli.js @@ -23,6 +23,7 @@ var optimist = require('optimist') var couchjs = require('./couchjs') var console = require('./console') +var LineStream = require('./stream') var INPUT = { 'waiting': false , 'queue' : [] @@ -54,11...
Pipe stdin through the LineStream
diff --git a/src/RocknRoot/StrayFw/Database/Postgres/Schema.php b/src/RocknRoot/StrayFw/Database/Postgres/Schema.php index <HASH>..<HASH> 100644 --- a/src/RocknRoot/StrayFw/Database/Postgres/Schema.php +++ b/src/RocknRoot/StrayFw/Database/Postgres/Schema.php @@ -71,6 +71,8 @@ class Schema extends ProviderSchema *...
fix #<I> SQL data building
diff --git a/osbs/build/spec.py b/osbs/build/spec.py index <HASH>..<HASH> 100644 --- a/osbs/build/spec.py +++ b/osbs/build/spec.py @@ -315,12 +315,13 @@ class BuildSpec(object): self.name.value = make_name_from_git(self.git_uri.value, self.git_branch.value) self.group_manifests.value = group_manifests...
spec.py: set builder_build_json_dir value for flatpaks too
diff --git a/cmd/broker.go b/cmd/broker.go index <HASH>..<HASH> 100644 --- a/cmd/broker.go +++ b/cmd/broker.go @@ -50,6 +50,7 @@ and personalized devices (with their network session keys) with the router. } hdlAdapter.Bind(handlers.Collect{}) hdlAdapter.Bind(handlers.PubSub{}) + hdlAdapter.Bind(handlers.Appli...
[issue#<I>] Add Applications handler to broker cli
diff --git a/api/client.js b/api/client.js index <HASH>..<HASH> 100644 --- a/api/client.js +++ b/api/client.js @@ -57,7 +57,7 @@ module.exports = new (function(){ */ this.observe = function(itemID, propName, callback) { if (typeof itemID != 'number' || !propName || !callback) { log("observe requires three argum...
Allow for a subscription chain to be passed in as an array, in addition to as a period "." seperated string
diff --git a/src/main/java/hex/glm/GLM2.java b/src/main/java/hex/glm/GLM2.java index <HASH>..<HASH> 100644 --- a/src/main/java/hex/glm/GLM2.java +++ b/src/main/java/hex/glm/GLM2.java @@ -562,7 +562,7 @@ public class GLM2 extends ModelJob { callback.addToPendingCount(n_folds-1); double proximal_penalty = 0; ...
GLM2 update. added missing change from my previous commit.
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -153,7 +153,8 @@ Keeper.prototype._doPut = function (key, value) { .then(function (exists) { if (exists) { debug('put aborted, value exists', key) - throw new Error('value for this key already exist...
don't throw err on put for existing key/val
diff --git a/tasks/lib/uglify.js b/tasks/lib/uglify.js index <HASH>..<HASH> 100644 --- a/tasks/lib/uglify.js +++ b/tasks/lib/uglify.js @@ -152,7 +152,7 @@ exports.init = function(grunt) { } if (options.indentLevel !== undefined) { - outputOptions.indent_level = options.indentLevel + outputOptions....
Add missing semicolon in `tasks/lib/uglify.js` JSHint didn't like it not being there.
diff --git a/eZ/Publish/Core/REST/Server/Input/Parser/Query.php b/eZ/Publish/Core/REST/Server/Input/Parser/Query.php index <HASH>..<HASH> 100644 --- a/eZ/Publish/Core/REST/Server/Input/Parser/Query.php +++ b/eZ/Publish/Core/REST/Server/Input/Parser/Query.php @@ -29,10 +29,10 @@ abstract class Query extends CriterionPar...
Add mention of scoring in deprecation message for REST Criteria
diff --git a/salt/state.py b/salt/state.py index <HASH>..<HASH> 100644 --- a/salt/state.py +++ b/salt/state.py @@ -966,7 +966,7 @@ class HighState(object): errors.append(err) else: for sub_sls in state.pop('include'): - if...
Use in operator to check for existence in set.
diff --git a/sample/src/main/java/com/github/pedrovgs/sample/MainActivity.java b/sample/src/main/java/com/github/pedrovgs/sample/MainActivity.java index <HASH>..<HASH> 100644 --- a/sample/src/main/java/com/github/pedrovgs/sample/MainActivity.java +++ b/sample/src/main/java/com/github/pedrovgs/sample/MainActivity.java @...
Add copyright to the first project java file
diff --git a/jumper_logging_agent/agent.py b/jumper_logging_agent/agent.py index <HASH>..<HASH> 100644 --- a/jumper_logging_agent/agent.py +++ b/jumper_logging_agent/agent.py @@ -12,14 +12,14 @@ import logging import errno import threading from importlib import import_module -import itertools -import keen import ti...
changed keen event store to log to jumper's url
diff --git a/karma.conf.js b/karma.conf.js index <HASH>..<HASH> 100644 --- a/karma.conf.js +++ b/karma.conf.js @@ -31,8 +31,6 @@ module.exports = function (config) { {pattern: 'node_modules/@angular/**/*.js', included: false, watched: false}, {pattern: 'node_modules/@angular/**/*.js.map', incl...
fix(build): removed unneeded path
diff --git a/pydoop/hdfs/fs.py b/pydoop/hdfs/fs.py index <HASH>..<HASH> 100644 --- a/pydoop/hdfs/fs.py +++ b/pydoop/hdfs/fs.py @@ -627,6 +627,8 @@ class hdfs(object): def _walk(self, top): "" + if isinstance(top, basestring): + top = self.get_path_info(top) yield top ...
fs.walk now fails only if iterated. Back to its previous behavior.
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100755 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ from setuptools import setup setup( name='xdot', - version='1.0', + version='1.1', author='Jose Fonseca', author_email='jose.r.fonseca@gmail.com', url='https://github.com/jrfonseca/x...
Bump to version <I>.
diff --git a/WrightTools/kit.py b/WrightTools/kit.py index <HASH>..<HASH> 100644 --- a/WrightTools/kit.py +++ b/WrightTools/kit.py @@ -853,7 +853,7 @@ def diff(xi, yi, order=1): def fft(xi, yi, axis=0): - """Take the 1D FFT of an N-dimensional array and return "sensible" arrays which are shifted properly. + ...
Reword fft docstring to adhere to line length convention
diff --git a/host.go b/host.go index <HASH>..<HASH> 100644 --- a/host.go +++ b/host.go @@ -206,9 +206,26 @@ func (h *Host) ConfigureAuth() error { return nil } - ip, err := h.Driver.GetIP() - if err != nil { - return err + var ( + ip = "" + ipErr error + maxRetries = 4 + ) + + for i := 0; i < ma...
allow retries for getIp when issuing cert
diff --git a/main/core/Manager/ResourceManager.php b/main/core/Manager/ResourceManager.php index <HASH>..<HASH> 100644 --- a/main/core/Manager/ResourceManager.php +++ b/main/core/Manager/ResourceManager.php @@ -1152,12 +1152,12 @@ class ResourceManager $obj = $event->getItem(); ...
[CoreBundle] Uses utf-8 string with ZiPArchive and #<I> detection. (#<I>)
diff --git a/src/Psalm/Checker/FunctionLikeChecker.php b/src/Psalm/Checker/FunctionLikeChecker.php index <HASH>..<HASH> 100644 --- a/src/Psalm/Checker/FunctionLikeChecker.php +++ b/src/Psalm/Checker/FunctionLikeChecker.php @@ -853,6 +853,16 @@ abstract class FunctionLikeChecker extends SourceChecker implements Statemen...
Make brand-new return types more accurate
diff --git a/src/support/shotgun_toolkit/rez_app_launch.py b/src/support/shotgun_toolkit/rez_app_launch.py index <HASH>..<HASH> 100755 --- a/src/support/shotgun_toolkit/rez_app_launch.py +++ b/src/support/shotgun_toolkit/rez_app_launch.py @@ -54,8 +54,14 @@ class AppLaunch(tank.Hook): from rez.resolved_con...
add shotgun toolkit support for nuke, houdini and katana
diff --git a/xclim/ensembles/_reduce.py b/xclim/ensembles/_reduce.py index <HASH>..<HASH> 100644 --- a/xclim/ensembles/_reduce.py +++ b/xclim/ensembles/_reduce.py @@ -190,6 +190,7 @@ def kmeans_reduce_ensemble( -------- >>> import xclim >>> from xclim.ensembles import create_ensemble, kmeans_reduce_ensem...
Use indices to bypass metadata checks
diff --git a/config/karma.conf-ci.js b/config/karma.conf-ci.js index <HASH>..<HASH> 100644 --- a/config/karma.conf-ci.js +++ b/config/karma.conf-ci.js @@ -117,7 +117,7 @@ module.exports = function (config) { * possible values: 'dots', 'progress' * available reporters: https://npmjs.org/browse/keyword/karma-...
Removed dots reporter (#<I>)
diff --git a/cmd/burrow/commands/deploy.go b/cmd/burrow/commands/deploy.go index <HASH>..<HASH> 100644 --- a/cmd/burrow/commands/deploy.go +++ b/cmd/burrow/commands/deploy.go @@ -39,7 +39,7 @@ func Deploy(output Output) func(cmd *cli.Cmd) { defaultGasOpt := cmd.StringOpt("g gas", "1111111111", "default gas to us...
Reduce the number of concurrent solc's we run This is causing file systems errors on Mac.
diff --git a/configs/tslint-vscode.js b/configs/tslint-vscode.js index <HASH>..<HASH> 100644 --- a/configs/tslint-vscode.js +++ b/configs/tslint-vscode.js @@ -9,7 +9,6 @@ const PICKING_RULE_NAMES = [ 'import-groups', 'scoped-modules', 'import-path-base-url', - 'explicit-return-type', ]; const {rules, rule...
Remove explicit-return-type from vscode lint config
diff --git a/specs-go/version.go b/specs-go/version.go index <HASH>..<HASH> 100644 --- a/specs-go/version.go +++ b/specs-go/version.go @@ -11,7 +11,7 @@ const ( VersionPatch = 0 // VersionDev indicates development branch. Releases will be empty string. - VersionDev = "-rc3-dev" + VersionDev = "-rc4" ) // Vers...
version: release <I>-rc4
diff --git a/qgispluginreleaser/entry_point.py b/qgispluginreleaser/entry_point.py index <HASH>..<HASH> 100644 --- a/qgispluginreleaser/entry_point.py +++ b/qgispluginreleaser/entry_point.py @@ -5,11 +5,12 @@ import os import shutil import subprocess import time - +import codecs def prerequisites_ok(): if os...
use codec in conjunction with "utf8" to read and write files
diff --git a/app/code/community/Aoe/Scheduler/Model/Observer.php b/app/code/community/Aoe/Scheduler/Model/Observer.php index <HASH>..<HASH> 100644 --- a/app/code/community/Aoe/Scheduler/Model/Observer.php +++ b/app/code/community/Aoe/Scheduler/Model/Observer.php @@ -259,13 +259,14 @@ class Aoe_Scheduler_Model_Observer ...
Added message to skipped tasks because of piles
diff --git a/fermipy/diffuse/gt_merge_srcmaps.py b/fermipy/diffuse/gt_merge_srcmaps.py index <HASH>..<HASH> 100755 --- a/fermipy/diffuse/gt_merge_srcmaps.py +++ b/fermipy/diffuse/gt_merge_srcmaps.py @@ -102,7 +102,8 @@ class GtMergeSourceMaps(object): for source_name in source_names: try: ...
Speed up gt_merge_srcmaps.py by adding source directly to c++ likelihood object
diff --git a/jgrassgears/src/main/java/eu/hydrologis/jgrass/jgrassgears/i18n/MessageHandler.java b/jgrassgears/src/main/java/eu/hydrologis/jgrass/jgrassgears/i18n/MessageHandler.java index <HASH>..<HASH> 100644 --- a/jgrassgears/src/main/java/eu/hydrologis/jgrass/jgrassgears/i18n/MessageHandler.java +++ b/jgrassgears/s...
fixes for: Bug: Incorrect lazy initialization and update of static field
diff --git a/environs/jujutest/livetests.go b/environs/jujutest/livetests.go index <HASH>..<HASH> 100644 --- a/environs/jujutest/livetests.go +++ b/environs/jujutest/livetests.go @@ -224,7 +224,10 @@ func (t *LiveTests) checkUpgradeMachineAgent(c *C, st *state.State, m *state.Mac } tools, err := m.AgentTools() c....
environs/jujutest: fix tools comparison
diff --git a/test/integration/contract-aci.js b/test/integration/contract-aci.js index <HASH>..<HASH> 100644 --- a/test/integration/contract-aci.js +++ b/test/integration/contract-aci.js @@ -395,6 +395,17 @@ describe('Contract instance', function () { } }]) }) + + it('calls a contract that emits...
fix(contract events): don't throw error if events emitted by remote
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,3 @@ -# coding=utf-8 """ GitHub-Flask ------------ @@ -29,7 +28,7 @@ setup( version=get_version(), url='http://github.com/cenkalti/github-flask', license='MIT', - author=u'Cenk Altı', + author='...
workaround for python3 install bug
diff --git a/lib/frameit/offsets.rb b/lib/frameit/offsets.rb index <HASH>..<HASH> 100644 --- a/lib/frameit/offsets.rb +++ b/lib/frameit/offsets.rb @@ -9,13 +9,13 @@ module Frameit case screenshot.screen_size when size::IOS_55 return { - 'offset' => '+42+147', - ...
Fix little offset on iPhone 6 and iPhone 6 Plus
diff --git a/src/core/vr-scene.js b/src/core/vr-scene.js index <HASH>..<HASH> 100644 --- a/src/core/vr-scene.js +++ b/src/core/vr-scene.js @@ -127,7 +127,7 @@ var VRScene = module.exports = registerElement( }, elementLoaded: { - value: function (node) { + value: function () { ...
It accounts for the default camera in the pending elements. This ensures that rendering triggers only when the camera is ready