results comment
__label__perfective Add marble diagrams for Single operators.--
__label__perfective Change hasException to hasThrowable--
__label__features Trying to extend the Scheduler interface according- to the comments at -19.--
__label__features RunAsync method for outputting multiple values--
__label__corrective forEach with Action1 but not Observer--I re-read the MSDN docs and found the previous implementation wasn't complying with the contract.--http://msdn.microsoft.com/en-us/library/hh211815(v=vs.103).aspx--I believe this now does.-
__label__perfective Extract UnsubscribeTester to top level--
__label__perfective Some cleaning up--
__label__corrective Trying to fix non-deterministic test--- not sure of a way other than putting Thread.sleep in here to give time after each CountDownLatch triggers for the process scheduler to execute the next line of each thread--See https://github.com/Netflix/RxJava/pull/201 for more information.-
__label__corrective 1.x: Fix Completable swallows- OnErrorNotImplementedException (-3904)--
__label__corrective Fix unit test after last() changed behavior--
__label__perfective Incoporate review suggestions.--Splits a compound unit test into to parts.-Uses mockito instead of a bespoke test object.-Removes unused import statements.-Changes the order of the Finally action w.r.t. onComplete/onError.-
__label__corrective Fixed byLine test to use line.separator system- property instead of \n.--
__label__features Add CompositeSubscription--- also a utility method for creating a Subscription around a Future-
__label__perfective "Spare a few redundant calls in SleepingAction- around determining the delay value (-3903)--- Remove redundant outer conditional.-- Skip calling into System.currentTimeMillis()  which could potentially result in different values.-"
__label__perfective Adding missing javadocs to TestSubject (-1322)--
__label__features Added takeLast to Observable--
__label__perfective "Reduce duplication by making ""schedule now"" the- special case--Forwards to ""schedule later"" with delay of 0 now.-"
__label__corrective "Wraps DoOnEach in a SafeObserver--This commit leverages the SafeObserver facility to get the desired-behavior in the face of exceptions.  Specifically  if any of the-operations performed within the doOnEach handler raises an exception -that exception will propagate through the observable chain.-"
__label__perfective "Switch to AtomicIntegerFieldUpdater and volatile- int  instead of AtomicBoolean--"
__label__perfective Refactored TakeUntil to use TakeWhile.--
__label__perfective Removed window between the two synchronized blocks.--
__label__perfective Added license header to OperationBuffer.--
__label__perfective ---
__label__perfective Forward subscription of wrapped subscriber--
__label__perfective additions to tests--
__label__corrective TakeWhile protect calls to predicate--
__label__perfective subscribe methods with typed Action arguments--
__label__perfective Restructure into smaller files--
__label__corrective Set threads to daemons so they don't prevent system- from exiting--- This applies to any pools RxJava itself creates. It will be up to users to do this for Executors they inject.-
__label__perfective Confusing Javadoc for `toObservable(Future)`- methods--https://github.com/Netflix/RxJava/issues/148-
__label__features Implement a cached thread scheduler using event- loops--
__label__corrective non-deterministic- testUserSubscriberUsingRequestAsync--fix non-deterministic failures of BackpressureTests.testUserSubscriberUsingRequestAsync--I was able to replicate the occasional failure by putting it in a tight loop. With these changes it no longer fails.-
__label__corrective "Fix multiple subscription bug on operation filter--A new subscription must be created on every subscribe call  otherwise any-subscribe call after the first directly fails.-"
__label__corrective "Update Observable.isInternalImplementation  get rid- of NullPointerException--NullPointerException has been encountered during my tests. It is because java.lang.Class.getPackage() may return null ""... if no package information is available from the archive or codebase"" (documented feature).-"
__label__perfective Perf Tests with JMH--
__label__features Add operators to create Observables from- BroadcastReceiver--it allows to listen global and local (with support LocalBroadcastManager) broadcasts-
__label__perfective unit tests for covariance--- refactoring so not everything for the entire Observable ends up in a single class-
__label__perfective Remove Unnecessary Subscription--- be explicit for error case in JoinObserver-
__label__corrective Fixed issue -417--
__label__perfective add synchronous test of resubscribe after error--
__label__perfective "added variance to Action*  too--"
__label__perfective Cleanup Javadocs--
__label__features Added ChannelObservable.get--
__label__corrective "Added create with initial capacity  minor fix--"
__label__perfective Move last 6 remaining unit tests out.--
__label__corrective Delay: error cut ahead was not properly serialized--
__label__corrective Switched to a default scheduler that actually works- together with this operator.--
__label__perfective "updated a test and added another one  trying to get- the expected behavior right--"
__label__corrective 1.x: fix Completable.onErrorComplete(Func1) not- relaying function crash (-4027)--
__label__perfective "Better naming  and new test--... using to compare 0.19 and 0.20 so want in both.-"
__label__perfective Add unit tests for recursive scheduler usage--These tests came from @mairbek at https://github.com/Netflix/RxJava/pull/229-issuecomment-16115941-
__label__features "Implemented periodic scheduling  too. Needs testing- now.--"
__label__corrective "fix sticky intent duplication  add tests for- OperatorBroadcast--"
__label__perfective Make Functions.from typesafe--
__label__features Add Single.doAfterTerminate()--
__label__perfective made the public window methods more generic via the- basic (lol) super/extends fluff; also simplified api by removing a few- useless super definitions (there's no super of Opening and Closing)--
__label__perfective Baseline Performance Tests--Start of suite of general performance tests for comparing overall changes.-
__label__perfective made WINDOW_MAKER typed--
__label__perfective "Change order of generics for Func from R  T to T  R- to match C- Rx--"
__label__perfective Removed synchronized block as per RxJava guidelines- (6.7).--
__label__perfective Better name for worker class running scheduled- actions--
__label__corrective CurrentThreadScheduler Memory Leak Fixed-MIME-Version: 1.0-Content-Type: text/plain; charset=UTF-8-Content-Transfer-Encoding: 8bit--- Current/Immediate/NewThread/Executor Schedulers are passing unit tests-- Current/NewThread/Executor Schedulers do not leak memory on the recursion test (Immediate can’t be used for recursion otherwise it stack overflows)-
__label__perfective Refactoring for consistent implementation approach.--Combined ObservableExtensions into Observable to match how Rx works (Observable.* methods)-
__label__corrective Performance refactoring: OperatorSubscribeFunction--- migrated Func1 to OperatorSubscribeFunction for internal operator implementations-- do not wrap with AtomicObserver when it's a trusted operator--https://github.com/Netflix/RxJava/issues/104-
__label__perfective javadoc interlinkings and other javadoc- improvements--
__label__perfective "use Java Subject<T  R> as contravariant in T and- covariant in R--"
__label__perfective Prevent direct instantiation of BlockingObservable- via no-arg constructor--- also questioning why to allow extending this and would like to make it a private constructor-
__label__corrective GroupBy GroupedObservables should not re-subscribe- to parent sequence--https://github.com/Netflix/RxJava/issues/282--Refactored to maintain a single subscription that propagates events to the correct child GroupedObservables.-
__label__perfective Handle concurrent unsubscription in drain (avoid- NPE).--
__label__perfective tidying up AbstractOnSubscribe javadocs--
__label__corrective Fix termination race condition in- OperatorPublish.dispatch--
__label__corrective Unlock in finally block--
__label__perfective Incorporate review suggestions.--- Changes finally0 to finallyDo.-- Removes unnecessary subscription-wrapping.-- Handle exceptions in onCompleted/onError-
__label__features As per suggestions: Added single static instance of- ExecutorService for delayed posting Introduced ScheduledIOSAction to enable- CompositeSubscription--
__label__perfective Refactor test to use CountDownLatch instead of- Thread.sleep--
__label__features Add doOnSubscribe for Single--
__label__perfective Beef up UnsubscribeTester--
__label__corrective Fixed issue -799 - Added break to possibly-infinite- loop in CompositeException.attachCallingThreadStack--
__label__corrective Fix the initialization of Completable.complete()- (-4146)--
__label__perfective 1.x: ConcatMapEager allow nulls from inner- Observables.--
__label__features "Implement Scheduler method with dueTime--- added method: schedule(T state  Func2<Scheduler  T  Subscription> action  Date dueTime)-"
__label__perfective Fix non-deterministic unit test--
__label__corrective Fix autoConnect calling onStart twice.--
__label__features 1.x: Expose Single.lift()--
__label__features Implemented range operator--
__label__perfective ObserveOn/SubscribeOn unit tests--
__label__perfective GroupBy Test Improvement--ObserveOn was the wrong mechanism for delaying behavior as it was relying on the buffering of observeOn.-Now using delay() to delay the group since observeOn no longer buffers.-
__label__perfective "Fixed javadoc and comments  cleaned up a bit  and- tried to fix synchronization.--"
__label__perfective Add finally0 to Observable.java .--
__label__features Add takeUntil support in Single--
__label__perfective ObserveOn and SubscribeOn concurrency unit tests--- these are very rudimentary and may have a determinism problem due to the Thread.sleep-
__label__perfective avoiding some synchronization on combineLatest--
__label__corrective Fixed a bug in the test scheduler that happened- when advancing time by a too little amount--
__label__features Non-blocking implementation of ScheduledObserver--
__label__corrective Conditionals: Fix all but 2 tests--
__label__perfective Conditionals: Fix all but 2 tests--
__label__corrective Fix for back pressure on the alternate- subscription.--
__label__corrective add error handling for onNext failure so exceptions- don't get thrown up the stack but instead via onError--
__label__features Add Single.fromCallable()--
__label__perfective remove warnings and cleanup--
__label__corrective HBASE-2513 hbase-2414 added bug where we'd- tight-loop if no root available--git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@941546 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective HBASE-4606  Remove spam in HCM and fix a- list.size == 0--git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1185326 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective HBASE-11813 CellScanner-advance may overflow- stack--
__label__corrective HBASE-11671 TestEndToEndSplitTransaction fails on- master (Mikhail Antonov)--
__label__corrective HBASE-10010 eliminate the put latency spike on- the new log file beginning--git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1549384 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective HBASE-7579 HTableDescriptor equals method fails- if results are returned in a different order; REVERT -- OVERCOMMITTED--git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1471053 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective HBASE-9366 TestHTraceHooks.testTraceCreateTable- errors out sometimes.--git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1523816 13f79535-47bb-0310-9956-ffa450edef68-
__label__perfective HBASE-3746  Clean up CompressionTest to not- directly reference DistributedFileSystem--git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1089684 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective HBASE-5857 RIT map in RS not getting cleared- while region opening--git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1329470 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective HBASE-13958 RESTApiClusterManager calls kill()- instead of suspend() and resume()--
__label__corrective HBASE-5549 HBASE-5572 Master can fail if- ZooKeeper session expires (N Keywal)--git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1301775 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective HBASE-14807 TestWALLockup is flakey--
__label__corrective HBASE-2040  Fixes to group commit--git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@889775 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective HADOOP-1424. TestHBaseCluster fails with- IllegalMonitorStateException. Fix regression introduced by HADOOP-1397.--git-svn-id: https://svn.apache.org/repos/asf/lucene/hadoop/trunk/src/contrib/hbase@541095 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective HBASE-2806 DNS hiccups cause uncaught NPE in- HServerAddress-getBindAddress--git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@960650 13f79535-47bb-0310-9956-ffa450edef68-
__label__perfective HBASE-1192 LRU-style map for the block cache--git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@780527 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective "HBASE-1647 Filter-filterRow is called too often - filters rows it shouldn't have -- reversed it for a moment; it may have- broken things -- not sure yet--git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@798510 13f79535-47bb-0310-9956-ffa450edef68-"
__label__features HBASE-3070 Add to hbaseadmin means of shutting- down a regionserver--git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1003702 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective HBASE-2397 Bytes.toStringBinary escapes printable- chars--git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@951840 13f79535-47bb-0310-9956-ffa450edef68-
__label__perfective HBASE-1447  Take last version of the hbase-1249- design doc. and make documentation out of it--git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@785081 13f79535-47bb-0310-9956-ffa450edef68-
__label__perfective HBASE-3313 Table name isn't checked in- isTableEnabled/isTableDisabled--git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1081431 13f79535-47bb-0310-9956-ffa450edef68-
__label__perfective HBASE-10194 [Usability]: Instructions in- CompactionTool no longer accurate because of namespaces--git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1552229 13f79535-47bb-0310-9956-ffa450edef68-
__label__features HBASE-6427 Pluggable compaction and scan policies- via coprocessors--git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1367361 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective HBASE-2787  PE is confused about flushCommits--git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@957750 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective HBASE-10606 Bad timeout in- RpcRetryingCaller-callWithRetries w/o parameters--git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1572124 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective HBASE-7703 Eventually all online snapshots fail- due to Timeout at same regionserver.--Online snapshot attempts would fail due to timeout because a rowlock could not be obtained.  Prior to this a-cancellation occurred which likely grabbed the lock without cleaning it properly. The fix here is to use nice cancel-instead of interrupting cancel on failures.----git-svn-id: https://svn.apache.org/repos/asf/hbase/branches/hbase-7290@1445866 13f79535-47bb-0310-9956-ffa450edef68-
__label__features HBASE-11920 Add CP hooks for ReplicationEndPoint--
__label__features HBASE-8383 Support lib/*jar inside coprocessor- jar--git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1471754 13f79535-47bb-0310-9956-ffa450edef68-
__label__perfective HBASE-10066. Use ByteArrayOutputStream-writeTo- where appropriate--git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1547294 13f79535-47bb-0310-9956-ffa450edef68-
__label__perfective HBASE-6667 TestCatalogJanitor occasionally fails;- PATCH THAT ADDS DEBUG AROUND FAILING TEST--git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1379682 13f79535-47bb-0310-9956-ffa450edef68-
__label__perfective "HBASE-6529 With HFile v2  the region server will- always perform an extra copy of source files--git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1372313 13f79535-47bb-0310-9956-ffa450edef68-"
__label__perfective HBASE-1404 minor edit of regionserver logging- messages--git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@773627 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective HBASE-9227 RESTServer should handle the loginUser- correctly--git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1514440 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective HBASE-1869 IndexedTable delete fails when used in- conjunction with RowLock()--git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@819060 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective HBASE-11558 Caching set on Scan object gets lost- when using TableMapReduceUtil in 0.95+ (Ishan Chhabra)--
__label__perfective HBASE-1938 Make in-memory table scanning faster ;-  reverted 20110726_1938_MemStore.patch till we figure why it seems to slow- tests--git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1151653 13f79535-47bb-0310-9956-ffa450edef68-
__label__perfective HBASE-11865 Result implements CellScannable;- rather it should BE a CellScanner--
__label__features HBASE-6400 Add getMasterAdmin() and- getMasterMonitor() to HConnection (Enis)--git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1363009 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective HBASE-2156  HBASE-2037 broke Scan--git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@902213 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective HBASE-10686 [WINDOWS] TestStripeStoreFileManager- fails on windows--git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1575011 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective HBASE-2781  ZKW.createUnassignedRegion doesn't- make sure existing znode is             in the right state (Karthik- Ranganathan via JD)--git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@963910 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective HBASE-10556 Possible data loss due to non-handled- DroppedSnapshotException for user-triggered flush from client/shell--git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1571501 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective HBASE-3387 Pair does not deep check arrays for- equality--git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1053484 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective "HBASE-8355:- BaseRegionObserver-pre(Compact|Flush|Store)ScannerOpen returns null (Andrew- Purtell  Jesse Yates)--git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1483094 13f79535-47bb-0310-9956-ffa450edef68-"
__label__perfective HBASE-8062 Replace HBaseFsck.debugLsr() in- TestFlushSnapshotFromClient with FSUtils.logFileSystemState()--git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1463646 13f79535-47bb-0310-9956-ffa450edef68-
__label__features HBASE-12731 Heap occupancy based client pushback--
__label__perfective "HBASE-2889 Tool to look at HLogs -- parse and- tail -f; added part 1  some fixup of hlog main--git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@995222 13f79535-47bb-0310-9956-ffa450edef68-"
__label__corrective HBASE-12137 Alter table add cf doesn't do- compression test (Virag Kothari)--
__label__corrective HADOOP-2308 null regioninfo breaks meta scanner--git-svn-id: https://svn.apache.org/repos/asf/lucene/hadoop/trunk/src/contrib/hbase@599875 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective HBASE-8287 TestRegionMergeTransactionOnCluster- failed in trunk build -4010--git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1465528 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective HBASE-2365 Double-assignment around split--git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@929856 13f79535-47bb-0310-9956-ffa450edef68-
__label__features HBASE-9369 Add support for 1- and 2-byte integers- in OrderedBytes and provide types (He Liangliang)--git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1524297 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective "Fixing broken build... forgot to add- JVMClusterUtil  etc.--git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@939848 13f79535-47bb-0310-9956-ffa450edef68-"
__label__corrective HBASE-8703 [WINDOWS] Timed-out processes exit- with non-zero code causing HealthChecker to report incorrectly. ADDENDUM- patch to fix flaky test--git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1499047 13f79535-47bb-0310-9956-ffa450edef68-
__label__perfective HBASE-4861 Fix some misspells and extraneous- characters in logs; set some to TRACE--git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1205732 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective HBASE-4169 FSUtils LeaseRecovery for non HDFS- FileSystems; added 4169-correction.txt  correction--git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1155441 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective HBASE-10449 Wrong execution pool configuration in- HConnectionManager--git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1563878 13f79535-47bb-0310-9956-ffa450edef68-
__label__perfective HBASE-6170 Timeouts for row lock and scan should- be separate (Chris Trezzo)--git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1354325 13f79535-47bb-0310-9956-ffa450edef68-
__label__features "[jira] [HBASE-5074] Support checksums in HBase- block cache--Author: Dhruba--Summary:-HFile is enhanced to store a checksum for each block. HDFS checksum verification-is avoided while reading data into the block cache. On a checksum verification-failure  we retry the file system read request with hdfs checksums switched on-(thanks Todd).--I have a benchmark that shows that it reduces iops on the disk by about 40%. In-this experiment  the entire memory on the regionserver is allocated to the-regionserver's jvm and the OS buffer cache size is negligible. I also measured-negligible (<5%) additional cpu usage while using hbase-level checksums.--The salient points of this patch:--1. Each hfile's trailer used to have a 4 byte version number. I enhanced this so-that these 4 bytes can be interpreted as a (major version number  minor-version). Pre-existing hfiles have a minor version of 0. The new hfile format-has a minor version of 1 (thanks Mikhail). The hfile major version remains-unchanged at 2. The reason I did not introduce a new major version number is-because the code changes needed to store/read checksums do not differ much from-existing V2 writers/readers.--2. Introduced a HFileSystem object which is a encapsulates the FileSystem-objects needed to access data from hfiles and hlogs.  HDFS FileSystem objects-already had the ability to switch off checksum verifications for reads.--3. The majority of the code changes are located in hbase.io.hfie package. The-retry of a read on an initial checksum failure occurs inside the hbase.io.hfile-package itself.  The code changes to hbase.regionserver package are minor.--4. The format of a hfileblock is the header followed by the data followed by the-checksum(s). Each 16 K (configurable) size of data has a 4 byte checksum.  The-hfileblock header has two additional fields: a 4 byte value to store the-bytesPerChecksum and a 4 byte value to store the size of the user data-(excluding the checksum data). This is well explained in the associated-javadocs.--5. I added a test to test backward compatibility. I will be writing more unit-tests that triggers checksum verification failures aggressively. I have left a-few redundant log messages in the code (just for easier debugging) and will-remove them in later stage of this patch. I will also be adding metrics on-number of checksum verification failures/success in a later version of this-diff.--6. By default  hbase-level checksums are switched on and hdfs level checksums-are switched off for hfile-reads. No changes to Hlog code path here.--Test Plan: The default setting is to switch on hbase checksums for hfile-reads -thus all existing tests actually validate the new code pieces. I will be writing-more unit tests for triggering checksum verification failures.--Reviewers: mbautin--Reviewed By: mbautin--CC: JIRA  tedyu  mbautin  dhruba  todd  stack--Differential Revision: https://reviews.facebook.net/D1521--git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1298641 13f79535-47bb-0310-9956-ffa450edef68-"
__label__corrective HBASE-563   TestRowFilterAfterWrite erroneously- sets master address to 0.0.0.0:60100 rather than relying on conf--git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@644948 13f79535-47bb-0310-9956-ffa450edef68-
__label__perfective HBASE-8033 Break TestRestoreSnapshotFromClient- into TestRestoreSnapshotFromClient and TestCloneSnapshotFromClient (Ted Yu)--git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1454186 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective HBASE-8351 Minor typo in Bytes- IllegalArgumentException throw (Raymond Liu)--git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1468291 13f79535-47bb-0310-9956-ffa450edef68-
__label__perfective HBASE-9287 TestCatalogTracker depends on the- execution order--git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1516292 13f79535-47bb-0310-9956-ffa450edef68-
__label__perfective HBASE-4131 Make the Replication Service pluggable- via a standard interface definition--git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1174963 13f79535-47bb-0310-9956-ffa450edef68-
__label__features HBASE-12366 Add login code to HBase Canary tool- (Srikanth Srungarapu)--
__label__perfective HBASE-3017 More log pruning--M conf/log4j.properties-  Make ZKW log at INFO-level-M src/main/java/org/apache/hadoop/hbase/master/AssignmentManager.java-  Log message cleanup.-M src/main/java/org/apache/hadoop/hbase/master/HMaster.java-  Remove excessive hostname+port qualifier on master for zk messages-M src/main/java/org/apache/hadoop/hbase/master/MasterFileSystem.java-  Log message cleanup-M src/main/java/org/apache/hadoop/hbase/master/ServerManager.java-  Format the ServerMonitor message.-M src/main/java/org/apache/hadoop/hbase/regionserver/HRegionServer.java-  Remove excessive hostname on zk message id; just add port-M src/main/java/org/apache/hadoop/hbase/zookeeper/ZKAssign.java-  Cleanup of messages.---git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@999057 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective HBASE-7923 force unassign can confirm region- online on any RS to get rid of double assignments--git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1464232 13f79535-47bb-0310-9956-ffa450edef68-
__label__perfective HBASE-11499- AsyncProcess.buildDetailedErrorMessage concatenates strings using + in a loop- (Mike Drob)--
__label__corrective HBASE-9600 TestColumnSchemaModel and- TestTableSchemaModel test cases are failing with IBM IBM Java 6--git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1525179 13f79535-47bb-0310-9956-ffa450edef68-
__label__features HBASE-1200 Add bloomfilters--git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@946464 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective HBASE-11248-KeyOnlyKeyValue-toString() passes- wrong offset to keyToString() (Ram)--
__label__perfective HBASE-5259 Normalize the RegionLocation in- TableInputFormat by the reverse DNS lookup (Liyin Tang)--git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1238774 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective HBASE-1816 Master rewrite; should have removed- safe-mode from regionserver-side too -- Needed to remove the wait up in top- of flush and compactions threads-- used to wait on safe mode... was stuck- there...--git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@830844 13f79535-47bb-0310-9956-ffa450edef68-
__label__perfective HBASE-2124  Useless exception in HMaster on- startup--git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@899441 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective HBASE-8299 ExploringCompactionPolicy can get- stuck in rare cases.--git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1475966 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective HADOOP-2295 Fix assigning a region to multiple- servers--git-svn-id: https://svn.apache.org/repos/asf/lucene/hadoop/trunk/src/contrib/hbase@599578 13f79535-47bb-0310-9956-ffa450edef68-
__label__perfective HBASE-3653 : Parallelize Server Requests on HBase- Client--git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1082648 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective HBASE-1386 NPE in housekeeping--git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@772703 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective HBASE-7307 MetaReader.tableExists should not- return false if the specified table regions has been split (Rajesh)--git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1419998 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective HBASE-2057  Cluster won't stop--git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@894111 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective HBASE-2757. Fix flaky TestFromClientSide test by- forcing region assignment--git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@956716 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective HBASE-1136  HashFunction inadvertently destroys- some randomness; REVERTING--git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@735880 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective fix spurious 400s produced by test--git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@790486 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective HBASE-3591 completebulkload doesn't honor generic- -D options--git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1076709 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective HBASE-7715 FSUtils-waitOnSafeMode can incorrectly- loop on standby NN (Ted Yu)--git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1440600 13f79535-47bb-0310-9956-ffa450edef68-
__label__features HBASE-1537 Intra-row scanning; apply limit over- multiple families--git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@951682 13f79535-47bb-0310-9956-ffa450edef68-
__label__perfective "HBASE-3082  For ICV gets  first look in MemStore- before reading StoreFiles (Prakash via jgray)--git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1026910 13f79535-47bb-0310-9956-ffa450edef68-"
__label__perfective HBASE-920 Make region balancing sloppier--git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@704781 13f79535-47bb-0310-9956-ffa450edef68-
__label__features HBASE-798  Provide Client API to explicitly lock- and unlock rows (Jonathan Gray via Jim Kellerman)--git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@685391 13f79535-47bb-0310-9956-ffa450edef68-
__label__features HBASE-1552 provide version running on cluster via- getClusterStatus--git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@786666 13f79535-47bb-0310-9956-ffa450edef68-
__label__perfective HBASE-1142 Cleanup thrift server; remove Text and- profuse DEBUG messaging--git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@736495 13f79535-47bb-0310-9956-ffa450edef68-
__label__perfective HBASE-15354 Use same criteria for clearing meta- cache for all operations (addendum) (Ashu Pachauri)--
__label__perfective HBASE-10818. Add integration test for bulkload- with replicas (Nick Dimiduk and Devaraj Das)--
__label__corrective HBASE-1866 Scan(Scan) copy constructor does not- copy value of cacheBlocks--git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@818656 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective HBASE-1773  Fix broken tests (setWriteBuffer now- throws IOE)--git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@805236 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective HBASE-5927 SSH and DisableTableHandler happening- together does not clear the znode of the region and RIT map (Rajesh)--git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1339913 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective "HBASE-3429 HBaseObjectWritable should support- arrays of any Writable or Serializable  not just Writable[]--git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1056548 13f79535-47bb-0310-9956-ffa450edef68-"
__label__corrective HBASE-9095. AssignmentManager's handleRegion- should respect the single threaded nature of the processing--git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1510799 13f79535-47bb-0310-9956-ffa450edef68-
__label__perfective HBASE-11370 SSH doesn't need to scan meta if not- using ZK for assignment--
__label__corrective HBASE-8737 [replication] Change replication RPC- to use cell blocks--git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1499118 13f79535-47bb-0310-9956-ffa450edef68-
__label__features HBASE-4460  Support running an embedded- ThriftServer within a RegionServer (jgray)--git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1186586 13f79535-47bb-0310-9956-ffa450edef68-
__label__features HBASE-10885 Support visibility expressions on- Deletes (Ram)--
__label__features HBASE-1722 Add support for exporting HBase- metrics via JMX--git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@813229 13f79535-47bb-0310-9956-ffa450edef68-
__label__features HBASE-8921 [thrift2] Add GenericOptionsParser to- Thrift 2 server--git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1501982 13f79535-47bb-0310-9956-ffa450edef68-
__label__features HBASE-12176 WALCellCodec Encoders support for- non-KeyValue Cells (Anoop Sam John)--
__label__features HBASE-9999 Add support for small reverse scan--git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1573949 13f79535-47bb-0310-9956-ffa450edef68-
__label__features HBASE-7197. Add multi get to RemoteHTable- (Elliott Clark)--git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1422143 13f79535-47bb-0310-9956-ffa450edef68-
__label__features HBASE-3167 HBase Export: Add ability to export- specific Column Family; Turn Block Cache off during export; improve usage doc--git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1028546 13f79535-47bb-0310-9956-ffa450edef68-
__label__perfective "Test deleting the percolate type differently.- Instead of checking the types exist api  register a DocumentTypeListener that- notifies when percolate queries have been cleared.--"
__label__features "Cluster Health API: Add `wait_for_nodes` (accepts- ""N""  ""<N""  "">N""  ""<=N""  and "">=N"")  closes -269.--"
__label__perfective "improve handling of memory caching with file- system  only force compound file when really needed (when an extension that- exists within the compound file is part of the memory cached extensions)--"
__label__perfective "Added GeoDistance test which verifies the- difference in behaviour between ARC and PLANE  causing elliptical results--"
__label__features "NullPointerException for invalid faceted query - closes -1136.--"
__label__perfective [TEST] Added test that verifies data integrity- during and after a simulated network split.--
__label__corrective Cut over StringScriptDataComparator to use- BytesRef instead of Strings--Closes -2920-
__label__perfective clean code--
__label__corrective test: fix and simplify logic--
__label__corrective "fix cluster state mapping informaton  return it- with the mapping name as key and source field--"
__label__perfective Optimize aliases processing--Closes- 2832-
__label__corrective Fix- AckClusterUpdateSettingsIT.testClusterUpdateSettingsAcknowledgement() after- changes in -14259--Closes -14278-
__label__perfective "add hasSingleArrayBackingStorage allow for- optimization only when there really is a single array  and not when there is- a multi dimensional one--"
__label__perfective [TEST] renamed variables in ScriptServiceTests--
__label__perfective Fix typo in Hunspell logging--
__label__features inital support for zen discovery module- (multicast discovery implemented)--
__label__perfective Simplify TestCluster--TestCluster now doesn't use any reference counting anymore and-testcluster names are based on creation time to prevent confilcts if-builds hang.-
__label__perfective "Tests: Add test for parsing ""_name"" field in- RangeQueryParser--"
__label__perfective [TEST] fixed TestCluster size() javadocs--
__label__features "Query DSL: Add `and`  `or`  and `not` filters - closes -216--"
__label__perfective clean-up long values--
__label__corrective Fix file handle leak in readBlob method of- AbstractFsBlobContainer--
__label__features Added clear scroll api.--The clear scroll api allows clear all resources associated with a `scroll_id` by deleting the `scroll_id` and its associated SearchContext.--Closes -3657-
__label__perfective Small cleanup--
__label__features "Allow to configure a common logger prefix using- `es.logger.prefix` system prop  closes -360.--"
__label__perfective fix name--
__label__corrective "introduce read/writeSharedString while streaming- currently  we treat all strings as shared (either by full equality or- identity equality)  while almost all times we know if they should be- serialized as shared or not. Add an explicitly write/readSharedString  and- use it where applicable  and all other write/readString will not treat them- as shared relates to -3322--"
__label__corrective "Change default operator to ""or"" for- ""low_freq_operator"" and ""high_freq_operator"" parameters for ""common"" queries--Closes -3178-"
__label__perfective "add a marker CachedFilter this allows to easily- and globally check if we cache a filter or not  all filter caching uses this- marker interface--"
__label__features "Added support for acknowledgements to update- cluster settings api--As a side note  the internal reroute call is now part of the ack mechanism. That means that if the response contains acknowledged flag  the internal reroute that was eventually issued was acknowledged too. Also  even if the request is not acknowledged  the reroute is issued before returning  which means that there is no need to manually call reroute afterwards to make sure the new settings are immediately applied.--Closes -3995-"
__label__features "Http Transport: Allow to configure- `max_header_size`  `max_initial_line_length`  and `max_chunk_size`  closes- -1174.--"
__label__corrective Add missing index name to indexing slow log--This was lost in refactoring even on the 2.x branch. The slow-log-is not per index not per shard anymore such that we don't add the-shard ID as the logger prefix. This commit adds back the index-name as part of the logging message not as a prefix on the logger-for better testabilitly.--Closes -17025-
__label__features Added KeywordRepeatFilter that allows emitting- stemmed and unstemmed versions of the same token if stemmers are used--Closes -2753-
__label__corrective Catch AmazonClientExceptions to prevent- connection loss If the AWS client throws an exception (e.g: because of a DNS- failure) it will end up killing the rejoin thread and stop retrying which can- lead to a node getting stuck unable to rejoin the cluster.--Closes -30.-
__label__features zen disco: support for a node to act as a client- (and not become master) using discovery.zen.master setting (default to true).- It will automatically be set to false when node.client is set to true.--
__label__perfective Facets: deprecation.--Users are encouraged to move to the new aggregation framework that was-introduced in Elasticsearch 1.0.--Close -6485-
__label__features "Translog: Implement a file system based translog- and make it the default  closes -260.--"
__label__perfective "Introduced common test methods in- MatchedQueriesTests (e.g. createIndex  ensureGreen  refresh  assertHitCount)--"
__label__perfective Migrating NodesInfo API to use plugins instead of- singular plugin--In order to be consistent (and because in 1.0 we switched from-parameter driven information to specifzing the metrics as part of the URI)-this patch moves from 'plugin' to 'plugins' in the Nodes Info API.-
__label__corrective "Fix parsing of file based template loading--We support three different settings in templates--* ""settings"" : { ""index"" : { ""number_of_shards"" : 12 } }-* ""settings"" : { ""index.number_of_shards"" : 12 }-* ""settings"" : { ""number_of_shards"" : 12 }--The latter one was not supported by the fix in -4235--This commit fixes this issue and uses randomized testing to test any of the three cases above when running integration tests.--Closes -4411-"
__label__features refactor sub fetch phase to also allow for hits- level execution--
__label__features support yaml detection on char sequence--
__label__corrective [TEST] Stabelize MoreLikeThisActionTests--The `testCompareMoreLikeThisDSLWithAPI` test compares results from query-and API which might query different shards. Those shares might use-different doc IDs internally to disambiguate. This commit resorts the-results and compares them after stable disambiguation.-
__label__corrective Percolator response now always returns the- `matches` key.--Closes -4881-
__label__perfective add debug log if using compressed stored fields--
__label__features If matching root doc's inner objects don't match- the `nested_filter` then the `missing` value should be used to sort the root- doc. Closes -3020--
__label__corrective [TEST] Don't delete data dirs after test - only- delete their content.--Closes -5815-
__label__perfective "Improved test  printed out potential shard- failures--"
__label__corrective only pull Fields once from the reader--
__label__perfective "Optimize multiple cluster state processing on- receiving nodes Nodes that receive the cluster state  and they have several- of those pending  can optimize and try and process potentially only one of- those. closes -5139--"
__label__corrective Fix- `indices.recovery.concurrent_small_file_streams` not being dynamically- settable--Fixes -4094-
__label__perfective "Added support for acknowledgement from other- nodes in open/close index api--The open/close index api now waits for an acknowledgement from all the other nodes before returning its response  till the timeout (configurable  default 10 secs) expires. The returned acknowledged flag reflects whether the cluster state change was acknowledged by all the nodes or the timeout expired before.--Closes -3400-"
__label__perfective move DatabaseReaders initialization to- IngestGeoIpPlugin-onModule--
__label__corrective lucene 4: use the proper token stream to return--
__label__perfective rename node to DiscoveryNode--
__label__corrective "Testing: Add test rule to repeat tests on binding- exceptions--Due to the possibility of ports being already used when choosing a-random port  it makes sense to simply repeat a unit test upon a bind-exception.--This commit adds a junit rule  which does exactly this and does not-require you to change the test code and add loops.--Closes -9010-"
__label__corrective Don't allow unallocated indexes to be closed.--Closes -3313-
__label__perfective "Tests: Use all found index files instead of- static list for static bwc tests--It is a pain to add a new static index  and then have to update the old-index test.  This removes the need for the latter step.--closes -9854-"
__label__features add an index level setting to disable/enable- purging of expired docs (issue -1791)--
__label__perfective "Remove Infinity values for Range facets when no- docs match the range  closes -1366.--"
__label__features Added UNICODE_CHARACTER_CLASS support to Regex- flags. This flag is only supported in Java7 and is ignored if set on a java 6- JVM--Closes -2895-
__label__perfective "BytesStreamOutput default size should be 2k- instead of 32k We changed the default of BytesStreamOutput (used in various- places in ES) to 32k from 1k with the assumption that most stream tend to be- large. This doesn't hold for example when indexing small documents and adding- them using XContentBuilder (which will have a large overhead).--Default the buffer size to 2k now  but be relatively aggressive in expanding the buffer when below 256k (double it)  and just use oversize (1/8th) when larger to try and minimize garbage and buffer copies.--relates to -3624-closes -3638-"
__label__corrective "Sorting on _score in the URI format is reversed - closes -1191.--"
__label__corrective Changed GeoEncodingTests to ensure accuracy- always >1mm due to rounding errors with very small numbers--
__label__corrective Fixed resolving closest nested object when- sorting on a field inside nested object--
__label__corrective Fix RobinEngineIntegrationTest - missed to- explicitly create the index--
__label__corrective Fix NPE in RangeAggregator--
__label__corrective "Internal: use AtomicInteger instead of volatile- int for the current action filter position--Also improved filter chain tests to not rely on execution time  and made filter chain tests look more similar to what happens in reality by removing multiple threads creation in testTooManyContinueProcessing (something we don't support anyway  makes little sense to test it).--Closes -7021-"
__label__perfective Remove dead code and add missing @Override- annotations--
__label__perfective [TEST] Re-add rebalance disable setting in- RecoveryFromGatewayTests--
__label__corrective "fix a bug in new checksum mechanism that caused- for replicas not to retain the _checksums file. Also  now that checksums are- widely used  consider files without checksums as ones that need to be- recovered--"
__label__perfective Fielddata: Remove- BytesValues.WithOrdinals.currentOrd and copyShared.--These methods don't exist in Lucene's sorted set doc values.--Relates to -6524-
__label__perfective "Recovery Settings: Change settings (still support- old settings) and allow for more dynamic settings  closes -1303.--"
__label__perfective optimize boolean queries when possible--
__label__perfective "Remove get index templates deprecated methods In- 0.90.4  we deprecated some code:--* `GetIndexTemplatesRequest-GetIndexTemplatesRequest(String)` moved to `GetIndexTemplatesRequest-GetIndexTemplatesRequest(String...)`-* `GetIndexTemplatesRequest-name(String)` moved to `GetIndexTemplatesRequest-names(String...)`-* `GetIndexTemplatesRequest-name()` moved to `GetIndexTemplatesRequest-names()`--* `GetIndexTemplatesRequestBuilder-GetIndexTemplatesRequestBuilder(IndicesAdminClient  String)` moved to  `GetIndexTemplatesRequestBuilder-GetIndexTemplatesRequestBuilder(IndicesAdminClient  String...)`--* `IndicesAdminClient-prepareGetTemplates(String)` moved to `IndicesAdminClient-prepareGetTemplates(String...)`--* `AbstractIndicesAdminClient-prepareGetTemplates(String)` moved to `AbstractIndicesAdminClient-prepareGetTemplates(String...)`--We can now remove that old methods in 1.0.--**Note**: it breaks the Java API--Relative to -2532.-Closes -3681.-"
__label__features use custom similarity in search (if there is one)--
__label__perfective improve memcached test--
__label__features "Allow for plugins to register REST filter (better- support with async execution and some renaming)  closes -1658.--"
__label__corrective lucene 4: Fixed- BitsetExecutionChildQuerySearchTests class.--
__label__corrective "Shard Allocation: Closed indices are not properly- taken into account when rebalancing  closes -858.--"
__label__features Allow additional settings for the node in- ESSingleNodeTestCase--This change adds a method that extending classes can override to provide additional settings-for the node used in a single node test case.-
__label__perfective "remove equals/hashcode as part of Pipeline and- adapt tests--Only MutateProcessor implemented equals / hashcode hence we would only use that one in our tests  since they relied on them. Better to not rely on equals/hashcode  drop them and mock processor/pipeline in our tests that need them. That also allow to make MutateProcessor constructor package private as the other processors.-"
__label__perfective pass on node seed to the node level settings in- TestCluster--
__label__corrective Fix test failure.--
__label__corrective fixed issue from merge--
__label__perfective add anotehr test--
__label__perfective Catch and Log RejectedExecutionException in async- ping--
__label__perfective Rename Engine-seacher() into- Engine-acquireSearcher()--The name should reflect that the caller is responsible for-releaseing the searcher again.-
__label__perfective "add ""same"" thread pool type (really  just for- testing)--"
__label__features "Histogram Facet: Allow to define a key field and- value script  closes -517.--"
__label__perfective remove unused code--
__label__perfective "Mapping: When _all is disabled  optimize to not- gather all entries  closes -722.--"
__label__corrective Fix possible exception in toCamelCase method--
__label__perfective Randomize node level setting per node not per- cluster--
__label__perfective Aggregations: change to default shard_size in- terms aggregation--The default shard size in the terms aggregation now uses BucketUtils.suggestShardSideQueueSize() to set the shard size if the user does not specify it as a parameter.--Closes -6857-
__label__features add peer recovery status to the indices status- API exposing both on going and summary when recovering from a peer shard--
__label__perfective Tests: Improve test coverage.--Close -7428-
__label__perfective increase netty worker count to default to the- updated value netty defaults to--
__label__perfective [Test] make recovery slow down in- rerouteRecoveryTest aware of index size--
__label__perfective make test less evil--
__label__corrective tests repaired--
__label__perfective fields are protected--
__label__corrective "nullable problems: disable warnings on- ""complex"" getters/setters (IDEA-63958)--"
__label__corrective annotation default value parsing fixed--
__label__corrective cleanup (IDEA-90461)--
__label__corrective IDEA-70843 (fix Hector slider for GTK+ L&F)--
__label__corrective additional null check--
__label__corrective just one more DnDEnabler little fix :)--
__label__corrective add suggestions for literal expressions- (IDEA-57593)--
__label__corrective disable pattern configuration for the same- named packages (IDEA-151250)--
__label__corrective gradle: correctly set TestModuleProperties for- modules containing '-' in names (IDEA-151590)--
__label__perfective Replace instanceof template variable with- variable segment--
__label__features Make is possible to enhance color schemes from- plugin in non-intellij environment (e.g. upsource)--
__label__perfective cleanup--
__label__perfective cleanup--
__label__corrective Memory leak fixed. Area instances connected to- project and module haven't been disposed at their disposal.--
__label__perfective Renaming preview files--
__label__perfective implement open hash addressing in index leaf- page to avoid large moves--
__label__perfective intellilang avoid costly service lookups--
__label__corrective IDEA-127075 IDE hang on file structure--
__label__corrective don't suggest 'convert to groovy-style property- access' inside closure--
__label__corrective IDEA-114890 Find Jar On The Web: Looking For- Libraries progress can't ve cancelled--
__label__corrective move statement should be enabled when moving to- the end of file--
__label__corrective NPE--
__label__perfective refactor name: it could be any RC--
__label__perfective diff: better name for default diff tool--
__label__perfective ui: use setter--
__label__corrective "IDEADEV-1678  IDEADEV-1685 Added icons count on- folders in thumbnails view  Added EditExternaly to editors actions--"
__label__corrective IDEADEV-20992--
__label__corrective fixed PY-2674 Assignment can be replaced with- augmented assignmet breaks context--
__label__corrective PY-1635 Extract Method in middle of expression- generates broken code--
__label__corrective move suppress/settings intention down- (IDEA-72320 )--
__label__perfective Typos--
__label__perfective FileNameCache: enable caching always don't- store common prefix (saves 8 entry bytes vs. less prefix average length)--
__label__corrective fixed django template commenter again (PY-1949)--
__label__corrective fix indefinite loop (IDEA-67750)--
__label__corrective StackOverflow fixed--
__label__perfective use common ExceptionUtil--
__label__corrective Fix for upsource--
__label__corrective IDEA-63381 we should find android module when- platform is specified--
__label__perfective formatting of injected code refactored - 3--
__label__corrective IDEA-94048 Maven run configuration - profiles- list gets randomly re-ordered after closing and opening project--
__label__corrective make find toolwindow work in dumb mode and- correctly navigate--
__label__perfective aware of not sourcemap file--
__label__perfective Don't offer to download source by maven for- artifact with 'system' scope--
__label__corrective WI-31168 Unable to save settings after upgrade- to 2016.1 (cherry picked from commit 5b98073)--
__label__perfective better messages format--
__label__perfective title changed--
__label__corrective IDEA-81004 Deadlock (SoftWrapApplianceManager)--Breaking potentially endless loop and report an error-
__label__corrective SVN: configure branches NPE--
__label__corrective "reorder instructions  maybe it'll fix strange- IMSE--"
__label__corrective TreeUi: NPE when in showCentered() no visible- rows in tree--
__label__corrective NPE fix--
__label__corrective fix--
__label__perfective Added code completion test.--
__label__features fragments with differences in comments only are- considered equivalent--
__label__perfective optimization: determine token end as next token- start in PsiBuilder--
__label__features "Ruby test runner: Statistcis can be sort by- ""Tests"" column--"
__label__features diff: allow to highlight changes without border--
__label__corrective IDEA-78863 Live templates are not accessible in- read-only file (e.g. versioned in Perforce or TFS)--
__label__corrective fixed PY-12251 Project Interpreters: Create- virtualenv from settings doesn't update warnigns about python package- management tools--
__label__features "report expressions like ""!b != c"" in ""Double- negation"" inspection and add test--"
__label__corrective correctly-sized icon in completion extender--
__label__perfective Check VFS sanity action--
__label__perfective code-dups cleanup--
__label__features external system: add clickable link to log- folder to the project import failure message--
__label__corrective PY-16335 Preserve formatting of converted- collection literals--
__label__corrective FrameWrapper: do not restore frame state as- iconified (IDEA-87792)--
__label__features added additional shortcut--
__label__perfective optimization: cache org.junit.Test--
__label__features PY-996--
__label__corrective "IDEADEV-25382: idiotic ""...please recompile""- error message killed--"
__label__perfective editorPaintStart useless in our case--
__label__corrective resolve and completion for Django settings- (PY-563)--
__label__perfective Fixed typos in test.--
__label__perfective "SMTestRunner: Statistics tab  total column- caption improved--"
__label__corrective IDEA-80573 GitCheckoutOperation: sleep a bit to- let file watcher report all changes for small repositories where refresh is- too fast.--
__label__features ChangeUtil-encode/decodeInformation for groovy--
__label__corrective fix navbar rebuild on popup invocation--
__label__corrective method return fix should not touch super method- formal parameters--
__label__corrective Maven: test fixed by removing unnecessary and- obsolete assertion--
__label__perfective one more test that fails; some more code moved- to common framework--
__label__corrective bad linking of Xerces messages--
__label__perfective [vcs-log] make BekLinearGraph testable--
__label__corrective IDEA-35738 Cannot drag around label with empty- text--
__label__features plugins: tooltip for plugins with newer version- (IDEA-75998)--
__label__corrective XML rename dialog doesn't accept character '.'- or '-' (IDEADEV-35547)--
__label__corrective "JUnit UI redesign  part 4: ""rerun failed tests""- button moved to proper place--"
__label__features remember committed changes splitter proportions- (IDEADEV-16784)--
__label__perfective Major changes in data structures.- Reimplementation & beautification.--
__label__corrective Fixed ipnb editor layout.--
__label__perfective "Cheaper ProgressManager.checkCanceled().- Mostly  it's call to abstract method eliminated.--"
__label__perfective Improved align behavior to align only- subsequent assignments or hashes--
__label__corrective preferred focused component (IDEA-60570)--
__label__corrective class kind calculation may produce INRE- (SCL-1349)--
__label__perfective javadoc--
__label__corrective "IDEA-139609 Gradle: New Module Wizard: ""Select- Gradle Projec""t dialog: selection is not confirmed by double-clicking or- pressing Enter--"
__label__corrective NPE--
__label__perfective Cleanup code--
__label__corrective Maven: escaping support in the resource- compiler (IDEADEV-35524)--
__label__features form scope provider & dom lookups implemented--
__label__features EP for upsource added--
__label__features CPP-560 New Welcome Screen for CLion--
__label__features support for forced compilation of a set of- files/modules--
__label__features "added ""Overloaded varargs method"" inspection--"
__label__features [vcs-log] IDEA-125276 support regular- expressions in branch filter--
__label__features Mac laf: add support for search controls with- history popups--
__label__features IDEADEV-11483 IE conditional comments support- [in progress]--
__label__features symlink support in vfs & SOE protection--
__label__perfective "YARN-2635. TestRM  TestRMRestart - TestClientToAMTokens should run with both CS and FS. (Wei Yan and kasha via- kasha)--(cherry picked from commit 80d11eb68e60f88e16d7d41edecbddfc935a6b10)-"
__label__features HDFS-2465. Add HDFS support for fadvise readahead- and drop-behind. Contributed by Todd Lipcon.--git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-0.23@1190625 13f79535-47bb-0310-9956-ffa450edef68-
__label__perfective YARN-2132. ZKRMStateStore.ZKAction-runWithRetries- doesn't log the exception it encounters. (Vamsee Yarlagadda via kasha)--git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1601066 13f79535-47bb-0310-9956-ffa450edef68-
__label__perfective MAPREDUCE-2899. Replace major parts of- ApplicationSubmissionContext with a ContainerLaunchContext (Arun Murthy via- mahadev) - Merging r1170459 from trunk--git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-0.23@1170460 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective YARN-2582. Fixed Log CLI and Web UI for showing- aggregated logs of LRS. Contributed Xuan Gong.--(cherry picked from commit e90718fa5a0e7c18592af61534668acebb9db51b)-
__label__corrective "YARN-2111. In FairScheduler.attemptScheduling  we- don't count containers as assigned if they have 0 memory but non-zero cores- (Sandy Ryza)--git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1605115 13f79535-47bb-0310-9956-ffa450edef68-"
__label__perfective "YARN-3587. Fix the javadoc of- DelegationTokenSecretManager in yarn  etc. projects. Contributed by Gabor- Liptak. (cherry picked from commit 7e543c27fa2881aa65967be384a6203bd5b2304f)--"
__label__features MAPREDUCE-3121. NodeManager should handle- disk-failures (Ravi Gummadi via mahadev) - Merging r1208131 from trunk.--git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-0.23@1208135 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective YARN-2821. Fixed a problem that DistributedShell AM- may hang if restarted. Contributed by Varun Vasudev (cherry picked from- commit 7438966586f1896ab3e8b067d47a4af28a894106)--
__label__features YARN-1063. Augmented Hadoop common winutils to have- the ability to create containers as domain users. Contributed by Remus- Rusanu. Committed as a YARN patch even though all the code changes are in- common.--(cherry picked from commit 5ca97f1e60b8a7848f6eadd15f6c08ed390a8cda)-
__label__perfective HADOOP-6987. Use JUnit Rule to optionally fail test- cases that run more than 10 seconds.--git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1005977 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective MAPREDUCE-3345. Fixed a race condition in- ResourceManager that was causing TestContainerManagerSecurity to fail- sometimes. Contributed by Hitesh Shah. svn merge -c r1199144- --ignore-ancestry ../../trunk/--git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-0.23@1199145 13f79535-47bb-0310-9956-ffa450edef68-
__label__perfective YARN-632. Changed ContainerManager api to throw- IOException and YarnRemoteException. Contributed by Xuan Gong. svn merge- --ignore-ancestry -c 1479740 ../../trunk/--git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1479741 13f79535-47bb-0310-9956-ffa450edef68-
__label__features YARN-2830. Add backwords compatible- ContainerId.newInstance constructor. Contributed by Jonathan Eagles.--(cherry picked from commit 43cd07b408c6613d2c9aa89203cfa3110d830538)-
__label__perfective HADOOP-7057. IOUtils.readFully and- IOUtils.skipFully have typo in exception creation's message. Contributed by- Konstantin Boudnik.--git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1040849 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective HADOOP-6133. Add a caching layer to- Configuration::getClassByName to alleviate a performance regression- introduced in a compatibility layer. Contributed by Todd Lipcon--git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@812285 13f79535-47bb-0310-9956-ffa450edef68-
__label__features Merge r1503933 from trunk to branch-2 for YARN-513.- Create common proxy client for communicating with RM (Xuan Gong & Jian He via- bikas)--git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1503935 13f79535-47bb-0310-9956-ffa450edef68-
__label__features YARN-1757. NM Recovery. Auxiliary service support.- (Jason Lowe via kasha)--git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1585784 13f79535-47bb-0310-9956-ffa450edef68-
__label__perfective HADOOP-7223. FileContext createFlag combinations- are not clearly defined. Contributed by Suresh Srinivas.--git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1092565 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective Merge -c 1529538 from trunk to branch-2 to fix- YARN-1090. Fixed CS UI to better reflect applications as non-schedulable and- not as pending. Contributed by Jian He.--git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1529539 13f79535-47bb-0310-9956-ffa450edef68-
__label__perfective YARN-1424. RMAppAttemptImpl should return the- DummyApplicationResourceUsageReport for all invalid accesses. (Ray Chiang via- kasha)--git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1601745 13f79535-47bb-0310-9956-ffa450edef68-
__label__perfective YARN-3583. Support of NodeLabel object instead of- plain String in YarnClient side. (Sunil G via wangda)--(cherry picked from commit 563eb1ad2ae848a23bbbf32ebfaf107e8fa14e87)-(cherry picked from commit b0d22b0c606fad6b4ab5443c0aed07c829b46726)-
__label__corrective HADOOP-7341. Fix options parsing in CommandFormat.- Contributed by Daryn Sharp.--git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1132505 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective YARN-1910. Fixed a race condition in TestAMRMTokens- that causes the test to fail more often on Windows. Contributed by Xuan Gong.- svn merge --ignore-ancestry -c 1586192 ../../trunk/--git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1586193 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective YARN-1883. TestRMAdminService fails due to- inconsistent entries in UserGroups (Mit Desai via jeagles)--git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1582865 13f79535-47bb-0310-9956-ffa450edef68-
__label__features merge YARN-360 from trunk. Allow apps to- concurrently register tokens for renewal. Contributed by Daryn Sharp.--git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1442442 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective YARN-1185. Fixed FileSystemRMStateStore to not- leave partial files that prevent subsequent ResourceManager recovery.- Contributed by Omkar Vinit Joshi. svn merge --ignore-ancestry -c 1533803- ../../trunk/--git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1533805 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective YARN-3379. Fixed missing data in localityTable and- ResourceRequests table in RM WebUI. Contributed by Xuan Gong (cherry picked- from commit 4e886eb9cbd2dcb128bbfd17309c734083093a4c)--
__label__perfective "HADOOP-7034. Add TestPath tests to cover dot  dot- dot  and slash normalization. Contributed by Eli Collins--git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1035142 13f79535-47bb-0310-9956-ffa450edef68-"
__label__perfective HADOOP-6367. Removes Access Token implementation- from common. Contributed by Kan Zhang.--git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@881509 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective YARN-539. Addressed memory leak of LocalResource- objects NM when a resource localization fails. Contributed by Omkar Vinit- Joshi. svn merge --ignore-ancestry -c 1466756 ../../trunk/--git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1466757 13f79535-47bb-0310-9956-ffa450edef68-
__label__perfective YARN-3028. Better syntax for replaceLabelsOnNode in- RMAdmin CLI. Contributed by Rohith Sharmaks--(cherry picked from commit fd93e5387b554a78413bc0f14b729e58fea604ea)-
__label__corrective Merge r1580077 from trunk. YARN-1849. Fixed NPE in- ResourceTrackerService-registerNodeManager for UAM. Contributed by Karthik- Kambatla--git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1580078 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective MAPREDUCE-2766. Fixed NM to set secure permissions- for files and directories in distributed-cache. Contributed by Hitesh Shah.- svn merge -c r1195340 --ignore-ancestry ../../trunk/--git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-0.23@1195341 13f79535-47bb-0310-9956-ffa450edef68-
__label__features YARN-254. Update fair scheduler web UI for- hierarchical queues. (sandyr via tucu)--git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1423743 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective YARN-2730. DefaultContainerExecutor runs only one- localizer at a time. Contributed by Siqi Li (cherry picked from commit- 6157ace5475fff8d2513fd3cd99134b532b0b406)--
__label__corrective "YARN-2122. In AllocationFileLoaderService  the- reloadThread should be created in init() and started in start(). (Robert- Kanter via kasha)--git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1601046 13f79535-47bb-0310-9956-ffa450edef68-"
__label__features HADOOP-6534. Trim whitespace from directory lists- initializing LocalDirAllocator. Contributed by Todd Lipcon--git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@909806 13f79535-47bb-0310-9956-ffa450edef68-
__label__features "Merge r1606407 from trunk. YARN-614. Changed- ResourceManager to not count disk failure  node loss and RM restart towards- app failures. Contributed by Xuan Gong--git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1606408 13f79535-47bb-0310-9956-ffa450edef68-"
__label__corrective HADOOP-6682. NetUtils:normalizeHostName does not- process hostnames starting with [a-f] correctly.--git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@953929 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective YARN-3094. Reset timer for liveness monitors after- RM recovery. Contributed by Jun Gong (cherry picked from commit- 0af6a99a3fcfa4b47d3bcba5e5cc5fe7b312a152)--
__label__corrective HADOOP-6139. Fix the FsShell help messages for rm- and rmr.  Contributed by Jakob Homan--git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@793098 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective YARN-2798. Fixed YarnClient to populate the renewer- correctly for Timeline delegation tokens. Contributed by Zhijie Shen.--(cherry picked from commit 71fbb474f531f60c5d908cf724f18f90dfd5fa9f)-
__label__corrective YARN-2269. Remove external links from YARN UI.- Contributed by Craig Welch--git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1609591 13f79535-47bb-0310-9956-ffa450edef68-
__label__features YARN-2059. Added admin ACLs support to Timeline- Server. Contributed by Zhijie Shen. svn merge --ignore-ancestry -c 1597207- ../../trunk/--git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1597208 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective HADOOP-6906.  FileContext copy() utility doesn't- work with recursive copying of directories. (vinod k v via mahadev)--git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@987374 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective MAPREDUCE-2784. [Gridmix] Bug fixes in- ExecutionSummarizer and ResourceUsageMatcher. (amarrk)--git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-0.23@1237579 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective HADOOP-6452 Hadoop JSP pages don't work under a- security manager--git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@893490 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective HADOOP-6951.  Distinct minicluster services (e.g.- NN and JT) overwrite each other's service policies.  Contributed by Aaron T.- Myers.--git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1002896 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective YARN-2819. NPE in ATS Timeline Domains when- upgrading from 2.4 to 2.6. Contributed by Zhijie Shen--(cherry picked from commit 4a114dd67aae83e5bb2d65470166de954acf36a2)-
__label__corrective YARN-596. Use scheduling policies throughout the- queue hierarchy to decide which containers to preempt (Wei Yan via Sandy- Ryza)--git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1598198 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective "HADOOP-6932.  Namenode start (init) fails because- of invalid kerberos key  even when security set to simple--git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@991030 13f79535-47bb-0310-9956-ffa450edef68-"
__label__perfective YARN-1497. Fix comment and remove accidental- println--git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1567491 13f79535-47bb-0310-9956-ffa450edef68-
__label__features YARN-1635. Implemented a Leveldb based- ApplicationTimelineStore. Contributed by Billie Rinaldi. svn merge- --ignore-ancestry -c 1565868 ../../trunk/--git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1565869 13f79535-47bb-0310-9956-ffa450edef68-
__label__perfective "HDFS-2154. In TestDFSShell  use TEST_ROOT_DIR and- fix some deprecated warnings.--git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1147184 13f79535-47bb-0310-9956-ffa450edef68-"
__label__corrective YARN-2705. Fixed bugs in ResourceManager node-label- manager that were causing test-failures: added a dummy in-memory- labels-manager. Contributed by Wangda Tan.--(cherry picked from commit e9c66e8fd2ccb658db2848e1ab911f1502de4de5)-
__label__corrective MAPREDUCE-2603. Disable High-Ram emulation in- system tests. (Vinay Kumar Thota via amarrk)--git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1138301 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective YARN-2608. FairScheduler: Potential deadlocks in- loading alloc files and clock access. (Wei Yan via kasha)--(cherry picked from commit c9811af09a3d3f9f2f1b86fc9d6f2763d3225e44)-
__label__corrective YARN-3108. ApplicationHistoryServer doesn't process- -D arguments (Chang Li via jeagles)--(cherry picked from commit 30a8778c632c0f57cdd005080a470065a60756a8)-
__label__perfective HDFS-7144. Fix findbugs warnings in- RamDiskReplicaTracker. (Contributed by Tsz Wo Nicholas Sze)--Conflicts:-	hadoop-hdfs-project/hadoop-hdfs/CHANGES-HDFS-6581.txt-
__label__features HADOOP-7110. Implement chmod with JNI. Contributed- by Todd Lipcon--git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1063090 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective HADOOP-7187. Fix socket leak in GangliaContext. - Contributed by Uma Maheswara Rao G--git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1085122 13f79535-47bb-0310-9956-ffa450edef68-
__label__features YARN-2502. Changed DistributedShell to support node- labels. Contributed by Wangda Tan (cherry picked from commit- f6b963fdfc517429149165e4bb6fb947be6e3c99)--
__label__corrective HDFS-2414. Fix TestDFSRollback to avoid spurious- failures. Contributed by Todd Lipcon.--git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-0.23@1180540 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective HDFS-73. DFSOutputStream does not close all the- sockets. Contributed by Uma Maheswara Rao G--git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1157232 13f79535-47bb-0310-9956-ffa450edef68-
__label__features HADOOP-7001.  Configuration changes can occur via- the Reconfigurable interface. (Patrick Kline via dhruba)--git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1038480 13f79535-47bb-0310-9956-ffa450edef68-
__label__perfective MAPREDUCE-3238. Small cleanup in SchedulerApp.- (Todd Lipcon via mahadev) - Merging r1206921 from trunk--git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-0.23@1206924 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective YARN-1555. Fixed test failures in- applicationhistoryservice.* (Vinod Kumar Vavilapalli via mayank) svn merge- --ignore-ancestry -c 1556753 ../YARN-321--git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1562207 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective YARN-3457. NPE when NodeManager.serviceInit fails- and stopRecoveryStore called. Contributed by Bibin A Chundatt.--(cherry picked from commit dd852f5b8c8fe9e52d15987605f36b5b60f02701)-
__label__corrective YARN-1718. Fix a couple isTerminals in Fair- Scheduler queue placement rules (Sandy Ryza)--git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1569929 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective HADOOP-6441. Protect web ui from cross site- scripting attacks (XSS) on the host http header and using encoded utf-7.- (omalley)--git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@891132 13f79535-47bb-0310-9956-ffa450edef68-
__label__features HDFS-3167. CLI-based driver for MiniDFSCluster.- Contributed by Henry Robinson.--git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1308160 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective MAPREDUCE-2187. Reporter sends progress during- sort/merge. Contributed by Anupam Seth.--git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1152964 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective "YARN-1913. With Fair Scheduler  cluster can logjam- when all resources are consumed by AMs (Wei Yan via Sandy Ryza)--git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1599401 13f79535-47bb-0310-9956-ffa450edef68-"
__label__features YARN-3361. CapacityScheduler side changes to- support non-exclusive node labels. Contributed by Wangda Tan (cherry picked- from commit 0fefda645bca935b87b6bb8ca63e6f18340d59f5)--
__label__corrective svn merge -c 1371390 FIXES: YARN-14. Symlinks to- peer distributed cache files no longer work (Jason Lowe via bobby)--git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1371395 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective YARN-2065 AM cannot create new containers after- restart--git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1607440 13f79535-47bb-0310-9956-ffa450edef68-
__label__features YARN-45. Add protocol for schedulers to request- containers back from ApplicationMasters. Contributed by Carlo Curino and- Chris Douglas.--git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1479773 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective YARN-2958. Made RMStateStore not update the last- sequence number when updating the delegation token. Contributed by Varun- Saxena.--(cherry picked from commit 562a701945be3a672f9cb5a52cc6db2c1589ba2b)-
__label__perfective HDFS-1330 and HADOOP-6889. Added additional unit- tests. Contributed by John George.--git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-0.23@1163464 13f79535-47bb-0310-9956-ffa450edef68-
__label__features HADOOP-7657. Add support for LZ4 compression.- Contributed by Binglin Chang.--git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-0.23@1220312 13f79535-47bb-0310-9956-ffa450edef68-
__label__perfective YARN-3613. TestContainerManagerSecurity should init- and start Yarn cluster in setup instead of individual methods. (nijel via- kasha)--(cherry picked from commit fe0df596271340788095cb43a1944e19ac4c2cf7)-
__label__corrective YARN-1734. Fixed ResourceManager to update the- configurations when it transits from standby to active mode so as to- assimilate any changes that happened while it was in standby mode.- Contributed by Xuan Gong. svn merge --ignore-ancestry -c 1571539 ../../trunk/--git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1571540 13f79535-47bb-0310-9956-ffa450edef68-
__label__perfective Merge r1601491 from trunk. YARN-2030. Augmented- RMStateStore with state machine. Contributed by Binglin Chang--git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1601492 13f79535-47bb-0310-9956-ffa450edef68-
__label__features YARN-1936. Added security support for the Timeline- Client. Contributed by Zhijie Shen. svn merge --ignore-ancestry -c 1597153- ../../trunk/--git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1597154 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective svn merge -c 1420232 FIXES: YARN-266. RM and JHS- Web UIs are blank because AppsBlock is not escaping string properly.- Contributed by Ravi Prakash--git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1420233 13f79535-47bb-0310-9956-ffa450edef68-
__label__perfective HADOOP-6375. Sync documentation for FsShell du with- its implementation. Contributed by Todd Lipcon--git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@883206 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective YARN-280. RM does not reject app submission with- invalid tokens (Daryn Sharp via tgraves)--git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1425085 13f79535-47bb-0310-9956-ffa450edef68-
__label__features HDFS-4733. Make HttpFS username pattern- configurable. Contributed by Alejandro Abdelnur.--git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1477241 13f79535-47bb-0310-9956-ffa450edef68-
__label__perfective YARN-3181. FairScheduler: Fix up outdated findbugs- issues. (kasha)--(cherry picked from commit c2b185def846f5577a130003a533b9c377b58fab)-
__label__corrective Merge -c 1235858 from trunk to branch-0.23 to fix- MAPREDUCE-3683. Fixed maxCapacity of queues to be product of parent- maxCapacities.--git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-0.23@1235860 13f79535-47bb-0310-9956-ffa450edef68-
__label__perfective YARN-578. Fixed NM to use SecureIOUtils for reading- and aggregating logs. Contributed by Omkar Vinit Joshi. svn merge- --ignore-ancestry -c 1487672 ../../trunk/--git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1487686 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective HDFS-1480. All replicas of a block can end up on- the same rack when some datanodes are decommissioning. Contributed by Todd- Lipcon.--git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1160897 13f79535-47bb-0310-9956-ffa450edef68-
__label__perfective YARN-2331. Distinguish shutdown during supervision- vs. shutdown for rolling upgrade. Contributed by Jason Lowe--(cherry picked from commit 088156de43abb07bec590a3fcd1a5af2feb02cd2)-
__label__corrective MAPREDUCE-3392. Fixed Cluster's- getDelegationToken's API to return null when there isn't a supported token.- Contributed by John George. svn merge -c r1200484 --ignore-ancestry- ../../trunk/--git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-0.23@1200485 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective YARN-2519. Credential Provider related unit tests- failed on Windows. Contributed by Xiaoyu Yao.--(cherry picked from commit cbea1b10efd871d04c648af18449dc724685db74)-
__label__corrective YARN-295. Fixed a race condition in ResourceManager- RMAppAttempt state machine. Contributed by Mayank Bansal. svn merge- --ignore-ancestry -c 1501856 ../../trunk/--git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1501857 13f79535-47bb-0310-9956-ffa450edef68-
__label__features HADOOP-6583. Captures authentication and- authorization metrics. Contributed by Devaraj Das.--git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@915095 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective svn merge -c 1379565 FIXES: YARN-66. aggregated- logs permissions not set properly (tgraves via bobby)--git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1379567 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective YARN-1920. Fixed- TestFileSystemApplicationHistoryStore failure on windows. Contributed by- Vinod Kumar Vavilapalli. svn merge --ignore-ancestry -c 1586414 ../../trunk/--git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1586420 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective YARN-2740. Fix NodeLabelsManager to properly handle- node label modifications when distributed node label configuration enabled.- (Naganarasimha G R via wangda)--(cherry picked from commit db1b674b50ddecf2774f4092d677c412722bdcb1)-
__label__features HADOOP-2398. Additional instrumentation for- NameNode and RPC server. Add support for accessing instrumentation statistics- via JMX. (Sanjay radia via dhruba)--git-svn-id: https://svn.apache.org/repos/asf/lucene/hadoop/trunk/src/contrib/hbase@611906 13f79535-47bb-0310-9956-ffa450edef68-
__label__features "HADOOP-6148. Implement a fast  pure Java CRC32- calculator which outperforms java.util.zip.CRC32.  Contributed by Todd Lipcon- and Scott Carey--git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@794944 13f79535-47bb-0310-9956-ffa450edef68-"
__label__features YARN-2493. Added node-labels page on RM web UI.- Contributed by Wangda Tan (cherry picked from commit- b7442bf92eb6e1ae64a0f9644ffc2eee4597aad5)--
__label__features YARN-1936. Added security support for the Timeline- Client. Contributed by Zhijie Shen. svn merge --ignore-ancestry -c 1597153- ../../trunk/--git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1597154 13f79535-47bb-0310-9956-ffa450edef68-
__label__perfective HADOOP-7353. Cleanup FsShell and prevent masking of- RTE stack traces. Contributed by Daryn Sharp.--git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1132764 13f79535-47bb-0310-9956-ffa450edef68-
__label__features YARN-3100. Made YARN authorization pluggable.- Contributed by Jian He.--(cherry picked from commit 23bf6c72071782e3fd5a628e21495d6b974c7a9e)-
__label__perfective YARN-2158. Improved assertion messages of- TestRMWebServicesAppsModification. Contributed by Varun Vasudev. svn merge- --ignore-ancestry -c 1608667 ../../trunk/--git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1608668 13f79535-47bb-0310-9956-ffa450edef68-
__label__perfective YARN-1608. LinuxContainerExecutor has a few DEBUG- messages at INFO level (kasha)--git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1558875 13f79535-47bb-0310-9956-ffa450edef68-
__label__features YARN-3853. Add docker container runtime support to- LinuxContainterExecutor. Contributed by Sidharta Seethana.--(cherry picked from commit 3e6fce91a471b4a5099de109582e7c6417e8a822)--Conflicts:-	hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/src/main/java/org/apache/hadoop/yarn/server/nodemanager/LinuxContainerExecutor.java-
__label__features YARN-975. Added a file-system implementation for- HistoryStorage. Contributed by Zhijie Shen. svn merge --ignore-ancestry -c- 1556727 ../YARN-321--git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1562184 13f79535-47bb-0310-9956-ffa450edef68-
__label__perfective YARN-2768 Improved Yarn Registry service record- structure (stevel)--
__label__perfective HDFS-2500. Avoid file system operations in- BPOfferService thread while processing deletes. Contributed by Todd Lipcon.--git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-0.23@1190072 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective BZ-1025874: fixing incremental update of kjars--
__label__corrective -Added fixes for waltz to run waltz50--git-svn-id: https://svn.jboss.org/repos/labs/labs/jbossrules/trunk@7071 c60d74c8-e8f6-0310-9e8f-d4a2fc68ab70-
__label__features "JBRULES-340 core implementation for 'from' -The- from node is now added -ReteooBuilder is added  but not unit tested.--git-svn-id: https://svn.jboss.org/repos/labs/labs/jbossrules/trunk@5713 c60d74c8-e8f6-0310-9e8f-d4a2fc68ab70-"
__label__corrective JBRULES-393 Xml dump with illegal characters -fixed- by Javier Prieto--git-svn-id: https://svn.jboss.org/repos/labs/labs/jbossrules/trunk@5949 c60d74c8-e8f6-0310-9e8f-d4a2fc68ab70-
__label__perfective BZ-986000 - DRL-to-RuleModel marshalling- improvements--
__label__corrective JBRULES-2339: JBRULES-2440: fixing ruleflow group- management--git-svn-id: https://svn.jboss.org/repos/labs/labs/jbossrules/trunk@32725 c60d74c8-e8f6-0310-9e8f-d4a2fc68ab70-
__label__features JBRULES-527: adding primitive support to alpha- hashing code--git-svn-id: https://svn.jboss.org/repos/labs/labs/jbossrules/trunk@7150 c60d74c8-e8f6-0310-9e8f-d4a2fc68ab70-
__label__perfective JBRULES-1520: moving test to correct test file--git-svn-id: https://svn.jboss.org/repos/labs/labs/jbossrules/trunk@19375 c60d74c8-e8f6-0310-9e8f-d4a2fc68ab70-
__label__corrective "JBRULES-3343 Property Specific -Added fix for- byPassModifyToLeftTupleSink  which was not working for LIANodes--"
__label__perfective [DROOLS-820] reuse PomModel if already available--
__label__corrective "-fixed compilation issues  due to incorrect use of- PropagationContextImpl constructor.--git-svn-id: https://svn.jboss.org/repos/labs/labs/jbossrules/trunk@19847 c60d74c8-e8f6-0310-9e8f-d4a2fc68ab70-"
__label__corrective JBRULES-130--git-svn-id: https://svn.jboss.org/repos/labs/trunk/labs/jbossrules@3283 c60d74c8-e8f6-0310-9e8f-d4a2fc68ab70-
__label__perfective Removed unncessary else if check; replaced with- else--git-svn-id: https://svn.jboss.org/repos/labs/labs/jbossrules/trunk@26039 c60d74c8-e8f6-0310-9e8f-d4a2fc68ab70-
__label__corrective JBRULES-1618 Check the context class-loader of the- current thread before using it--
__label__perfective "- adding new test for issue related with IF and- pattern ordering  throwing a NotSupportedOperationException--"
__label__corrective [DROOLS-601] fix queries when used in combination- with agenda-groups--
__label__corrective [BZ-1042867] fix ProjectClassLoader when running in- osgi--
__label__perfective more test coverage for nesting of OR CEs--git-svn-id: https://svn.jboss.org/repos/labs/labs/jbossrules/trunk@4586 c60d74c8-e8f6-0310-9e8f-d4a2fc68ab70-
__label__corrective JBRULES-1590: fixing problem with shadow proxy- cloning for collections--git-svn-id: https://svn.jboss.org/repos/labs/labs/jbossrules/trunk@19783 c60d74c8-e8f6-0310-9e8f-d4a2fc68ab70-
__label__perfective refactoring--git-svn-id: https://svn.jboss.org/repos/labs/trunk/labs/jbossrules@2301 c60d74c8-e8f6-0310-9e8f-d4a2fc68ab70-
__label__corrective JBRULES-3170 Compiler erroneously resolves the- package of declared classes with the same name as basic classes--
__label__corrective JBRULES-1805: fixing multithread bug--git-svn-id: https://svn.jboss.org/repos/labs/labs/jbossrules/trunk@23501 c60d74c8-e8f6-0310-9e8f-d4a2fc68ab70-
__label__perfective [DROOLS-1026] improve equals/hashCode performances- for all rete nodes--
__label__perfective "-removed @ignore for passing test  updated to- central test helper methods--"
__label__corrective [DROOLS-812] properly close InputStreams--
__label__perfective JBRULES-976: fixing problems with collections- clonning and adding unit tests--git-svn-id: https://svn.jboss.org/repos/labs/labs/jbossrules/trunk@13162 c60d74c8-e8f6-0310-9e8f-d4a2fc68ab70-
__label__corrective JBRULES-2121: JavaDialect isn't creating unique ids-  - fixed name that is checked--git-svn-id: https://svn.jboss.org/repos/labs/labs/jbossrules/trunk@26929 c60d74c8-e8f6-0310-9e8f-d4a2fc68ab70-
__label__corrective  BZ-1044973 - Guided rule editor does not let the- user to set objects as a parameters for method calls that have objects super- type as a parameter--
__label__corrective JBRULES-659: fixing the problem of multidimentional- arrays--git-svn-id: https://svn.jboss.org/repos/labs/labs/jbossrules/trunk@9457 c60d74c8-e8f6-0310-9e8f-d4a2fc68ab70-
__label__features [DROOLS-991] allow to configure maxEventsInMemory- in FileLogger--
__label__corrective Fixing NPE--git-svn-id: https://svn.jboss.org/repos/labs/labs/jbossrules/trunk@6187 c60d74c8-e8f6-0310-9e8f-d4a2fc68ab70-
__label__corrective " - fixed an issue where a comment in a work item- definition file results in a null work item definition object  filtering out- null now--git-svn-id: https://svn.jboss.org/repos/labs/labs/jbossrules/trunk@26933 c60d74c8-e8f6-0310-9e8f-d4a2fc68ab70-"
__label__corrective [DROOLS-128] fix retriving of global entry set from- a Stateless session--
__label__corrective JBRULES-527: fixing compilation problems--git-svn-id: https://svn.jboss.org/repos/labs/labs/jbossrules/trunk@6992 c60d74c8-e8f6-0310-9e8f-d4a2fc68ab70-
__label__perfective remove support of deprecated brl files--
__label__corrective Changes to resolve issues discovered in integration- tests--git-svn-id: https://svn.jboss.org/repos/labs/trunk/labs/jbossrules@3441 c60d74c8-e8f6-0310-9e8f-d4a2fc68ab70-
__label__features [BZ-1092084] raise a compilation error when the- same attribute is defined twice on a rule--
__label__features -now works with non DroolsObjectInputStream- serialization.--git-svn-id: https://svn.jboss.org/repos/labs/labs/jbossrules/trunk@13207 c60d74c8-e8f6-0310-9e8f-d4a2fc68ab70-
__label__corrective -fixed MVEL parser context naming issue.--git-svn-id: https://svn.jboss.org/repos/labs/labs/jbossrules/trunk@23995 c60d74c8-e8f6-0310-9e8f-d4a2fc68ab70-
__label__corrective JBRULES-1736 Dynamically generated Types -Must get- classloader from the rulebase root classloader now--git-svn-id: https://svn.jboss.org/repos/labs/labs/jbossrules/trunk@21573 c60d74c8-e8f6-0310-9e8f-d4a2fc68ab70-
__label__perfective [JBRULES-3668] format and shorten kproject.xml file--
__label__features JBRULES-2439--git-svn-id: https://svn.jboss.org/repos/labs/labs/jbossrules/trunk@31842 c60d74c8-e8f6-0310-9e8f-d4a2fc68ab70-
__label__perfective "JBRULES-498 Optimised HashMap implementations- -Changed ReteooWorkingMemory modifyObject to do a retract+assert.  Its also- now  doing  the same as Leaps  so we can move the modifyObject  method to- AbstractWorkingMemory.--git-svn-id: https://svn.jboss.org/repos/labs/labs/jbossrules/trunk@6642 c60d74c8-e8f6-0310-9e8f-d4a2fc68ab70-"
__label__perfective [DROOLS-198] avoid useless cleanup of staged- activations in phreak--
__label__corrective -Make TupleSourceTest work--git-svn-id: https://svn.jboss.org/repos/labs/trunk/labs/jbossrules@2284 c60d74c8-e8f6-0310-9e8f-d4a2fc68ab70-
__label__features JBRULES-233 for leaps--git-svn-id: https://svn.jboss.org/repos/labs/labs/jbossrules/trunk@4214 c60d74c8-e8f6-0310-9e8f-d4a2fc68ab70-
__label__perfective JBRULES-2835: use new Environment constant--
__label__perfective JBRULES-2353: Update HumanTask to the new grid inf- and CommandExecutor 	- fix unsupported setError methods--git-svn-id: https://svn.jboss.org/repos/labs/labs/jbossrules/trunk@30808 c60d74c8-e8f6-0310-9e8f-d4a2fc68ab70-
__label__corrective [DROOLS-336] avoid to share a LeftInputAdapterNode- if it has 2 sinks with different property reactive masks--
__label__corrective - throw exception if no user transaction was found--
__label__perfective  - reducing error level to warn to avoid- unnecessary warnings when session id cannot be found--
__label__corrective -Few fixes to manners--git-svn-id: https://svn.jboss.org/repos/labs/trunk/labs/jbossrules@2061 c60d74c8-e8f6-0310-9e8f-d4a2fc68ab70-
__label__perfective JBRULES-2817 Make the KnowledgeAgent Tests more- robust and faster--git-svn-id: https://svn.jboss.org/repos/labs/labs/jbossrules/trunk@36213 c60d74c8-e8f6-0310-9e8f-d4a2fc68ab70-
__label__corrective Fixing test--git-svn-id: https://svn.jboss.org/repos/labs/labs/jbossrules/trunk@20387 c60d74c8-e8f6-0310-9e8f-d4a2fc68ab70-
__label__corrective JBRULES-737: fixing problem when inspecting classes- with static initializers--git-svn-id: https://svn.jboss.org/repos/labs/labs/jbossrules/trunk@10190 c60d74c8-e8f6-0310-9e8f-d4a2fc68ab70-
__label__corrective [DROOLS-740] fix jitting of constraint with strings- concatenation--
__label__corrective [DROOLS-818] register declared listeners on- StatelessKieSession--
__label__features "[DROOLS-383] support for switch over String-- * Eclipse compiler has a least known documented configuration-   property ""org.eclipse.jdt.core.compiler.compliance"" which-   needs to be set along with the 'org.eclipse.jdt.core.compiler.source'-   and 'org.eclipse.jdt.core.compiler.codegen.targetPlatform' properties.-- * this is going to work only when the underlaying JVM is 7+-"
__label__corrective JBRULES-1820 Exception: Input stream is not- explicitly closed.--git-svn-id: https://svn.jboss.org/repos/labs/labs/jbossrules/trunk@36154 c60d74c8-e8f6-0310-9e8f-d4a2fc68ab70-
__label__corrective "JBRULES-2849 workaround bug in JDK 5 concerning- alternatives in lookbehind assertions  using alternatives of lookbehind- assertions rather than a lookbehind assertion with alternatives.--"
__label__corrective "JBPM-3814  BZ 1002724 Bugfixes with regards to- concurrency (cherry picked from commit- 2bf24d6908c1976fca356b2e96279355e863db5a)--- Changed EnvironmentImpl to use a concurrent HashMap-- The most significant persistence changes are in the JpaPersistenceContextManager class-- Reverted locking changes to the SingleSessionCommandService since a fix for JBPM-3814 is not-  possible at the level of the SSCS in the form of locking (because of the app-scoped entity-  manager).-- Also deleted unsused interfaces (ApplicationScopedPersistenceContext  TransactionablePersistentContext)-"
__label__corrective -testRemovePackage now works.--git-svn-id: https://svn.jboss.org/repos/labs/labs/jbossrules/trunk@7100 c60d74c8-e8f6-0310-9e8f-d4a2fc68ab70-
__label__features "JBRULES-2537 JSon Marshaller -Added JSon marshaller- using xstream  with unit tests.--git-svn-id: https://svn.jboss.org/repos/labs/labs/jbossrules/trunk@33359 c60d74c8-e8f6-0310-9e8f-d4a2fc68ab70-"
__label__corrective fix failing tests--
__label__corrective JBRULES-1102 Bug in DefaultBetaConstraint class- indexing to never turn on -Fixed DefaultBetaConstraints -Added comprehensive- unit test--git-svn-id: https://svn.jboss.org/repos/labs/labs/jbossrules/trunk@14396 c60d74c8-e8f6-0310-9e8f-d4a2fc68ab70-
__label__features BZ743283: Decision tables should support timer- column instead of deprecated duration attribute--
__label__corrective [BZ-1007977] when returning a cached KieModule from- the KieRepository referring to a snapshot release check if there is a newer- release on the maven repository--
__label__corrective JBRULES-85--git-svn-id: https://svn.jboss.org/repos/labs/trunk/labs/jbossrules@3162 c60d74c8-e8f6-0310-9e8f-d4a2fc68ab70-
__label__corrective BZ-1039639 - GRE doesn't recognize MVEL inline- lists when opening rule--
__label__perfective JBRULES-1498 Thead safe partitioning of- WorkingMemory entry points--git-svn-id: https://svn.jboss.org/repos/labs/labs/jbossrules/trunk@18794 c60d74c8-e8f6-0310-9e8f-d4a2fc68ab70-
__label__perfective Added ScannerChangeSetTest which scans CSV resource- file for changes.--
__label__corrective fix incremental compilation when updating a- kiemodule without changing the release id (for snaphots)--
__label__corrective BZ-1006481 - UI support for 'extends' rule keyword- broken--
__label__corrective JBRULES-2375: fixing deadlock on queued actions--git-svn-id: https://svn.jboss.org/repos/labs/labs/jbossrules/trunk@33500 c60d74c8-e8f6-0310-9e8f-d4a2fc68ab70-
__label__corrective JBRULES-1268 Activation.remove() is removing the- WRONG activation when used in events -the queue is set to null after dequeue--git-svn-id: https://svn.jboss.org/repos/labs/labs/jbossrules/trunk@15781 c60d74c8-e8f6-0310-9e8f-d4a2fc68ab70-
__label__corrective JBRULES-3126 NPE when retracting an object with a- collection field which has been accumulated on--
__label__corrective [DROOLS-94] fix BaseObjectClassFieldReader when- reading numeric values--
__label__corrective JBRULES-1906: NPE when LiteralRestriction value is- set to null--git-svn-id: https://svn.jboss.org/repos/labs/labs/jbossrules/trunk@24509 c60d74c8-e8f6-0310-9e8f-d4a2fc68ab70-
__label__corrective fixing reflection constructor to use int instead of- long for ksessionId--
__label__corrective BZ975922 - GRE constraint operator list box- problems when re-opening file--
__label__corrective [BZ-980385] fix comparison of 2 timer nodes--
__label__perfective -update unit tests for LeftInputAdapterNode--git-svn-id: https://svn.jboss.org/repos/labs/trunk/labs/jbossrules@2283 c60d74c8-e8f6-0310-9e8f-d4a2fc68ab70-
__label__corrective BZ-1074672: Fixing legacy API to properly handle- resource configuration. (cherry picked from commit- 645d0e5cb86225a898391960350588d1817b1de2)--
__label__corrective "Fix OutOfBoundException on- MemoryFileSystem.existsFile("""")--"
__label__corrective [DROOLS-839] fix LogicTransformer with Accumulate--
__label__corrective JBRULES-447 - small fix for rule attributes--git-svn-id: https://svn.jboss.org/repos/labs/labs/jbossrules/trunk@6003 c60d74c8-e8f6-0310-9e8f-d4a2fc68ab70-
__label__corrective fix test using using no longer existing- ConsequenceException.getRule() method--
__label__corrective [DROOLS-293] fix ObjectTypeNode id creation and- comparison--
__label__perfective JBRULES-2817 Make the KnowledgeAgent Tests more- robust and faster 	- KAgent Event Listener test are enabled again! There- were modified to adopt the new KAgent test architecture--
__label__perfective [BZ-1200383] when a dependency cannot be found log- the complete stack trace only in debug mode--
__label__corrective "really  this is the fix for -154--git-svn-id: https://svn.jboss.org/repos/labs/labs/jbossrules/trunk@3914 c60d74c8-e8f6-0310-9e8f-d4a2fc68ab70-"
__label__corrective [JBRULES-3263] fix jitted contraints when invoking- an interface--
__label__corrective "DROOLS-515 Kie-Camel is broken after Camel Update- -Added static field  to allow unit tests to ensure keys are ordered.--"
__label__corrective fix WELD problem caused by having a beans.xml in- drools-compiler--
__label__features JBRULES-446 Support rulebase configuration via- jsr94 registerRuleExecutionSet properties--git-svn-id: https://svn.jboss.org/repos/labs/labs/jbossrules/trunk@13123 c60d74c8-e8f6-0310-9e8f-d4a2fc68ab70-
__label__corrective "Fixed bug with ""disconnected"" factHandles- (JBRULES-3187) and added a test to verify that I fixed the bug!!--"
__label__corrective [DROOLS-37] fix jitting of comparison contraints- (cherry picked from commit 5ea47c020451949cc52708494afdfa50799467a2)--
__label__features JBRULES-2934 Add NewRegisterWorkItemHandlerCommand- to CommandFactory with unit test--
__label__features JBRULES-527: adding primitive support for hashcode- calculation on indexing--git-svn-id: https://svn.jboss.org/repos/labs/labs/jbossrules/trunk@7155 c60d74c8-e8f6-0310-9e8f-d4a2fc68ab70-
__label__corrective [DROOLS-121] detect circular dependencies for- declared types--
__label__perfective refactor GAV to ReleaseId--
__label__features JBRULES-3714 Add capability to configure- date-effective/date-expires for SpreadSheet--
__label__features JBRULES-313: adding fire limit option--git-svn-id: https://svn.jboss.org/repos/labs/labs/jbossrules/trunk@12927 c60d74c8-e8f6-0310-9e8f-d4a2fc68ab70-
__label__features JBRULES-1641: ForEach node  - initial core- implementation of a for each node JBRULES-1551: Workflow human tasks  - human- task node with swimlane integration--git-svn-id: https://svn.jboss.org/repos/labs/labs/jbossrules/trunk@20429 c60d74c8-e8f6-0310-9e8f-d4a2fc68ab70-
__label__features JBRULES-1730: Add support for other data types when- writing processes to XML  - pluggable data types support--git-svn-id: https://svn.jboss.org/repos/labs/labs/jbossrules/trunk@21496 c60d74c8-e8f6-0310-9e8f-d4a2fc68ab70-
__label__features Added Analysis Result as HTML--git-svn-id: https://svn.jboss.org/repos/labs/labs/jbossrules/trunk@15004 c60d74c8-e8f6-0310-9e8f-d4a2fc68ab70-
__label__features add support for maven version ranges--
__label__features JBRULES-313: adding halt command--git-svn-id: https://svn.jboss.org/repos/labs/labs/jbossrules/trunk@12902 c60d74c8-e8f6-0310-9e8f-d4a2fc68ab70-
__label__features allow to specify an optional Environment when- creating a new KieSession--
__label__features "JBRULES-3200 Support for dynamic typing (aka- ""traits"")--"
__label__features Implementing support to incremental updates on- kcontainers--
__label__features JBRULES-527: adding primitive support to indexing--git-svn-id: https://svn.jboss.org/repos/labs/labs/jbossrules/trunk@7158 c60d74c8-e8f6-0310-9e8f-d4a2fc68ab70-
__label__features [DROOLS-389] Improve support for @Traitable POJOs- and @Trait interfaces--
__label__features [DROOLS-114] Support Defeasible rules--
__label__perfective move test output to one level down--for ReadClassDataTest and CompileJavaAgainstKotlinTest-
__label__features Introduce RenderingContext and add as parameter- to DiagnosticParameterRenderer-render--RenderingContext holds data about the whole diagnostics allowing to adjust rendering of its parameters-
__label__perfective Extracted error messages from- DefaultDiagnosticRenderer to special DefaultErrorMessages class.--
__label__perfective Merge two JetTypeMapper-mapToCallableMethod- methods--
__label__perfective Base class for multi-file tests extracted--
__label__corrective Fixed KT-1797 No completion for nested class name- in extension function definition-- -KT-1797 Fixed-
__label__corrective Extract Function: Make member/top-level function- private by default--
__label__features Type annotations supported in Java elements--Reflection-related implementations are pending-
__label__corrective Fix for the code to compile--
__label__corrective fix tests after recent refactoring--
__label__perfective Optimize search of package part files for- JetPositionManager--
__label__corrective "Avoid wrapping AssertionError over and over- again  see KT-7501--"
__label__perfective "Refactoring: TypeInfoFactory.createTypeInfo()- without type -> noTypeInfo()  getNotNullType -> getTypeNotNull  nullability- refined  style fixes--"
__label__corrective JS: fix rhino 64k issue--
__label__corrective Test data paths fixed--
__label__corrective Change Signature: Do not fail on unresolved- PsiMethod  -KT-9535 Fixed--
__label__perfective Added some new test for java8--
__label__corrective Standard library is imported properly rather than- enclosing the user code--
__label__perfective add test for private-to-this visibility in traits--
__label__perfective Add test for lookups to classifier members--
__label__corrective J2K: correct conversion of nested class- references-- -KT-5294 Fixed- -KT-5400 Fixed-
__label__perfective Minor: additional logging when failing to read- file in VirtualFileKotlinClass--
__label__perfective Add WITH_RUNTIME and WITH_REFLECT directives to- box tests--Currently all tests in boxWithStdlib/ run with both runtime and reflection-included; eventually they'll be merged into box/ using these directives-
__label__corrective Escaping keywords used as identifiers in- DescriptorRenderer.-- -KT-2810 fixed-
__label__features Constraint incorporation--In a constraint system a new bound is incorporated:-all new constrains that can be derived from it-(and from existing ones) are added-
__label__perfective Unused method removed--
__label__perfective Drop JetClassObject element and its usages--as class objects are now represented by JetObjectDeclaration element-
__label__features js enumerable for ecma5--
__label__perfective Tests for match--
__label__features 'hasSyntaxErrors' check moved from Diagnostic to- PositioningStrategy--This makes possible to mark diagnostic errors when syntax error are present (by overriding isValid in PositioningStrategy subclasses).-
__label__perfective "Minor  move boxAgainstJava logic to a separate- test class--"
__label__features Reflection support--
__label__features Try keyword--
__label__corrective Introduce Variable: Forbid extraction from class- initializer (aside of its body)  -KT-8329 Fixed--
__label__corrective Reporting real source file paths from K2JS- compiler--
__label__corrective KT-737 compareTo() intrinsic--
__label__perfective Lazy receiver parameter descriptor: to avoid- eager computation of default types--
__label__perfective Config refactoring.--
__label__perfective Debug output removed--
__label__perfective rename JetTypeMapper constants--
__label__perfective "Split ProtoBuf.Callable to three messages:- constructor  function  property--Serialize both at the moment  will drop the old one after bootstrap-"
__label__corrective Custom equals operator (includes little patch to- frontend)---KT-2354 fixed-
__label__perfective More usages of asKtScope() removed--
__label__perfective better root ns--
__label__perfective "Removed doTest(char)  since it was erroneous.--If lookupString and tailText are both null  completionChar is ignored.-"
__label__perfective Rendering nice unicode arrow for function types- in UI.--
__label__corrective Fix for EA-39487--
__label__perfective Invert if condition intention - smaller- availability range + refactored--
__label__perfective Replaced AddReturnTypeFix with- SpecifyTypeExplicitlyAction for properties.--
__label__perfective Refactoring of- AnnotationResolver.resolveAnnotation(s)Arguments--
__label__perfective "reformat code  optimize imports--"
__label__perfective WithDeferredResolve removed (it was never used)--
__label__perfective Refactored reference provider logic.--
__label__perfective wrongly added test removed (correct one was added- before by Zhenja)--
__label__corrective Prohibit Array<Nothing>--
__label__perfective One more test added--
__label__perfective "Minor  make ModuleDescriptor public in injectors--It's much more convenient to call injector.getModule() than-injector.getResolveSession().getModuleDescriptor()-"
__label__perfective rename--
__label__perfective abstract + data and sealed + data are also- deprecated--
__label__perfective Cleanup--
__label__corrective Fixed highlighting for enum and object names in- code-- -KT-8134 Fixed-
__label__features [KT-4124] Add support for simple nested classes--
__label__perfective Remove unused method--
__label__corrective "Exception fix: diagnose an error for a generic- type which is a subtype of itself  a set of tests -EA-64453 Fixed--"
__label__features Initial implementation of KT-6427 Completion to- use Java name suggestion to complete function parameters (+ filtered out- synthetic Kotlin classes from completion)--
__label__corrective KT-1808 Auto import offers private static Java- classes  -KT-1808 fixed--
__label__perfective reimplemented extension literal definition and- calls to comply with jquery conventions--
__label__corrective Extract Function: Fix signature update on dialog- opening--
__label__corrective do not mark error type  if the expression is- resolved to namespace  (EXPRESSION_EXPECTED_NAMESPACE_FOUND error)--
__label__features Show warning on usages of javaClass<T>() in- annotations loaded from Java--
__label__features tuple literals--
__label__corrective Fix breakpoints in inline functions in libraries--
__label__corrective Fixed EA-70945--
__label__corrective "Fix for KT-9897: Cannot pop operand off an empty- stack"" with -= on ArrayList element--  -KT-9897 Fixed-"
__label__corrective "KT-8968 Special completion after ""super.""-- -KT-8968 Fixed-"
__label__perfective Base class for surrounders for statements--
__label__perfective refactoring--
__label__perfective Constructor body generation extracted as a method- (+ migrated to Printer for convenience)--
__label__corrective Control-Flow Analysis: Fix bug in finally-block- repetition in the presence of non-local returns  -EA-65982 Fixed--
__label__features "Decompiler: Introduce DeserializerForDecompiler--Component which can ""resolve"" descriptors without project-It builds dummy descriptors for dependencies which are enough to build decompiled text-"
__label__features Support for checking loaded descriptors agains an- expected txt file--
__label__corrective Fix KT-10472: compare all overloads including- varargs in a single pass.--
__label__perfective Formatting--
__label__perfective Abstract Lazy test for gianostics--
__label__perfective Method cache for ClassDescriptorSerializer--
__label__perfective Minor refactor--
__label__corrective "Extract Function: Consider reference ""broken"" if- corresponding diagnostics are changed after code fragment extraction - -KT-8633 Fixed--"
__label__features Supported propagation for subclass of- j.u.Collection and similar classes.--
__label__features Create from usage: Create constructor parameter- by reference in delegation specifier  -KT-6601 Fixed--
__label__perfective Removed unused methods from KtScope.--
__label__features Introduce Variable: Support extraction of string- template fragments  -KT-2089 Fixed--
__label__perfective Implemented better rendering for parameters with- default values in decompiler and descriptor renderer.-- -KT-1582 fixed-
__label__corrective KT-3639 Can't find sources of AbstractIterator- when navigating from stack strace-- -	 fixed-
__label__perfective "Deprecate and don't write KotlinClass$Kind  to be- removed later--"
__label__perfective Smart completion: code improvements and- refactorings after code review--
__label__corrective Lazy resolve: Package-level objects are handled- properly--
__label__perfective Get rid of obsolete syntax in quickfixes changing- lambda's signature--- Do not wrap parameters with '()'-- Do not set return type for them-- Fix existing testData-
__label__perfective refactored generation of static initializer--
__label__corrective "fix KT-9299 In a project with circular- dependencies between modules  IDE reports error on use of internal class from- another module  but the corresponding code still compiles and runs.---KT-9299 Fixed-"
__label__corrective Fix header scope for secondary constructors--Add companion object's scope and nested classes-- -KT-6996 fixed-
__label__corrective Prevent lazy types to be accidentally computed in- debug--
__label__perfective " - Adjusted build.properties so that default values- work directly.  - Refactored the usage of parameter lists by using a new- ParameterList (implementing List<Parameter>) and adding helper methods.  -- Form now derives from ParameterList.  - ConnectorCall.getRequestHeaders() and- getResponseHeaders() now return a ParameterList  other helper methods- removed.  - Added urlEncode() on Parameter.  - Reference now sets new scheme- names in lower case to respect normalization rules.  - Added more unit tests- for the Resltet API; Contributed by Lars Heuer.  - Fixed bug in Jetty 5 HTTPS- connector preventing the usage of the specified SSL keystore in certain- cases. Found by Dave Pawson.  - Added constructors to DefaultServer using the- protocol's default port  - Updated Jetty 6 to version beta 17.  - Fixed type- in JdbcClient sample XML document. Reported by Thierry Boileau.  - Added new- FileRepresentation constructor accepting a File instance.  - Improved- ByteUtils.write() methods for streams by automatically buffering output- streams if necessary.  - Templatized AbstractChainlet. Contributed by Lars- Heuer.  - Fixed AbstractRestlet which was not reporting the proper error when- non standard Method instances were called but not handled.  - Added FILE- protocol to Protocols enumeration.  - Added- com.noelios.restlet.data.FileReference.  - Added ReferenceList to handle- ""text/uri-list"" representations.  - Renamed Resource.getVariantsMetadata() to- getVariants() for simplification purpose.  - Added Resource.getIdentifier() :- Reference method.  - Renamed com.noelios.restlet.impl.HttpServerCallImpl to- HttpServerCall.  - Renamed ""initParameters"" into ""properties"" for Component- interface and related classes.  - Refactored the methods allowing the- attachment of connectors in Component interface and related classes.  -- Removed ""name"" property from Connector and Component interfaces and related- classes.  - Added modifiable ""properties"" map to the Connector interface.  -- Added FileClient implementing a client connector for the FILE protocol - allowing standard access to local file systems.  - Added- ServerCall.getRequestInput() method to factorize common logic among HTTP- server connectors.  - Added ClientCall.getResponseOutput() method to- factorize common logic among HTTP and FILE connectors.  - Moved- StringUtils.normalizePath() method to FileReference.--"
__label__perfective " - Renamed the ""org.restlet.ssl.hostnameVerifier""- attribute into just ""hostnameVerifier"" for consistency with existing naming.--"
__label__corrective "Fixed ""not found"" status for Options requests.--"
__label__perfective " - All core representation classes have been moved- from the ""org.restlet.resource"" package into a new- ""org.restlet.representation"" package. Make sure to adjust your import- instructions.--"
__label__corrective Fixed ZipClientHelper test case.--
__label__corrective Fixed generation of cache directives in the- cache-control header.--
__label__features " - Refactored the JdbcClient to return XML result- sets (using a new RowSetRepresentation class). In addition  the    XML- request can now contain several SQL statements to be executed as a batch.- Contributed by Thierry Boileau.--"
__label__corrective  - Simple HTTP connector works again--
__label__perfective  - Cleaned code to remove Eclipse 3.4 warnings and- errors.--
__label__perfective  - Moved SIP test cases to test module--
__label__corrective "JAX-RS extension: - added to changes.txt  that I- switched to API 0.11 - fixed a big bug related to the determining of the- MessageBodyWriter - using org.restlet.data.Conditions.getStatus() for- javax.ws.rs.core.Request.evaluatePreconditions() instead of using an own- implementation (the Restlet method has a bug  I'm waiting for the patch to be- applied) - fixed a bug in JaxRsUriBuilder.buildFromMap*() - returning status- 500 instead of 406  if no message body writer could be found (according to a- change in the specification)--"
__label__corrective  - Fixed unit test due to random Java method- introspection order--
__label__perfective         - The Request-isConfidential() method has- been refactored to           be supported by Message and Response as well.- The method           Request-setConfidential() has been removed (back to- Restlet           1.0 state). Added Protocol-isConfidential() method to- support           the new implementation which rely on Request-getProtocol().-           Reported by Kevin Conaway.--
__label__perfective  - Renamed DirectoryResource into- DirectoryServerResource to match its new super class name.--
__label__corrective "Fix issue -853--DefaultSslContextFactory would ignore enabledCipherSuites unless you also specified enabledProtocols  due to a copy-paste error.-"
__label__perfective  - Upgraded Simple server to version 4.1.2.- Contributed by Niall Gallagher.--
__label__corrective Fixed regression. Reported by Guido Schmidt--
__label__corrective  - Fixed NIO client blocking due to reuse attempt- of a busy connection--
__label__perfective  - Added Metadate-getParent() method.  - Added- better Variant-toString() implementation.--
__label__features JAX-RS extension continued: - Added an- ObjectFactory to the JAX-RS extension for customized root resource class and- provider instantiation. Contributed by Bruno Dumon.--
__label__perfective  - More optimizations for internal connectors.--
__label__corrective Fixed bug--
__label__corrective "       - When updating a file via the FILE- connector  some deletion          issue could occur on Windows due to JVM- integration issues          with the OS. A workaround to reduce this was to- invoke the          garbage collection. Reported by Kevin Conaway.--"
__label__features  - Continued SIP transaction support--
__label__corrective  - Fixed connection closing regression--
__label__perfective Removed Representation-getDigester* methods. There- is no reason to favor this way to wrap a Representation.--
__label__perfective  - Initial code for enhanced internal HTTP- connectors.--
__label__corrective Fixed bug in DomRepresentation causing the loss of- both public and system DocType. Reported by Lee Saferite.--
__label__features  - Initial code for new default HTTP connector and- SIP connector.--
__label__corrective Fixed content negotiation issue in the servlet- extension.--
__label__features  - Continued NIO connector--
__label__perfective Compute logged duration only if needed.--
__label__features Added support of the Authentication-Info header.--
__label__corrective  - Fixed bugs--
__label__perfective       - Renamed Representation-write(Appendable) to- append(Appendable).--
__label__corrective  - Fixed issue with HTTP client connector not- correctly reporting connection and other IO errors.--
__label__perfective Fixed javadocs.--
__label__features Added support of the dataservices extension in- Android.--
__label__perfective         - Refactored WADL extension based on John- Logsdon feed-back.           Add convenience methods and constructors on- MethodInfo and           RepresentationInfo. Removed unecessary methods on   -        WadlResource like getRepresentationInfo(Variant) and          - getParametersInfo(RequestInfo|ResponseInfo|Representation-           Info).--
__label__perfective JAX-RS-Extension: - added javadoc to util methods.--
__label__corrective "JAX-RS extension - Issue 800 (an NPE): I've checked- all methods with the name  and all possible points for NPE should be defanged- now--"
__label__perfective  - Updated Jetty to version 6.1.15--
__label__corrective  - Fixed issues in Grizzly code.--
__label__corrective  - Fixed bug causing unit tests to fail--
__label__features Added parsing of RDF XML.--
__label__features JAX-RS-Extension: - encoding of UriBuilder- parameters implemented--
__label__perfective  - Bumped versions to 1.0 RC3  - Updated docs  -- Removed deprecated methods--
__label__perfective  - Minor refactoring in RDF extension.--
__label__features Added support of Ranges.--
__label__corrective  - Disabled failing test cases (temp)--
__label__corrective  - The ServletContextAdapter passed by the- ServerServlet to the Restlet's Application was    not given to the- constructor but via the setContext() method. Reported by Tammy Croteau.--
__label__features  - Initial code for new default HTTP connector and- SIP connector.--
__label__features  - Reference now verifies the validity of- characters before setting them. Suggested by Stephan Koops.--
__label__features Add SpringRouter-style supplemental direct routing- via the attachments property.  This allows for multiple routes for the same- bean or routes which would be illegal/unmatched as bean names.--
__label__features Add support for template route matching mode--
__label__perfective  - Improved exception handling on createResource().--
__label__corrective Fixed potential NPE when the product name is null.- Reported by Vincent Ricard.--
__label__perfective Removed debug traces.--
__label__perfective  - Deprecated ServletConverter and added an- equivalent    ServletAdapter class to prevent confusion with the  - ConverterService reintroduced in Restlet 1.2.  - Added root Helper class.--
__label__features JAX-RS extension continued: - @FormParam is now- supported--
__label__corrective       - The simplified logging formatter (one line)- is now available only in         the Java SE edition as it could cause- troubles with Java EE container         and potentially GAE/Android as we- reconfigure the default log manager         programmatically. Reported by- Kristoffer Gronowski and Bo Xing.--
__label__corrective  - Fixed plugin descriptors for some extensions.--
__label__corrective Fixed code generation for the GAE edition.--
__label__features Completed implementation of apispark extension.--
__label__corrective " - Some unit test were catching exceptions - preventing JUnit from failing the tests.--"
__label__features  - Initial code for new default HTTP connector and- SIP connector.--
__label__features  - Initial code for new default HTTP connector.--
__label__corrective        - Fixed HTTPS issues in internal connector.--
__label__perfective Removed unnecessary instruction.--
__label__corrective  - Fixed filling state bug in Buffer class  -- Removed received inbound message from messages queue when fully received  -- Connection closing seems to work again  - CouchDBUpload test working again--
__label__corrective Fixed internal client connector.--
__label__corrective Fixed test case.--
__label__perfective "Add comments describing methods (from HTTP  Webdav- RFC).--"
__label__corrective        - The CLAP connector didn't set the- expiration date based on          its 'timeToLive' parameter. Reported by- Peter Becker.--
__label__features Introducing a new Directory constructor with a- LocalReference instance.--
__label__features Allowed custom parsing of Atom documents.--
__label__corrective "Fixed issue -649  if needed  add base64 padding- characters to encoded md5 hash before decoding. Reported and contributed by- Andy Dennie.--"
__label__features  - Initial code for new default HTTP connector and- SIP connector.--
__label__corrective Indexed directories were not properly handled with- the CLAP protocol. Reported by Rob Heittman.--
__label__corrective Fixed potential infinite loops while reading- headers (issues -599 and -656). Reported by weiweiwang.--
__label__corrective  - Fixed potential NPE in ReferenceList--
__label__features  - Continued SIP transaction support--
__label__features " - Continued support for non-blocking HTTPS to the- internal NIO connectors  client-side and server-side.--"
__label__corrective Fixed NPE in the dataservices extension due to bad- parsing of referential constraints.--
__label__corrective prevented primitive type from being returned as- models in API Declarations (https://github.com/restlet/apispark/issues/1168)--
__label__perfective EvaluatePrecondition* to Request* renamed--
__label__perfective "        - Updated Jetty to version 7.0 RC4.- Upgraded the Jetty           extension: replaced ""headerBufferSize"" parameter- by           ""requestHeaderSize"" and ""responseHeaderSize"" parameters.        -   Removed ""lowThreads"" parameter no longer available.--"
__label__corrective  - Fixed latest issues. Submitted by Thierry- Boileau.--
__label__perfective 1.0 beta 9 (not released yet)  - Merged Restlet and- UniformInterface interfaces into a single Restlet interface for- simplification purpose.  - Moved connectors handling from OriginServer upto- Component as other components like Proxies need them.  - Renamed UniformCall- and related methods into RestletCall.  - Renamed RestletCall.getHandler*()- methods into getRestlet*().  - Updated Jetty 6 to version 6.0 beta 14.  -- Fixed issue with ServletCall.getRequestUri returning a trailing '?'. Reported- by Yuri de Wit.  - Renamed NRE implementation classes HandlerTarget and- HandlerMapping to RestletTarget and RestletMapping.  - Added a new extension- to NRE to support Apache Commons FileUpload to facilitate the processing of- multipart forms. Suggested by Yuri de Wit.  - Removed RestletContainer and- RestletServer interfaces.  - Renamed DefaultRestletContainer and- DefautRestletServer to RestletContainer and RestletServer for simplification- purpose.  - The parent of all Restlets is now a simple Component and not- necessarily a RestletContainer.  - Factory and Manager were refactored for- clarification and simplification purpose.  - Added getInitParameters() to- Component to allow external code to pass init params in a standard way (for- example a main method or the ServerServlet).--
__label__perfective  - Additional WADL refactorings.--
__label__corrective Fixed potential NPE.--
__label__perfective Added warning message when no client connector- supports the request's protocol.--
__label__corrective Fixed range issue -607.--
__label__corrective         - Fixed bug in XstreamRepresentation- failing to use the DOM           XML driver. Reported by Florian Georg.--
__label__corrective Fixed issue 210 : a Language tag is composed of a- list of subtags--
__label__perfective Updated Ranges test case.--
__label__features ServerResource now supports empty POST and PUT- requests.--
__label__perfective  - Fixed Message-release() Javadocs.--
__label__perfective Updated to Scripturian 1.0RC3--
__label__corrective        - Fixed selector exhaustion issue with- Grizzly connector.          Reported by Bruce Lee.--
__label__corrective         - Fixed error in Conditions.getStatus()- sometimes returning           304 for methods other than HEAD and GET.- Contributed by           Stephan Koops.--
__label__features UPDATE ADD now possible with subdocuments fields--
__label__corrective Fixed issue with inner class and Object Database- interface--
__label__perfective Huge refactoring on GraphDB: - changed class- names in vertex and edge - Optimized memory consumption by removing nested- records - Optimized speed in ORecord.equals() and hashCode(): now avoid field- checks (experimental)--
__label__corrective Fixed bug on oidentifable but not odocument- fetching--
__label__perfective Unneeded index flush was removed--
__label__corrective "fixed collection fields in query results  issue - -3212--"
__label__features Patch by Luca Molino about the management of JSON- with document type not only as first attribute--
__label__corrective Fixed issue 684 about strict mode--
__label__features Implemented issue 109:- http://code.google.com/p/orient/issues/detail?id=109 About in-memory clusters- inside regular persistent databases.--
__label__corrective Issue 762 was fixed.--
__label__corrective DbDeleteTest is made more stable.--
__label__corrective Fixed a bug on browsing clusters in transaction- as issue https://github.com/tinkerpop/blueprints/issues/312--
__label__corrective Issue -1604. Remote bag. Fix save notification.--
__label__perfective Created 2 new test case with creation of vertexes- and edges in not default clusters--
__label__features Profiler: - all the metrics now have a- description and a type - supported new HTTP REST command /profiler/metadata- to retrieve all the metadata--
__label__corrective Fixed issue 156 about deep inheritance--
__label__features Drop database implemented and tested against- local and remote db--
__label__corrective "Issue -2900  OFlatDatabase was removed.--"
__label__corrective Fixed issue on delete when the database is not- yet opened--
__label__features "Support for not-logget Transactions by setting- OTransaction.setUsingLog(false). Default is true  so full compatibility is- guaranteed--"
__label__features Issue -71:- http://code.google.com/p/orient/issues/detail?id=71 Working in progress--
__label__features "Supported new syntax in SQL UPDATE to use a inner- query as target. Example: update ( traverse V.in  E.out from V ) set date =- sysdate() where out.size() > 1--"
__label__corrective Fixed issue on browsing of entire cluster/class--
__label__corrective Fix by Andrey on marshalling/unmarshalling of- embedded documents--
__label__perfective Improved performance by handling begin and end of- offsets in cluster data.--
__label__corrective Fixed issue -255 about hooks: wasn't called- during TX - added new test cases - check of recursive call for the same- record in hook.--
__label__perfective Removed old code to handle temporary records in- indexes--
__label__corrective Fixed issue 1198: NullPointerException in- OCommandExecutorSQLResultsetAbstract.assignTarget--
__label__corrective fixes -1980: permissions follow role's- inheritance--
__label__corrective Fixed bug on database drop in Maven Tests--
__label__perfective Renamed threads to a more understandable ones--
__label__features implementing math operations--
__label__perfective Cleanup inspection warnings--
__label__perfective Improved automatic backup management of errors--
__label__corrective Fixed issue 800 closing the socket on timeout--
__label__corrective Fixed problem with remote connection to- distributed storage--
__label__features "GraphDB: supported 3 locking modes: no locking - database level locking (default) and record level locking--"
__label__corrective Fixed bug on management of indexes with the- introducing of new ODistributedStorage--
__label__corrective Fixed issue -1521 about JSON management of- embedded lists with different types--
__label__perfective Console: fixed jdk6 problem in more elegant way- (thanks to Andrey's suggestion)--
__label__perfective removed not useful system out from test cases.--
__label__perfective "Minor: fixed javadoc  put a variable as final - managed no return in OPLA/execute block--"
__label__features implemented integration of globla property with- binary serialization--
__label__corrective Fixed some errors in remote calls.--
__label__corrective fixed bug on shutdown--
__label__features Started support for server-side triggers--
__label__corrective Fixed problem of ConcurrentModificationException- reported by Bayoda: the problem should be due to a wrong isolation on Map in- cache: used exclusive lock even for keys() and get().--
__label__features "Changed syntax for ""create class"" command. Now- wants the keyword ""CLUSTER"" and also accepts cluster names--"
__label__perfective Renamed everywhere OTreeMap in OMVRBTree as the- new name of the algorithm: OMVRBTree--
__label__corrective "Fixed issue 110 about HTTP/REST invocation of- ""command"" parameter passing a SELECT statement--"
__label__features Further work or traverse: - supported new- OSQLPredicate to specify a predicate using SQL language--
__label__perfective Minor: fix warning--
__label__perfective Huge refactoring on GraphDB: - changed class- names in vertex and edge - Optimized memory consumption by removing nested- records - Optimized speed in ORecord.equals() and hashCode(): now avoid field- checks (experimental)--
__label__corrective fixed minor issue with thread local management--
__label__corrective Working to fix corrupted data in sockets--
__label__perfective Minor optimization in RidBag--
__label__perfective Changed log level to debug--
__label__corrective Removed checks if db is open as a bug reported in- the ML by Stefan Ollinger--
__label__perfective Improved memory usage and optimized general speed--
__label__corrective Fixed bugs on index where internal records were- not deleted--
__label__corrective Fixed issue on empty links--
__label__features OPLA: supported invocation of Java static methods--
__label__corrective Fixed issues with sharing. Added also first test- case on sharding--
__label__corrective last attempt of fixing test failing on ci.--
__label__corrective Distributed: fixed issue -2008 on deploying- database--
__label__corrective "Fixed a bug in concurrency: - adaptive lock can- be configured by OGlobalConfiguration - Created new- OGlobalConfiguration.ENVIRONMENT_CONCURRENT for this purpose -- OSharedResourceAdaptiveLinked class has no sense to exists anymore: removed -- segments don't lock the storage anymore but has own lock. This could be- removed but it will tested for a while - update and delete record operations- lock the storage in exclusive mode  but probably this can be optimized in the- next future ---"
__label__corrective Fixed issue about out*() functions--
__label__perfective Minor: removed some warnings--
__label__corrective Fixed issue -3741--
__label__corrective Fixed issue -2472 about null values in Lists--
__label__corrective Index in tx: Fixed issue 468 about deletion--
__label__perfective Issue -1607 WAL page change tracking was- reimplemented.--
__label__corrective Released 0.9.8 with the fix on partitioning in- Key/Value Server--
__label__corrective OOM  reported by NMSWorks was fixed.--
__label__features Issue -1404 Write cache speed improvements.--
__label__corrective Fixed issue on set password for OUser.--
__label__features Issue 161: added the support for custom strategy- on creation of records- http://code.google.com/p/orient/wiki/Security-Customize_on_creation--
__label__corrective "Fixed issue about parenthesis in SQL query  added- one more test to the suite for it--"
__label__features Fixed issue -1445 providing the new TIMEOUT in- most of the commands--
__label__corrective Fixed problem with LET and context variables--
__label__features Implemented new commands: - truncate cluster -- truncate class--
__label__corrective Fixed bug using SQL projection against Object- Database interface. Now returns always documents instead of POJOs when the- ODocument has no class associated.--
__label__features Implemented self-repair in case the security is- broken. This new method in the ODatabaseListener interface will allow to- handle corruptions in better way.--Console now displays a message and after a user input fix it. Cool!-
__label__corrective Fixed issue reported by Steven about TX- congruency with nested records. The bug was reported in rollback.--
__label__features HTTP static content now supports single file as- configuration--
__label__perfective removed nasty warnings in compilation--
__label__perfective Improved management of distributed cluster nodes--
__label__perfective Improved import/export tools--
__label__corrective fixed cluster id selection in distributed mode.--
__label__corrective Fix failed WAL test.--
__label__corrective Fix by Andrey to get working test cases even on- Linux (Windows seems to eat anything)--
__label__corrective Fix by Luca Molino on schema and in-thread db--
__label__corrective fix for use of different serializer by the db- compare--
__label__corrective Working to fix corrupted data in sockets--
__label__corrective Fixed problem with linkeset modified right after- query in remote configuration--
__label__perfective Issue -1404 WAL durability test improvements.--
__label__features first implementation of binary record serializer- debug info. issue -4027--
__label__perfective Minor improvement on collection remove--
__label__corrective Fix by Luca Molino to close issue 619--
__label__perfective Improved auto-recognize of type in JSON reader--
__label__corrective Issue -1607 Fix blueprints tests and TX NPEs.--
__label__corrective Fixed issue on missed saving of the configuration- when Local Data has multiple files. Reported by Ed Barbeau:- http://groups.google.com/group/orient-database/msg/0299391834b65b73--
__label__features CAMEL-5906: Added new camel-servletlistener- component for bootstrapping Camel in web app without using spring etc. Work- in progress.--git-svn-id: https://svn.apache.org/repos/asf/camel/trunk@1428278 13f79535-47bb-0310-9956-ffa450edef68-
__label__perfective Minor cleanup--git-svn-id: https://svn.apache.org/repos/asf/activemq/camel/trunk@712728 13f79535-47bb-0310-9956-ffa450edef68-
__label__features CAMEL-3014 camel-josql should have SQL language- META-INF which can be found automatically by camel-core--git-svn-id: https://svn.apache.org/repos/asf/camel/trunk@980675 13f79535-47bb-0310-9956-ffa450edef68-
__label__perfective MR-187: Added more unit tests.--git-svn-id: https://svn.apache.org/repos/asf/camel/trunk@824320 13f79535-47bb-0310-9956-ffa450edef68-
__label__perfective CAMEL-1712 Upgraded the camel-ibatis to JUnit4--git-svn-id: https://svn.apache.org/repos/asf/camel/trunk@785119 13f79535-47bb-0310-9956-ffa450edef68-
__label__perfective CAMEL-1842 Added OSGi integration test for- camel-mail and camel-cxf--git-svn-id: https://svn.apache.org/repos/asf/camel/trunk@795813 13f79535-47bb-0310-9956-ffa450edef68-
__label__features CAMEL-870: Added transferExchange option to- camel-jms.--git-svn-id: https://svn.apache.org/repos/asf/camel/trunk@756685 13f79535-47bb-0310-9956-ffa450edef68-
__label__perfective Added unit tests based on the mailing list- question--git-svn-id: https://svn.apache.org/repos/asf/camel/trunk@1224673 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective CAMEL-2445 applied patch with thanks to Stan and- Jeff--git-svn-id: https://svn.apache.org/repos/asf/camel/trunk@906342 13f79535-47bb-0310-9956-ffa450edef68-
__label__perfective CAMEL-541: Removed a bad tangle in camel spi. Not- this package has no tangles.--git-svn-id: https://svn.apache.org/repos/asf/camel/trunk@748992 13f79535-47bb-0310-9956-ffa450edef68-
__label__perfective CAMEL-1369: Removed @MessageDriven as its- replaced with @Consume.--git-svn-id: https://svn.apache.org/repos/asf/camel/trunk@749562 13f79535-47bb-0310-9956-ffa450edef68-
__label__perfective improved the camel-bam module to handle- concurrent processing better & dealing with JDBC/JPA exceptions if concurrent- updates to the same process occur at the same time; also added more better- tests--git-svn-id: https://svn.apache.org/repos/asf/activemq/camel/trunk@563909 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective CAMEL-751 Get the CamelContext ErrorHandler to- work--git-svn-id: https://svn.apache.org/repos/asf/activemq/camel/trunk@679345 13f79535-47bb-0310-9956-ffa450edef68-
__label__features CAMEL-1198: Ant path matcher now also possible- with camel-ftp.--git-svn-id: https://svn.apache.org/repos/asf/activemq/camel/trunk@730753 13f79535-47bb-0310-9956-ffa450edef68-
__label__features "CAMEL-4077: Sanitiy check route in XML DSL  that- there is input and outputs in routes.--git-svn-id: https://svn.apache.org/repos/asf/camel/trunk@1134300 13f79535-47bb-0310-9956-ffa450edef68-"
__label__corrective Fix test error reported by TeamCity--git-svn-id: https://svn.apache.org/repos/asf/camel/trunk@739402 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective Updaed the mail component so that mail headers- are correctly copied over from message to message.  This highlighted the fact- that th TO: should always be what is specified on the outbound endpoint- instead of the To: in the message. Added a test the validates headers are- preserved.--git-svn-id: https://svn.apache.org/repos/asf/activemq/camel/trunk@537937 13f79535-47bb-0310-9956-ffa450edef68-
__label__features CAMEL-6053: Allow to override blueprint config- admin placeholders from unit test.--git-svn-id: https://svn.apache.org/repos/asf/camel/trunk@1443931 13f79535-47bb-0310-9956-ffa450edef68-
__label__perfective corrected typo.--git-svn-id: https://svn.apache.org/repos/asf/camel/trunk@1331967 13f79535-47bb-0310-9956-ffa450edef68-
__label__features added fix for- https://issues.apache.org/activemq/browse/CAMEL-347 to enable JUEL to invoke- methods in expressions--git-svn-id: https://svn.apache.org/repos/asf/activemq/camel/trunk@631503 13f79535-47bb-0310-9956-ffa450edef68-
__label__features "CAMEL-1338: Added basic operator support for- simple language - end users is confused its not working  and nice to have- core support for basic operators. Added ?method=methodname for the bean- langauge so its in line with the bean component.--git-svn-id: https://svn.apache.org/repos/asf/camel/trunk@744707 13f79535-47bb-0310-9956-ffa450edef68-"
__label__features CAMEL-5370: Added direct-vm component to act as- synchronous direct calls between multiple camel contexts in the same JVM (eg- like direct + vm together). Can be used to support transactions spanning- multiple camel contextes / bundles.--git-svn-id: https://svn.apache.org/repos/asf/camel/trunk@1350591 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective CAMEL-3203: Fixed adding routes with quartz- endpoints to already started camel should add jobs to scheduler.--git-svn-id: https://svn.apache.org/repos/asf/camel/trunk@1005489 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective CAMEL-1461: JMSProducer only sets JMSReplyTo if- exchange is out capable. Fixed a NPE.--git-svn-id: https://svn.apache.org/repos/asf/camel/trunk@757693 13f79535-47bb-0310-9956-ffa450edef68-
__label__perfective CAMEL-2339: Scheduled consumer now log- java.lang.Error at FATAL level before rethrowing--git-svn-id: https://svn.apache.org/repos/asf/camel/trunk@896858 13f79535-47bb-0310-9956-ffa450edef68-
__label__perfective CAMEL-2930 clean up the codes for wiki--git-svn-id: https://svn.apache.org/repos/asf/camel/trunk@962786 13f79535-47bb-0310-9956-ffa450edef68-
__label__features CAMEL-1099: Added FileIdempotentRepositry--git-svn-id: https://svn.apache.org/repos/asf/activemq/camel/trunk@723291 13f79535-47bb-0310-9956-ffa450edef68-
__label__perfective CAMEL-1370 caching the StreamSource by caching- the inputStream or reader--git-svn-id: https://svn.apache.org/repos/asf/camel/trunk@746872 13f79535-47bb-0310-9956-ffa450edef68-
__label__perfective Removed the System.out.print line from RunMojo--git-svn-id: https://svn.apache.org/repos/asf/camel/trunk@758544 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective Fixed test--git-svn-id: https://svn.apache.org/repos/asf/camel/trunk@962779 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective Fix compile error--git-svn-id: https://svn.apache.org/repos/asf/activemq/camel/trunk@707028 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective [CAMEL-1510] BatchProcessor interrupt has side- effects (submitted on behalf of Christopher Hunt)--git-svn-id: https://svn.apache.org/repos/asf/camel/trunk@765686 13f79535-47bb-0310-9956-ffa450edef68-
__label__features CAMEL-2919: Debugger API--git-svn-id: https://svn.apache.org/repos/asf/camel/trunk@961615 13f79535-47bb-0310-9956-ffa450edef68-
__label__perfective CAMEL-4244 Add ThreadPoolProfileBuilder and- change ThreadPoolFactory to use the ThreadPoolProfile--git-svn-id: https://svn.apache.org/repos/asf/camel/trunk@1159342 13f79535-47bb-0310-9956-ffa450edef68-
__label__perfective CAMEL-3879 Applied patch of DanK with thanks--git-svn-id: https://svn.apache.org/repos/asf/camel/trunk@1099050 13f79535-47bb-0310-9956-ffa450edef68-
__label__perfective CAMEL-2470: Adding test for sending back a reply- to JMSReplyTo based on a temporary queue.--git-svn-id: https://svn.apache.org/repos/asf/camel/trunk@949117 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective CAMEL-751 fixed the spring configuration url- error--git-svn-id: https://svn.apache.org/repos/asf/activemq/camel/trunk@679379 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective Fixed tests.--git-svn-id: https://svn.apache.org/repos/asf/camel/trunk@1062115 13f79535-47bb-0310-9956-ffa450edef68-
__label__perfective Added unit test for mistyped URI--git-svn-id: https://svn.apache.org/repos/asf/activemq/camel/trunk@640963 13f79535-47bb-0310-9956-ffa450edef68-
__label__perfective MailConsumer and MailProducer now use the- endpoint reference from its super class and doesn'n manager its own instance- variable--git-svn-id: https://svn.apache.org/repos/asf/camel/trunk@1054815 13f79535-47bb-0310-9956-ffa450edef68-
__label__perfective CAMEL-2011: JmsEndpoint is now singleton.--git-svn-id: https://svn.apache.org/repos/asf/camel/trunk@814584 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective CAMEL-6013 fixed the issue that  Validator- component fails on XSD with indirect relative import--git-svn-id: https://svn.apache.org/repos/asf/camel/trunk@1438352 13f79535-47bb-0310-9956-ffa450edef68-
__label__perfective CAMEL-656: Polished dataset and timer component.- Added @deprecation to not used method. Removed unused imports.--git-svn-id: https://svn.apache.org/repos/asf/activemq/camel/trunk@712497 13f79535-47bb-0310-9956-ffa450edef68-
__label__perfective CAMEL-3447: Camel uses same media size names as- Java Printer API. Thanks to Torsten for patch.--git-svn-id: https://svn.apache.org/repos/asf/camel/trunk@1051120 13f79535-47bb-0310-9956-ffa450edef68-
__label__perfective Set the isCreateCamelContextPerClass on tests- that can pass with it to speed up the tests--git-svn-id: https://svn.apache.org/repos/asf/camel/trunk@1152396 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective removed the generics from the Process interface- so that it must take an Exchange parameter to avoid ClassCastException when- sending any old Exchange into an Endpoint<FooExchange>--git-svn-id: https://svn.apache.org/repos/asf/activemq/camel/trunk@534145 13f79535-47bb-0310-9956-ffa450edef68-
__label__perfective Added another test--git-svn-id: https://svn.apache.org/repos/asf/camel/trunk@921999 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective CAMEL-3788 Merged the patch into camel-http4--git-svn-id: https://svn.apache.org/repos/asf/camel/trunk@1083724 13f79535-47bb-0310-9956-ffa450edef68-
__label__features CAMEL-3689: AdviceWith can now manipulate routes.- This allows you for example to replace parts of routes during testing.--git-svn-id: https://svn.apache.org/repos/asf/camel/trunk@1072545 13f79535-47bb-0310-9956-ffa450edef68-
__label__features "further improvements for CAMEL-133  a client can- now create an exchange on an endpoint specifying the ExchangePattern it wants- to use for an Exchange via Endpoint.createExchange(pattern)--git-svn-id: https://svn.apache.org/repos/asf/activemq/camel/trunk@572625 13f79535-47bb-0310-9956-ffa450edef68-"
__label__perfective resource class refactoring; introducing a- reusable base class for sub-resources - also added a new RoutesResource to- simplify the root resource further--git-svn-id: https://svn.apache.org/repos/asf/camel/trunk@745556 13f79535-47bb-0310-9956-ffa450edef68-
__label__perfective minor tidy up of test case--git-svn-id: https://svn.apache.org/repos/asf/activemq/camel/trunk@654441 13f79535-47bb-0310-9956-ffa450edef68-
__label__features CAMEL-1320: Created gzip data format--git-svn-id: https://svn.apache.org/repos/asf/camel/trunk@756039 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective CAMEL-3114: Fixed rss component bug with uri- encoding.--git-svn-id: https://svn.apache.org/repos/asf/camel/trunk@998608 13f79535-47bb-0310-9956-ffa450edef68-
__label__features CAMEL-2206: Added new Sampler EIP. Thanks to- Stephen Gargan for the contribution.--git-svn-id: https://svn.apache.org/repos/asf/camel/trunk@883614 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective Fixed test on other boxes--git-svn-id: https://svn.apache.org/repos/asf/camel/trunk@904741 13f79535-47bb-0310-9956-ffa450edef68-
__label__perfective Removed the printStackTrace line in the- CxfWsdlFirstTest--git-svn-id: https://svn.apache.org/repos/asf/activemq/camel/trunk@665997 13f79535-47bb-0310-9956-ffa450edef68-
__label__features "added contains() method to the DSL for- .header(""foo"").contains(""cheese"") for multi-value headers--git-svn-id: https://svn.apache.org/repos/asf/activemq/camel/trunk@539516 13f79535-47bb-0310-9956-ffa450edef68-"
__label__corrective CAMEL-1977: Http based components should filter- out camel internal headers.--git-svn-id: https://svn.apache.org/repos/asf/camel/trunk@814567 13f79535-47bb-0310-9956-ffa450edef68-
__label__features CAMEL-1789 Let the Camel Route support to lookup- the service which is exported from the OSGi bundle--git-svn-id: https://svn.apache.org/repos/asf/camel/trunk@792398 13f79535-47bb-0310-9956-ffa450edef68-
__label__features CAMEL-4023 Properties to Cxf ClientProxyFactory- can be set on endpoint uri or CxfEndpoint bean.--git-svn-id: https://svn.apache.org/repos/asf/camel/trunk@1128561 13f79535-47bb-0310-9956-ffa450edef68-
__label__perfective Removed the System out from the GenericFile--git-svn-id: https://svn.apache.org/repos/asf/camel/trunk@752424 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective Fixed compiler issue on JDK 1.5--git-svn-id: https://svn.apache.org/repos/asf/camel/trunk@1056650 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective Fixed tests using released version.--git-svn-id: https://svn.apache.org/repos/asf/camel/trunk@991460 13f79535-47bb-0310-9956-ffa450edef68-
__label__perfective CAMEL-1933: Overhaul of JMX. Added managed send- to.Prepared for camel/route context runtime configuration to be managed.--git-svn-id: https://svn.apache.org/repos/asf/camel/trunk@808777 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective Fix for MulticastStreamCachingTest after- interceptor changes--git-svn-id: https://svn.apache.org/repos/asf/activemq/camel/trunk@658260 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective Fixed unit test having problem on Windows- deleting files for cleanup.--git-svn-id: https://svn.apache.org/repos/asf/camel/trunk@888416 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective fixed test case which was failing sometimes on- linux--git-svn-id: https://svn.apache.org/repos/asf/activemq/camel/trunk@576445 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective CAMEL-2636 Fixed the issue of IOException: Bad- file descriptor--git-svn-id: https://svn.apache.org/repos/asf/camel/trunk@934852 13f79535-47bb-0310-9956-ffa450edef68-
__label__perfective CAMEL-2325: Removed not needed code.--git-svn-id: https://svn.apache.org/repos/asf/camel/trunk@895568 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective CAMEL-1255: Fixed missing classes in .jar - osgi- export stuff--git-svn-id: https://svn.apache.org/repos/asf/activemq/camel/trunk@734408 13f79535-47bb-0310-9956-ffa450edef68-
__label__perfective Checkstyle--git-svn-id: https://svn.apache.org/repos/asf/camel/trunk@1228067 13f79535-47bb-0310-9956-ffa450edef68-
__label__perfective CAMEL-4071 clean up the camel OSGi integration- test and load the karaf spring feature first--git-svn-id: https://svn.apache.org/repos/asf/camel/trunk@1133394 13f79535-47bb-0310-9956-ffa450edef68-
__label__perfective CAMEL-3796 Polish the- CxfRsProducerAddressOverrideTest--git-svn-id: https://svn.apache.org/repos/asf/camel/trunk@1084067 13f79535-47bb-0310-9956-ffa450edef68-
__label__perfective added explicit generics to avoid possible- compiler wierdness in the DSL like we had yesterday where the compiler- decided to use Object rather than ProcessorType in some DSL expressions--git-svn-id: https://svn.apache.org/repos/asf/activemq/camel/trunk@585089 13f79535-47bb-0310-9956-ffa450edef68-
__label__features CAMEL-1004 - added a ServiceStatus property to- most Service implementations - and exposed the status of a route--git-svn-id: https://svn.apache.org/repos/asf/camel/trunk@748071 13f79535-47bb-0310-9956-ffa450edef68-
__label__perfective Removed the System.out.println of the test--git-svn-id: https://svn.apache.org/repos/asf/camel/trunk@1206115 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective CAMEL-4059: Fixed test on windows--git-svn-id: https://svn.apache.org/repos/asf/camel/trunk@1132659 13f79535-47bb-0310-9956-ffa450edef68-
__label__features CAMEL-2970: JmsProducer supports non blocking- async routing engine for InOut Exchanges (request-reply over JMS).--git-svn-id: https://svn.apache.org/repos/asf/camel/trunk@978995 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective Fixed test on other boxes.--git-svn-id: https://svn.apache.org/repos/asf/camel/trunk@933097 13f79535-47bb-0310-9956-ffa450edef68-
__label__perfective Polish the unit test of JmsMessageBindTest--git-svn-id: https://svn.apache.org/repos/asf/camel/trunk@1023715 13f79535-47bb-0310-9956-ffa450edef68-
__label__perfective CAMEL-2180: Do not use copy of exchange when- processing in doCatch.--git-svn-id: https://svn.apache.org/repos/asf/camel/trunk@881175 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective Camel fails if onCompletion has been mis- configured from Java DSL.--git-svn-id: https://svn.apache.org/repos/asf/camel/trunk@1040143 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective CAMEL-2510 Fixed the issue of Mixing jetty/http- in a route screws up the URI used by HttpClient--git-svn-id: https://svn.apache.org/repos/asf/camel/trunk@917529 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective CAMEL-939 - Fix csv test that fails on slower- machines sometimes.--git-svn-id: https://svn.apache.org/repos/asf/activemq/camel/trunk@700232 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective CAMEL-1665 fixed the unit test error--git-svn-id: https://svn.apache.org/repos/asf/camel/trunk@781238 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective Fixed unit test. Doh what a mistake--git-svn-id: https://svn.apache.org/repos/asf/camel/trunk@887104 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective CAMEL-3240 Fixed camel-core build error.--git-svn-id: https://svn.apache.org/repos/asf/camel/trunk@1058911 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective CAMEL-2795: Fixed tests--git-svn-id: https://svn.apache.org/repos/asf/camel/trunk@952909 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective CAMEL-4176: Fixed fallback to use http4 or http4s- for proxy scheme when configured as property on CamelContext properties.--git-svn-id: https://svn.apache.org/repos/asf/camel/trunk@1144310 13f79535-47bb-0310-9956-ffa450edef68-
__label__features allow the installed languages to be browsed- restfully for CAMEL-1355--git-svn-id: https://svn.apache.org/repos/asf/camel/trunk@752938 13f79535-47bb-0310-9956-ffa450edef68-
__label__perfective polished--git-svn-id: https://svn.apache.org/repos/asf/camel/trunk@1209457 13f79535-47bb-0310-9956-ffa450edef68-
__label__perfective [CAMEL-1289] HeaderFilterStrategy - move from- Component to Endpoint (for JHC component)--git-svn-id: https://svn.apache.org/repos/asf/camel/trunk@743889 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective CAMEL-6048: camel-xmljson fixed issue so- attrbiutes with name type can be serialized. Thanks to Arne M Stroksen for- the patch.--git-svn-id: https://svn.apache.org/repos/asf/camel/trunk@1443634 13f79535-47bb-0310-9956-ffa450edef68-
__label__features CAMEL-845: added firedtime property.--git-svn-id: https://svn.apache.org/repos/asf/activemq/camel/trunk@688957 13f79535-47bb-0310-9956-ffa450edef68-
__label__features CAMEL-1933: Overhaul of JMX. Routes can now be- started/stopped.--git-svn-id: https://svn.apache.org/repos/asf/camel/trunk@808328 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective CAMEL-1091 - Fix compilation issue on Java 1.5--git-svn-id: https://svn.apache.org/repos/asf/activemq/camel/trunk@718279 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective CAMEL-1078.  Fix potential NPE.--git-svn-id: https://svn.apache.org/repos/asf/camel/trunk@788149 13f79535-47bb-0310-9956-ffa450edef68-
__label__perfective CAMEL-1134 make the ZipDataFormat Stream friendly--git-svn-id: https://svn.apache.org/repos/asf/activemq/camel/trunk@722005 13f79535-47bb-0310-9956-ffa450edef68-
__label__perfective tidied up some of the default JMS configurations;- for more detail see http://cwiki.apache.org/CAMEL/jms.html--git-svn-id: https://svn.apache.org/repos/asf/activemq/camel/trunk@545124 13f79535-47bb-0310-9956-ffa450edef68-
__label__perfective Polished code--git-svn-id: https://svn.apache.org/repos/asf/camel/trunk@812510 13f79535-47bb-0310-9956-ffa450edef68-
__label__perfective Added some logs for debuging--git-svn-id: https://svn.apache.org/repos/asf/camel/trunk@757865 13f79535-47bb-0310-9956-ffa450edef68-
__label__corrective Fixed test--git-svn-id: https://svn.apache.org/repos/asf/camel/trunk@1407748 13f79535-47bb-0310-9956-ffa450edef68-
__label__features "Add a ResourceResolver implementation for WebJars--Prior to this commit  WebJars users needed to use versioned links within-templates for WebJars resources  such as `/jquery/1.2.0/jquery.js`.-This can be rather cumbersome when updating libraries - all references-in templates need to be updated.--One could use version-less links in templates  but needed to add a-specific MVC Handler that uses webjars.org's webjar-locator library.-While this approach makes maintaing templates easier  this makes HTTP-caching strategies less optimal.--This commit adds a new WebJarsResourceResolver that search for resources-located in WebJar locations. This ResourceResolver is automatically-registered if the ""org.webjars:webjars-locator"" dependency is present.--Registering WebJars resource handling can be done like this:--```java-@Override-protected void addResourceHandlers(ResourceHandlerRegistry registry) {-  registry.addResourceHandler(""/webjars/**"")-          .addResourceLocations(""classpath:META-INF/resources/webjars"")-          .resourceChain(true)-              .addResolver(new WebJarsResourceResolver());-}-```--Issue: SPR-12323--polish-"
__label__features "Add ability to customize message channels--@EnableWebSocketMessageBroker message channel configuration can now be-customized via WebSocketMessageBrokerConfigurer. It is necessary to-make this easy and even required as part of the basic configuration-since by default the message channels are backed by a thread pool of-size 1  not suitable for production use.--Issue: SPR-11023-"
__label__perfective polishing--
__label__features MockHttpServletResponse supports multiple- includes (SPR-	)--
__label__features JSR-223 based StandardScriptFactory (including- <lang:std> support)--This commit also completes 4.2 schema variants in spring-context.--Issue: SPR-5215-
__label__perfective Adapted getXmlAsSource implementation to avoid- compilation failure in IntelliJ IDEA--
__label__features @Resource injection points support @Lazy as well--Issue: SPR-	-
__label__features DataBinder tries ConversionService if- PropertyEditor could not produce required type--Issue: SPR-13042-
__label__features "Introduce ""dummy"" Environment implementation--For testing purposes in which an Environment implementation is required-but a ConfigurableEnvironment is not desirable.--All methods are no-ops and return null  therefore NPEs are likely.-"
__label__features SPR-	 - Allow XStreamMarshaller subclasses to- customise XStream object--
__label__perfective made ConversionExecutor internal; removed other- unused operations from public SPI--
__label__perfective javadoc--
__label__corrective Only register Date converters with global format--Change JodaTimeFormatterRegistrar and DateFormatterRegistrar to only-register converters for the Date and Calendar types when a global format-has been defined. This means that the ObjectToObject converter will-handle String->Date conversion using the deprecated Date(String)-constructor (as was the case with Spring 3.1).--Issue: SPR-	-
__label__perfective Polish JavaDoc--
__label__features "added public ""validateDatabaseSchema"" method to- Hibernate LocalSessionFactoryBean (SPR-	)--"
__label__perfective Polish Javadoc for PropertySource implementations--
__label__features "SPR-8454 Introduce Registration style objects - rename several Spring MVC *Configurer helpers to *Registry  add more tests--"
__label__features ResponseEntity's HeadersBuilder allows for- specifying existing HttpHeaders--Issue: SPR-12324-
__label__corrective SPR-5802 - NullPointerException when using- @CookieValue annotation--
__label__features New method to return string representation of- typeDescriptor--
__label__perfective Polish AbstractHandlerMethodMapping--Issue: SPR-11541-
__label__features SPR-7305 -- o.s.http.client.SimpleClientHttpRequestFactory does not allow to specify a- java.net.Proxy--
__label__corrective Add timeout async request handling to OSIV- components--This change adds async web request timeout handling to OSIV filters-and interceptors to ensure the session or entity manager is released.--Issue: SPR-10874-
__label__corrective "Allow file locations for resource handling--Prior to this change  location checks for serving resources would append-`/` to the location path it didn't already have one.--This commit makes sure not to append a `/` if the provided location is-actually a file.--Issue: SPR-12747-"
__label__corrective Shutdown Reactor env when relay handler is- stopped--The Reactor Environment (that's used by the TcpClient) manages a-number of threads. To ensure that these threads are cleaned up-Environment.shutdown() must be called when the Environment is no-longer needed.-
__label__features Allow binary messages in StompSubProtocolHandler--Issue: SPR-12301-
__label__corrective DataSourceUtils lets timeout exceptions through- even for setReadOnly calls (revised; SPR-7226)--
__label__perfective Polishing--
__label__features "added ""boolean isRegisteredWithDestination()""- method (SPR-7065)--"
__label__corrective getAllInterfacesForClass introspects parent- interfaces as well (SPR-7247)--
__label__corrective Fixed setFavorPathExtension delegation code--
__label__features Allow configuring custom ThreadPoolTaskExecutor--Issue: SPR-12272-
__label__perfective Clean up spring-webmvc-portlet tests warnings--Clean up compiler warnings in the tests of spring-webmvc-portlet. This-commit adds type parameters to all the types (mostly `List` and `Map`).--After this commit the only warnings in spring-web left are the-subclasses of `MyCommandProvidingFormController`.-
__label__perfective Refactor from deprecated GenericTypeResolver- calls--Refactor AbstractMessageConverterMethodArgumentResolver and-BridgeMethodResolver to use ResolvableType in preference to deprecated-GenericTypeResolver calls.--Issue: SPR-10980-
__label__perfective Inlined AntPathStringMatcher into AntPathMatcher--Also initializing the capacity of the AntPathStringMatcher cache to 256 now.-
__label__features + add implicit (String) type for typed string- values w/o a specified type--
__label__features Revised- PersistenceExceptionTranslationInterceptor to lazily retrieve- PersistenceExceptionTranslator beans on demand--Issue: SPR-10894-
__label__corrective JndiObjectFactoryBean explicitly only chooses- public interfaces as default proxy interfaces (SPR-5869)--
__label__corrective "SPR-8883 - RestTemplate.headForHeaders throws- ""IllegalArgumentException: No InputStream specified"" on server resource which- status code are 4xx--"
__label__perfective included qualifier value in debug log for each- transaction (SPR-6811)--
__label__perfective Polish (minor)--
__label__features "Allow setting WSDL document as a Resource--Prior to this change  LocalJaxWsServiceFactory allowed specifying a WSDL-document URL. Now users may also specify a WSDL document represented as-a Spring Resource object for convenience.--Issue: SPR-9909-"
__label__features Provide alternative message code resolver styles--Introduce new 'style' property to DefaultMessageCodesResolver allowing-for alternative message styles. Current styles are PREFIX_ERROR_CODE-and POSTFIX_ERROR_CODE. The default style retains existing behavior.--Issue: SPR-9707-
__label__corrective "Guard against null in -visitInnerClass--Issue: SPR-8358 SPR-8186-"
__label__perfective "Prepared for JDK 1.9--Aiming for the JdkVersion class to support one generation ahead now  in order for the test suite to properly detect 1.7/1.8+ JVMs even when running against a JDK 1.9 preview at some point.-"
__label__perfective Polish MockHttpServletRequestBuilder--
__label__perfective added test with custom repository annotation--
__label__features more work on enabling non-namespace extensions of- xml parsing--
__label__perfective "SPR-9056 Make DelegatingWebMvcConfiguration- config callbacks not final--It should be possible to progress from extending-WebMvcConfigurerAdapter (w/ @EnableWebMvc) to extending-WebMvcConfigurationSupport directly  to extending-DelegatingWebMvcConfigurationSupport. This change-makes that possible.-"
__label__corrective SPR-6466 - ContentNegotiatingViewResolver can not- handle View implementations returning null as content type--
__label__features Add context hierarchy tests to Spring MVC Test--Issue: SPR-5613-
__label__perfective SPR-5973: Extract UriComponentTemplate out of- UriTemplate--
__label__corrective "Fix conversion of Message<?> payload for replies--If a custom MessageConverter is set  it is not used for replies defined-via the Message abstraction. This commit harmonizes the behaviour of the-`MessagingMessageConverter` so that the conversion of the payload can-be converted for both incoming and outgoing messages.--Issue: SPR-12912-"
__label__corrective fixed scheduling tests--
__label__corrective "Consistent support for JTA 1.1- TransactionSynchronizationRegistry--JtaTransactionManager's configuration options for a TransactionSynchronizationRegistry are now in sync with the options for UserTransaction/TransactionManager. Specifically  there are setTransactionSynchronizationRegistry/getTransactionSynchronizationRegistry methods for programmatic configuration now.  Motivated by Spring's adapting to a Hibernate JtaPlatform  specifically the Hibernate 4.3 changes in that area.--Issue: SPR-10839-"
__label__perfective "Provide controller level Cache-Control support--Prior to this commit  Cache-Control HTTP headers could be set using-a WebContentInterceptor and configured cache mappings.--This commit adds support for cache-related HTTP headers at the controller-method level  by returning a ResponseEntity instance:--ResponseEntity.status(HttpStatus.OK)-    .cacheControl(CacheControl.maxAge(1  TimeUnit.HOURS).cachePublic())-    .eTag(""deadb33f8badf00d"")-    .body(entity);--Also  this change now automatically checks the ""ETag"" and-""Last-Modified"" headers in ResponseEntity  in order to respond HTTP-""304 - Not Modified"" if necessary.--Issue: SPR-8550-"
__label__perfective "Consistent use of varargs  consistent template- method order--"
__label__perfective Polishing (including removal of javadoc imports- that show as package cycles in IntelliJ)--
__label__corrective AnnotatedElementUtils wraps unexpected exceptions- with descriptive IllegalStateException--Issue: SPR-10441-
__label__corrective "Fix race when flushing messages--The use of an AtomicBoolean and no lock meant that it was possible-for a message to be queued and then never be flushed and sent to the-broker:--1. On t1  a message is received and isConnected is false. The message-   will be queued.-2. On t2  CONNECTED is received from the broker. isConnected is set-   to true  the queue is drained and the queued messages are forwarded-3. On t1  the message is added to the queue--To fix this  checking that isConnected is false (step 1 above) and the-queueing of a message (step 3 above) need to be performed as a unit-so that the flushing of the queued messages can't be interleaved. This-is achieved by synchronizing on a monitor and performing steps 1-and 3 and synchronizing on the same monitor while performing step 2.--The monitor is held while the messages are actually being forwarded-to the broker. An alternative would be to drain the queue into-a local variable  release the monitor  and then forward the messages.-The main advantage of this alternative is that the monitor is held for-less time. It also reduces the theoretical risk of deadlock by not-holding the monitor while making an alien call. The downside of the-alternative is that it may lead to messages being forwarded out of-order. For this reason the alternative approach was rejected.-"
__label__corrective HandlerExecutionChain prevents re-adding the- interceptors array to the list (and declares varargs now)--Issue: SPR-12566-
__label__perfective JavaDoc on- AnnotationConfigApplicationContext-scan(String...)--
__label__corrective SPR-5636 - @RequestMapping matching should be- insensitive to trailing slashes--
__label__corrective Fix minor issue in MockHttpServletRequest--Previously MockHttpServletRequest-sendRedirect did not set the HTTP status-or the Location header. This does not conform to the HttpServletRequest-interface.--MockHttpServletRequest will now:--  - Set the HTTP status to 302 on sendRedirect-  - Set the Location header on sendRedirect-  - Ensure the Location header and getRedirectedUrl are kept in synch--Issue: SPR-9594-
__label__corrective DataSourceUtils lets timeout exceptions through- even for setReadOnly calls (revised; SPR-7226)--
__label__perfective removed unused method; polishing--
__label__perfective "Clean up spring-expression tests warnings--Clean up compiler warnings in the tests of spring-expression. This-commit adds type parameters to some of the types (mostly `List` and-`Map`). Some of them can't be cleaned up  some tests are even-specifically for raw types.-"
__label__perfective ServletRequestAttributes skips well-known- immutable values when updating accessed session attributes--Issue: SPR-11738-
__label__corrective "Fix package cycles in spring-test--Code introduced in conjunction with SPR-5243 introduced package cycles-between the ~.test.context and ~.test.context.web packages. This was-caused by the fact that ContextLoaderUtils worked directly with the-@WebAppConfiguration and WebMergedContextConfiguration types.--To address this  the following methods have been introduced in-ContextLoaderUtils. These methods use reflection to circumvent hard-dependencies on the @WebAppConfiguration and-WebMergedContextConfiguration types.-- - loadWebAppConfigurationClass()- - buildWebMergedContextConfiguration()--Issue: SPR-9924-"
__label__perfective Changed use of AssertThrows to @Test(expected =- ...)--
__label__corrective fixed bug related to array autogrow--
__label__corrective fixed detection of element type in case of nested- collections (SPR-7569)--
__label__corrective bean properties of type enum array/collection can- be populated with comma-separated String (SPR-6547)--
__label__corrective "fixed ""hibernateManagedSession"" mode to actually- work against Hibernate 4.0 (SPR-8776)--"
__label__perfective revised WebApplicationContext lookup--
__label__perfective renamed 'isJava6VisibilityBridgeMethodPair' to- 'isVisibilityBridgeMethodPair' (SPR-8660)--
__label__corrective SPR-7107 - RestTemplate/UriTemplate/UriUtils- improperly encoding UTF-8--
__label__corrective Workaround Javadoc bug with JDK 8 (b112+)--Remove Javadoc linkplain to ExceptionHandler-value() from-AnnotationMethodHandlerExceptionResolver to work around JDK-Javadoc bug 9007707.-
__label__perfective Polishing--
__label__corrective "Resolve nested placeholders via PropertyResolver--Prior to this change  PropertySourcesPropertyResolver (and therefore-all AbstractEnvironment) implementations failed to resolve nested-placeholders as in the following example:--    p1=v1-    p2=v2-    p3=${v1}:{$v2}--Calls to PropertySource-getProperty for keys 'p1' and 'v1' would-successfully return their respective values  but for 'p3' the return-value would be the unresolved placeholders. This behavior is-inconsistent with that of PropertyPlaceholderConfigurer.--PropertySourcesPropertyResolver -getProperty variants now resolve any-nested placeholders recursively  throwing IllegalArgumentException for-any unresolvable placeholders (as is the default behavior for-PropertyPlaceholderConfigurer). See SPR-9569 for an enhancement that-will intoduce an 'ignoreUnresolvablePlaceholders' switch to make this-behavior configurable.--This commit also improves error output in-PropertyPlaceholderHelper-parseStringValue by including the original-string in which an unresolvable placeholder was found.--Issue: SPR-9473  SPR-9569-"
__label__features SPR-5251: URI Templates for @InitBinder--
__label__perfective tests for custom conversion service / validator--
__label__perfective polishing--
__label__features [SPR-8387] Introduced- supports(MergedContextConfiguration) method in the SmartContextLoader SPI;- updated existing loaders accordingly; and fleshed out implementation of and- tests for the new DelegatingSmartContextLoader.--
__label__corrective "Fix nested @Component annotation instantiation- bug--3.1 M2 introduced a regression that causes false positives during-@Configuration class candidate checks. Now performing a call to-AnnotationMetadata-isInterface in addition to checks for @Component and-@Bean annotations when determining whether a candidate is a 'lite'-configuration class. Annotations are in the end interfaces  so both-are filtered out at once.--Issue: SPR-8761-"
__label__corrective Improve StringUtils.cleanPath--Issue: SPR-11793-
__label__features "SpringJUnit4ClassRunnerAppCtxTests now verifies- seamless support for using @Inject in addition to @Autowired  etc.--"
__label__perfective Improve documentation of SpringFactoriesLoader--
__label__corrective Servlet/PortletRequestDataBinder perform- unwrapping for MultipartRequest as well (SPR-7795)--
__label__perfective SPR-5624 - A default HandlerExceptionResolver- that resolves standard Spring exceptions--
__label__corrective Fix Jackson @JSONView when using XML- serialization--Issue: SPR-12149-
__label__features Add putIfAbsent on Cache abstraction--This commit adds a putIfAbsent method to the Cache interface. This-method offers an atomic put if the key is not already associated in-the cache.--Issue: SPR-11400-
__label__features Add Jackson2ObjectMapperBeanFactory--Issue: SPR-9739-
__label__perfective revised version checks and exception signatures--
__label__features added DataSourceFactory strategy; promoted- EmbeddedDatabaseConfigurer strategy to public API; added ability to add any- number of SQL scripts for db population--
__label__corrective Hibernate synchronization properly unbinds- Session even in case of afterCompletion exception (SPR-8757)--
__label__corrective fixed JSR-303 Validator delegation code- (SPR-6557)--
__label__corrective IdToEntityConverter defensively handles access to- getDeclaredMethods--Issue: SPR-11758-
__label__corrective SQLStateSQLExceptionTranslator checks exception- class name for timeout indication before resorting to- UncategorizedSQLException--Issue: SPR-11959-
__label__perfective Improve exception message--Issue: SPR-12898-
__label__nonfunctional MAHOUT-1045: committing patch with changes to unit tests. CDbw numbers still need user testing but ClusterEvaluater results are improved. All tests run
__label__nonfunctional Add notes for coptic bug fix and scalar performance improvement
__label__corrective cloudStack 3.0 new UI - NaaS - fix a bug that dedicated parameter didnt' get to pass into API call.
__label__corrective "add logic to handle all 2xx response code  bug fix for string response "
__label__corrective Fixed adding route for additional public nic on fail over
__label__unknown [SMALLFIX] Fix the duplicated properties as alias property keys are also added to Default Keys
__label__nonfunctional Improved performance on management of collections
__label__features Add AppSales to featured list
__label__nonfunctional Improve performance of NewViolationsDecorator
__label__corrective suffice to pick up remoting as a transitive dependency through core. This fixes the problem reported at http://www.nabble.com/Build-1.93---NoClassDefFoundError-on-Maven-2-Build-tf3483998.html
__label__nonfunctional Improve logging readability
__label__corrective [Automation] - Fix test failure for test_02_revert_vm_snapshots in smoke/test_vm_snapshots.py
__label__nonfunctional Some modest improvements to use of JDBC -- better use of prepared statement and reuse of connections in some situations.
__label__corrective fix issue 1992 - ensure that our variable names don't match the names of the generated enums or we will get a compiler error.  Also fix the escaping of reserved words to use an underscore as the comment implies instead of the word Swagger.
__label__features no need now to get version from parent and best not to for feature branches
__label__corrective "new UI - template page  ISO page - fix a bug that middle menu item doesn't get updated after right panel is updated."
__label__corrective "bug 7612: fixed a bug where if start when through all retries  we throw an exception"
__label__features Creating feature branch for Cost based optimizer work
__label__nonfunctional Improved performance by avoiding unnecessary NumberFormatException
__label__corrective Catch all exceptions when change engine and row_format - can fail when table is full. Just skip as its not a critical fix
__label__corrective "NPE in the payload was causing the ssvm agent to not  fix it and also make sure that template/volume sync are robust that exceptions do not cause ssvm agent disconnect issues."
__label__corrective bug 9597: Fixed the recreatable problem.  Also added the 2.2.1 upgrade step
__label__unknown Fix failing tests - remove old duplicate saved_caches_directory entry leaving zznate's fix for relative location under tmp directory.
__label__nonfunctional Improved mmap management when the buffer pool is full. Now performance with millions of writes and random searches are really good. Further work on this in the next days.
__label__nonfunctional CORE-2985 MSSQL Snapshot performance improvements
__label__nonfunctional Further improve tag testing.
__label__features HBASE-1183 New MR splitting algorithm and other new features need a way to split a key range in N chunks
__label__corrective bug 6745: Fix problems in Async create commands
__label__nonfunctional SONAR-1760: Improve performance of NoSonarFilterLoader
__label__nonfunctional improved MATCHES operator performances storing the compiled pattern in a
__label__nonfunctional HADOOP-2519 Performance improvements: Customized RPC serialization
__label__corrective instance page - fix a bug that instance groups didn't show when login as a user.
__label__nonfunctional Issue #5812 read cache #openFile performance was improved by pre-check that file is already opened.
__label__corrective "host page - fix a bug ""clearAddButtonsOnTop is not defined"". This function is retired."
__label__corrective [ALLUXIO-2743] Fix failing unit tests
__label__corrective CLOUDSTACK-7199: Fixed test_multiple_ips_per_nic.py test failures
__label__nonfunctional #691 - Performance Improvements
__label__features Support some missing JAPIC features
__label__corrective "CLOUDSTACK-5557: UI > Network > Guest Network > IP Address > fix a bug that SourceNAT IP  VPC tier IP wrongly showed Configuration tab(firewall/portforwarding/loadbalancing)."
__label__corrective related UI change after API Bug (#7498) is fixed.
__label__corrective CLOUDSTACK-7754: Templates source_template_id is null when it is created from Snapshot with its corresponding volume removed. Fix it by searching for volumes including removed. Also bring the logic of setting source template id to create() method than execute which was wrongly put in.
__label__corrective bug 11202: cloudStack - Service Offering page - fix a bug that Network Rate didn't get refreshed when another service offering is selected.
__label__unknown Remove duplicated 1.613 section from changelog
__label__corrective "cloudStack 3.0 new UI - system VM page - migrate system vm - fix a JS error ""args.data.id is undefined"""
__label__nonfunctional Tiny performance improvement.
__label__unknown Remove duplicate scripts and move the remaining items to the systemvm project
__label__unknown Unify and encapsulate deployment flow methods and params
__label__unknown Remove duplicate code block
__label__nonfunctional Improved performance by clearing the map instead of recreating it.
__label__nonfunctional "improved serialize performance  asm direct mode"
__label__corrective CLOUDSTACK-8765: fix vm migration failure due to different dev name on KVM
__label__nonfunctional performance improvement based on the input from http://www.nabble.com/Maven-job-5-times-slower-than-a-free-style-job--td14651245.html
__label__features updated to new grouping features
__label__corrective [JENKINS-22811] Fixed compilation error
__label__features reordered the features so its easier to read
__label__features correct feature pack licenses.html title
__label__corrective bug fix in LRU: wrong in determining whether the available bytes can be satisfied without eviction.
__label__features Added support for an update on load feature for plugins. Thanks Raphfrk!
__label__corrective "bug 10094: The problem was we added code that won't add any more ha work items if it already has one.  However  that is wrong.  HA Manager stores the existing snapshot of the VM state machine.  Before working on HA for a VM  it checks to see if that snapshot has been changed.  So by not scheduling HA work  we've effectively made HA not work under multi-failure situations.  I've fixed by removing that code and instead at the time of performing HA  do a quick check to see if there are pwork underway for the same VM and work scheduled in the future for that VM.  If there are work scheduled in the future  then we simply cancel the current work.  If there are already work underway  then we retry again in 1 minute."
__label__nonfunctional Improve readability of ComparisonFailure
__label__nonfunctional Worked on CREATE LINK command to improve performance reducing memory used.
__label__corrective Fixed deployVirtualMachine API does not throw an error when cpunumber is specified for static compute offering
__label__nonfunctional Improve performance and better decouple visualization from graph structure by updating labels text in world building phase only
__label__nonfunctional Minor performance improvements on StringUtils.join.
__label__features "The Maven ""feature"" goal has been renamed to ""cucumber"". The Maven property configuration.args (<configuration><args>...) has been removed. Use configuration.cucumberArgs instead."
__label__nonfunctional "Performance improvement for timesSquared() - in the sparse case  dot products are often zero  and there's no need to add."
__label__corrective bug 10416: fixed the bug in agentLoadBalancerPlanner
__label__corrective AccessDeniedException fixed
__label__nonfunctional "HBASE-4820. Distributed log splitting coding enhancement to make it easier to understand  no semantics change. Contributed by Jimmy Xiang."
__label__nonfunctional Introduce a surprising performance improvement in DefaultRoboModule
__label__nonfunctional Improve the maintainability level of the backup-profile IT test by removing hardcoded number of expected rules
__label__corrective new UI - fix a bug that host and primary storage appear more than once when clicking between different left menu.
__label__features stability monitors are inheritable - thus don't use Listener.Iheritance feature + always remove listener when stability monitor is registered
__label__corrective "api: Fix failing unit test  regression due to recent merge"
__label__corrective bug 7106: fixing the account updating bug
__label__corrective new UI - fix a bug that Detach ISO option didn't show when a VM has ISO attached.
__label__nonfunctional "Merge: Performance improvements: DiskLruCache  HttpResponseCache."
__label__features Made it possible to select a peptide by clicking in the sequence coverage panel. Moved some spectrum options from the file menu to the annotation menu. Added an export spectrum as mgf option to the annotation menu. Fixed a bug in the maximize frame if closing feature. Fixed a bug in the PTM tab related to the hiding of the score columns.
__label__nonfunctional attempting to improve performance
__label__nonfunctional HIVE-9106 : improve the performance of null scan optimizer when several table scans share a physical path (Pengcheng Xiong via Ashutosh Chauhan)
__label__nonfunctional HBASE-4054 Usability improvement to HTablePool
__label__corrective CLOUDSTACK-6893: fix enum ValueOf issue which causes systemvm fail to start
__label__nonfunctional HBASE-3928 Some potential performance improvements to Bytes/KeyValue
__label__nonfunctional HBASE-9488 Improve performance for small scan
__label__features Remove some features from JwtTokenStore
__label__features "Capture high-level memory allocation

Thread allocated bytes on each trace  and heap histogram for global view.

Better JVM feature detection  and page to display this."
__label__nonfunctional "HADOOP-2495 inor performance improvements: Slim-down BatchOperation  etc."
__label__corrective "CLOUDSTACK-7610 CLOUDSTACK-7611 CLOUDSTACK-7612: Fixed following bugs in AlertsSyslogAppender 1. Added sync alert. 2. Changed unrecognised alerts are send as unknown instead of null. 3. Added unit tests to cover some more scenarios."
__label__unknown small refactor to avoid duplicate code
__label__unknown Fail the build on duplicate resources or classes on the classpath
__label__features Config Import and Jetty stuff added to New Feature
__label__corrective new UI - VM Wizard - Root Disk Offering - fix a bug that Custom Data Size field is not validated when selected template type is ISO.
__label__nonfunctional HADOOP-11594. Improve the readability of site index of documentation. Contributed by Masatake Iwasaki.
__label__corrective "bug 9272: fixed the race condition bug when we tried to remove vm from SG after it was expunged (expunge interval was really small  60 sec)."
__label__corrective #5649 Fix FileAlreadyExistsException when downloading file using jersey2 (#5654)
__label__corrective "new UI - cluster page - fix a bug that zone name and pod name didn't show in Add Host dialog  Add Primary Storage dialog."
__label__features "HIVE-17540: remove feature: describe pretty (Zoltan Haindrich  reviewed by Ashutosh Chauhan)"
__label__features Add missing audit log feature
__label__corrective rely on a newer htmlunit with bug fixes
__label__nonfunctional Performance enhancement for JSONWriter.
__label__corrective [kotlin] Fix syntax errors on localVariableHeader in api.mustache (#6660)
__label__nonfunctional JBRULES-1915: Improve process persistence usability
__label__nonfunctional Improved performance by handling begin and end of offsets in cluster data.
__label__nonfunctional improved Date property parse performance.
__label__corrective "Cleaner output  better skyline packing  fixed minor bugs."
__label__corrective Use defaults for client options and fix some bugs in BlockInStreams.
__label__nonfunctional Might improve static files performance a tiny bit
__label__features Improve autosave and backup feature (#2194)
__label__corrective "bug 7553: fix a server-side bug - listServiceOffering API didn't take in ""issystem"" parameter."
__label__features BZ-1171859 - History data cleanup feature for process / human task
__label__nonfunctional BZ-982643 - Executing basic processes takes much longer comparing to jbpm5 - improved human task performance
__label__corrective new UI - template page - fix a bug: match parameters of doEditTemplates2() function.
__label__nonfunctional JBRULES-1915: Improve process persistence usability
__label__features "Added tags and lines attributes to @Feature  making it possible to run a single scenario (or just some)"
__label__corrective bug 7448: zone tree - network - Add IP range to public network - fix a bug that VLAN ID field disappear after creating a new IP range to public network.
__label__corrective "a bug fix in TachyonURI  simplify it  add two sample unit tests"
__label__features "Improve the look of the trace id

Trace id will be used in the trace export filename (upcoming feature)
and it looks better as a pure hex number instead of the current
'<decimal number>-<hex number>'."
__label__features Add Infinispan StoreFeatures cluster mode comment
__label__corrective S2S VPN: CS-15998: Fix wrong vpc id in Site2SiteVpnGatewayResponse
__label__nonfunctional Improved performance to retrieve fields from documents
__label__features try to make it writable by using a Mustang feature.
__label__nonfunctional HIVE-13027: Configuration changes to improve logging performance (Prasanth Jayachandran reviewed by Sergey Shelukhin)
__label__corrective "ApiServer: Fix apidiscovery fail case  fix comment"
__label__nonfunctional Improve performance of URLOutputStream. Closes #654.
__label__nonfunctional "[ISPN-311] (CacheLoader.loadKeys()  and performance improvements when rehashing from a cache store)"
__label__corrective [SMALLFIX] Fix possible wrong assumption to derive logs dir
__label__features "Add default feature path  default glue and default formatter once"
__label__corrective bug fix. Or should I say working around a bug in Maven?
__label__corrective [HUDSON-3077] Fixed a random failure.
__label__corrective This fixes a bug with the current Setup UI on Linux:
__label__corrective bug 9101: cloudStack UI - Edit Instance - fix a bug that HAEnabled dropdown was empty.
__label__features WFLY-7409 BanTransitiveDependencies for Full Feature Pack module on IBM jdk
__label__features Calculator Feature is now passing!
__label__corrective CLOUDSTACK-9538: FIX failure in Deleting Snapshot From Primary Storage RBD Storage if vm has been removed
__label__features Add feature to emit Graphite metrics based on configuration
__label__corrective "use Guava to do parameter check  and fix testcase failure"
__label__nonfunctional SONAR-6068 Improve performance of FileSystem query operation
__label__corrective "CloudStack UI - Volume page - fix a JavaScript error ""Unable to get value of the property 'iscustomized': object is null or undefined"""
__label__nonfunctional "CLOUDSTACK-9298: Improve ListTemplatesCmd  ListVolumesCmd and ListVMsCmd performance"
__label__features Reorganizing the recent activity feature
__label__features "Internal changes to DHNS to improve filtering features. Return of the view concept  and refactoring in Graph control. Add the GraphModel and rationalize directed/undirected/mixed graphs access. Small changes in GraphAPI  mainly in access with filtering."
__label__corrective "bug 6836: fixing the api responses for disk offerings. We were using the wrong objext name  and were only returning success responses. Now  we are constructing the apt object and returning the entire object back."
__label__corrective Correct comments of BlockInStream and EmptyBlockInStream: fix typo and wrong grammar
__label__corrective "TableLayout  fixed spacing bug. Added row() to Cell for convenience."
__label__nonfunctional Index: improved performance for most common use cases + reduced code
__label__corrective using localizer 1.4 to fix the bug in handling */ in the string
__label__nonfunctional Improve ProcessMonitor readability
__label__nonfunctional Performance improvements: scan all classes just once
__label__nonfunctional AVRO-765. Java: Improvement to BinaryDecoder readLong performance
__label__nonfunctional Improve IT in order to better support performance issues
__label__corrective bug 6141: fixed the error of not providing the right error for an incorrect diskoffering
__label__corrective 1. rename createInStream/OutStream to be getInStream/OutStream. 2. Fix a bug in copyToLocal in TFsShell.
__label__features "Add ""retreive more info"" feature -- resolves redirectors and gets first product result inside the app"
__label__corrective "new UI - instance page - router tab - related UI change after bug 6787(""RebootRouter API should return an embedded object on success"") is fixed."
__label__corrective "bug 12381: fix a bug that opening another window to view console causes a JavaScript error ""invalid argument"""
__label__corrective [FIXED HUDSON-5459] fix singular form when there is only 1 test or 1 failed test
__label__corrective volume upload: fixed the error message incase of wrong image format
__label__nonfunctional Improved the performance of FixedSize Encoder
__label__features "Add ""Schedule"" to featured list"
__label__nonfunctional "Make public to enable reuse; add convenience constructor for no cropping  or cropping without a Rect object. Also optimize a few things."
__label__nonfunctional Modified logging to use debug logging and only if enabled in order to improve theme configuration admin performance (#929)
__label__nonfunctional HADOOP-10691. Improve the readability of 'hadoop fs -help'. Contributed by Lei Xu.
__label__nonfunctional [DROOLS-1560] simplify and improve performances of ChainedProperties â€¦ (#1257)
__label__features "- [ 1297576 ] New feature: Printing of entry preview. 

Moved to popup menu instead of tool menu bar."
__label__corrective [ALLUXIO-1322] Fixed build failures
__label__features Added send barcode feature
__label__features initial check in for forward to feature.
__label__corrective "address comments  fix errors about punctuation"
__label__corrective [FIXED HUDSON-2852] Fixed the encoding problem that I introduced in rev.13966
__label__unknown Remove duplicate/obsolete tests
__label__unknown Remove duplicate code and dependency on metadata
__label__nonfunctional Code readability improvement
__label__corrective CLOUDSTACK-8642: SSO Method not allowed bug fix. Due to CLOUDSTACK-8505 and commit 1c81b241e7914b24b06c3b7b3ee98bc0d3b4f68b
__label__unknown CommandLineRunner can now handle URIs again; refactored some duplicated code
__label__nonfunctional Issue #614: improve RAF.hash performance
__label__features Added a failing feature for #61.
__label__nonfunctional "Improve logging  Improve performance"
__label__nonfunctional [DROOLS-1560] simplify and improve performances of ChainedProperties â€¦ (#844)
__label__nonfunctional Minor: improved performance thanks to the reported by Danny
__label__corrective CLOUDSTACK-3467: Fixing the unit tests for implicit dedication planner. When fix for bug 2662
__label__nonfunctional Issue #1404  WAL performance improvements.
__label__corrective cloudStack 3.0 new UI - instance wizard - fix a bug that isolated network didn't show in step 5.
__label__corrective "LibvirtComputingResource: Fix coverity scan  recent bugfixes revealed a potential unhandled null in getResizeScriptType"
__label__unknown "Refactor test code  remove duplicates at FailoverOperatorTest"
__label__corrective bug 12519: system page - guest network - fix a bug that project-specific networks didn't show.
__label__corrective I misunderstood the use of ThreadPoolExecutor. Fixed a problem so that it does the correct parallel loading
__label__nonfunctional "optimized OPerformanceStatisticManager#getSessionPerformanceStatistic  about +3k ops on single-thread index/cluster insert"
__label__nonfunctional BroadleafCommerce/QA#2760 : Cherry Pick Commit 691da0a487d8934455f3c3d0ab20ddd0fe8efd53 - (moving 2760 performance enhancements from 5.0 to 5.1)
__label__nonfunctional #1706 Clarify how pagerank works in the code and improve performance. Also adapt code to correctly take into account parallel edges so each neighbor is not processed several times (+ ignore self loops too).
__label__features "Update query-filter.asciidoc

Would be nice to add a warning on the tradeoff of wrapping queries as filters (ie. the queries will lose highlighting  scoring  etc.. features that do not apply to filters)"
__label__corrective bug 13515: system page - network page - fix a bug that zoneId didn't get passed to listPhysicalNetworks API.
__label__corrective P1! Bug fix to avoid handling form submission incorrectly.
__label__corrective CLOUDSTACK-7811: Fixed the script 'test_persistent_networks.py' - Test Cases failing on Simulator due to hardware resources requirement for test execution
__label__nonfunctional Improved PerformanceMonitor plugin system
__label__corrective CLOUDSTACK-6663: Fixed Hyper-V agent fails to start on some setups. During startup agent tries
__label__corrective "bug 12152: take snapshot action - fix a bug that showed message ""snapshot undefined is ready"""
__label__nonfunctional "- Usability improvement on the preferences pages (code-formatter  comment block and code-style showing examples)"
__label__nonfunctional HDFS-9260. Improve the performance and GC friendliness of NameNode startup and full block reports (Staffan Friberg via cmccabe)
__label__corrective "CLOUDSTACK-3123: UI > Infrastructure menu > Secondary Storage > Secondary Storage detailView > delete action > fix a JS error ""args.context.secondarystorages is undefined"" when delete action is clicked."
__label__corrective bug 7573: Resource page - Add Pod shortcut - fix a bug that duplicate newly pod node appears when zone node is close after add pod action succeeds.
__label__corrective [ALLUXIO-2739] fix an error in runMiniBentchmark
__label__nonfunctional Merge pull request #689 from pveentjer/improvement/3.maintenance/connectionrefusedexception-improvement2
__label__nonfunctional HADOOP-14216. Addendum to Improve Configuration XML Parsing Performance (jeagles)
__label__corrective bump jetty; fix a remoteblockinstream bug; improve tests
__label__nonfunctional Issue #5812 read cache #openFile performance was improved by pre-check that file is already opened.
__label__unknown Remove duplicate Utils getters
__label__corrective CLOUDSTACK-4950: fix the problem to support sessions to multiple vCenter instance
__label__features prelaminary work to ClientUserCodeDeployment feature
__label__corrective CLOUDSTACK-5959: Fixed cascading failures in portable IP test cases
__label__nonfunctional [ISPN-97] - Improve configuration processing and maintenance
__label__corrective "fixed android project classpaths  fixed Timer locking bug"
__label__corrective Detail view: Fix error on refresh from async action
__label__nonfunctional CORE-2528 Oracle: improve unique constraint snapshot query performance
__label__unknown HBASE-14466 Remove duplicated code from MOB snapshot tests
__label__corrective [FIXED HUDSON-3942] Fixed in 1.325. We probably need some kind of mechanical checks to make sure all the fields are variable expanded. Otherwise this is too error prone.
__label__nonfunctional ISPN-1015 - Optimize HotRod client to match Memcached performance
__label__corrective bug 10759: fixed the bug in SqlGenerator - attributes weren't set right if GENERIC.DAO.REMOVED attribute was present in the list (happened for disk and service offerings)
__label__corrective "CLOUDSTACK-8040: UI: register template dialog  register ISO dialog - fix a bug that hidden fields fail to be generated before cloudStack.preFilter.createTemplate() is called. Thus  cloudStack.preFilter.createTemplate() is unable to change hidden fields's css display property from none to inline-block for admin users."
__label__features Experimental modification to Save as action. Incorporation of exact duplicate removal into duplicate removal. Experimental addition of autocompletion feature.
__label__unknown Refactor some duplicated math methods
__label__corrective [SMALLFIX] Small fix in filesystem master because ExceptionMessage.getMessage is expensive
__label__corrective "AccountManagerImpl: Fix method to check and return systemuser  spring injection failsafe"
__label__unknown Adds validation of code smells in case expressions. Closes #259
__label__features Translation lines. Improved marking feature. Added inverted grouping. Added button for autosetting of PDF field.
__label__features Need to specify affected database objects for dbdoc and other features
__label__features Made changes in the API. Removed incomplete features that will not be used. Also changed protected variables to public.
__label__unknown "Fix for ISSUE 1111 (and 1112  which is a duplicate).  Corrected link paths for 'New Job' and 'People' in sidebar."
__label__unknown "HBASE-1105  Remove duplicated code in HCM  add javadoc to RegionState  etc."
__label__nonfunctional MAPREDUCE-5268. Improve history server startup performance. Contributed by Karthik Kambatla
__label__corrective 1. add more unit tests to tachyon.client.TachyonClient 2. add unit tests for tachyon.client.RawTable 3. fix a semantics bug caused by thrift bug.
__label__features every feature is always a work in progress.
__label__corrective CLOUDSTACK-7865: fixed pep8 errors and errors in wrong references
__label__nonfunctional SQL: minor improved on performance on reading a number that already is a number
__label__nonfunctional Performance improvement in DiskLruCache.readJournalLine().
__label__corrective [SMALLFIX] Fix failing test BufferedBlockInStreamIntegrationTest
__label__features Last changes before 2.4 beta. Updated action enable/disable list and removed DB features from the toolbar.
__label__nonfunctional TRUNK 4374: Improve performance of getCountOfConcepts
__label__corrective cloudStack 3.0 new UI - NaaS - Public page - fix a bug that no data showed in details tab.
__label__nonfunctional [ISPN-97] - Improve configuration processing and maintenance
__label__corrective #ALLUXIO-2850 Fix checkstyle error.
__label__nonfunctional HBASE-6295  Possible performance improvement in client batch operations: presplit and send in background - addendum
__label__nonfunctional Big refactoring to improve performance at N levels:
__label__nonfunctional Re-arranged if/else to improve readability
__label__corrective CLOUDSTACK-5636: Fixed issue 'Failed to upgrade network offering' in test_vpc_network test suite
__label__features TFJ-762 add Application-only authentication feature.
__label__corrective CLOUDSTACK-7862: Fixed the script 'maint/test_high_availability.py' - Test Cases failing on Simulator as Testcases try to ssh to the VMs
__label__features Added news about windows installer features.
__label__features HIVE-6968: list bucketing feature does not update the location map for unpartitioned tables
__label__nonfunctional Fixed bug on replication and improved performance.
__label__nonfunctional Remove unnecessary NodeSizeTransformer in Partition. Improve readability of NodeColorTransformer.
__label__corrective CLOUDSTACK-10099: Fix migrateVirtualMachineWithVolume UI failure (#2277)
__label__corrective advanced search - fix a bug that clicking next page will lose advanced search parameters.
__label__nonfunctional AVRO-1348. Java: Improve UTF-8 to String conversion performance in Java 6.
__label__unknown No need to duplicate close method as it's already inherited from Closeable
__label__features added an experimental feature that avoids CPU starvation of larger jobs.
__label__nonfunctional [DROOLS-817] Improve performance over large hierarchies
__label__nonfunctional Improved performance on type checking on alter property
__label__corrective [TACHYON-1129] Fix a bug that returns wrong value to indicate if worker is local
__label__features added account features to cloudstack
__label__nonfunctional "Distributed architecture: tuned timeouts  improved performance by avoiding to push to the internal queue if all the synch responses are already arrived"
__label__nonfunctional Improve replication performance and memory usage.
__label__nonfunctional "Revert ""OPLA: improved performance with variable management (avoiding copy for most of the cases)"""
__label__features removing unused feature-data
__label__features BZ-1004311 - Multiple connections feature can be switched on be setting jbpm.enable.multi.con=false
__label__corrective cloudstack 3.0 UI - autoscale - for regular user - fix a bug that createAutoScaleVmProfile API fails because autoscaleuserid is undefined.
__label__corrective CLOUDSTACK-6510: Fix gson serialization exception in storage migration. Gson couldn't serialize
__label__corrective "Countless bug fixes  mostly do do with VR redundancy"
__label__nonfunctional Improve performance by recycling DataOutput2 instances
__label__corrective "bug 6662:  handle a null ip forwarding rule in the API response as 'the rule already exists' since other errors will result in thrown exceptions.  Also  fix up detection of network conflicts and duplicate rules by adding a list of used protocols to the port mappings"
__label__corrective CLOUDSTACK-7304: Fixed Exception not raised issue in portable IP test cases
__label__features Hiero upgraded to version 5! Supports FreeType and a number of new features.
__label__nonfunctional Added a new SQL parser. This parser supports both SQL style line comments and comment blocks. SQL statements can span multiple lines but must be delimited with a semicolon. This allows for improved readability of SQL scripts.
__label__corrective bug 10406: fixed concurrency problem happening during Agent Transfer Monitor task
__label__features Working history feature.  Tweak to paging.
__label__features Add tryTx feature to Graph.
__label__corrective [ALLUXIO-2576] Fix misleading error msg
__label__unknown WFLY-6069 remove duplicate jipijapa module in modules/system/layers/base/org/hibernate/4.3
__label__corrective "bug 9795: Copy Template Dialog  Copy ISO Dialog - fix a bug that entries in zone dropdown are duplicated when the dialog pops up the 2nd time."
__label__corrective Fix OSX cannot due to wrongly declaim ENCAPSULATION_MODE_UDP_TRANSPORT_RFC
__label__corrective bug 5876: Fix error reporting in agent setup so it will not cause a nested exception
__label__unknown [WFLY-5774] Remove methods that duplicate the default implementations.
__label__nonfunctional HIVE-7691 - Improve maintainability of testconfiguration.properties (Reviewed by Szehon via Brock)
__label__corrective "CLOUDSTACK-8075: UI > Instances menu > Add Instance > Select template/ISO > ""shared"" tab > select a shared template  click Next button => fix error ""unable to find matched template object""."
__label__nonfunctional JBPM-5186 - Added indexes to update scripts (to improve query performance on VariableInstanceLog and NodeInstanceLog) (#505)
__label__corrective [Java] Fix bug in generated code if parcelableModel and serializableModel are both true.
__label__corrective "CLOUDSTACK-9470: Fix for SshHelper - test_network_acl was failing on Vmware due to a bug in sshExecute  in which value returned was null and there was still stdout to consume. This fix addresses this problem  consuming stdout peoperly to return expected value in sshExecute"
__label__features Add Lwjgl3 maximized window features
__label__features "Add binary protocol backwards compatibility for suggest highlights

This change requires different request processing on the binary protocol
level since it has been we provide compatibilty across minor version.
Yet  the suggest feature is still experimental but we try best effort
to make upgrades as seamless as possible."
__label__corrective CLOUDSTACK-3105: UI > Instances menu > Instance detailView > View Hosts > fix a bug that wrong parameter name is passed to listHosts API.
__label__unknown No need to set up the consumer twice. Remove the duplicate code
__label__unknown Moved hideSoftKeyboard to ActivityUtils and added error handling in clickOnScreen and typeText
__label__features "New TableLayout for libgdx feature  round size and position."
__label__nonfunctional Improved testing; verifies that task/map/distributed objects can be found in the same partition
__label__nonfunctional "SONAR-6134  SONAR-6048 Improve performance of FS indexation"
__label__nonfunctional A couple quick performance improvements
__label__nonfunctional [ISPN-97] - Improve configuration processing and maintenance
__label__corrective CLOUDSTACK-4218: UI > Infrastructure > zone > UCS > UCS manager details tab - fix a bug that passed wrong id to listUcsManagers API.
__label__corrective Try fixing occasional testing failuers in Java client
__label__corrective [SMALLFIX] Fix more failing tests.
__label__nonfunctional "[ISPN-500] (Improve Lucene's performance by using SKIP_LOCKING  SKIP_REMOTE_LOOKUP and batching) - trunk"
__label__nonfunctional Improve performance of Cox PH using Efron's approximation for handling ties.
__label__corrective cloudStack - Cluster page - fix a bug that Manage Cluster action showed wrong message.
__label__corrective "Cluster page - fix a bug that showed wrong field (""vCenter Datacenter""  ""vCenter Datastore"") in Add Primary Storage dialog."
__label__nonfunctional "Auto-config performance & priority improvements  and make Pypy discoverable."
__label__corrective "[TACHYON-622] Add a class PlainSaslServer that implements the SaslServer interface -- fix some exception problem such as message and type"
__label__unknown "SONAR-7337 ""sqale_index"" and ""new_technical_debt"" code smell"
__label__nonfunctional "By passing TestClass to AllMembersSupplier  we can reuse the annotation parsing already supplied  and improve performance"
__label__features "Add ""TimeAct To-Do"" to featured implementations [ci skip]"
__label__nonfunctional [JENKINS-28446] - Introduce new API method in Queue to optimize the performance of UnlabeledLoadStatistics
__label__nonfunctional Partial search query performance was improved.
__label__features HBASE-1766 Add advanced features to HFile.main() to be able to analyze storefile problems
__label__unknown "SONAR-7337 ""sqale_index"" and ""new_technical_debt"" only use ""Code Smell"" issues"
__label__unknown bug CS-14389: removing duplicates
__label__features Add preview feature on description textarea.
__label__features SECOAUTH-328: consolidate AuthorizationRequestManager features
__label__nonfunctional Minor: improved performance thanks to the reported by Danny
__label__unknown HBASE-7911 Remove duplicated code from CreateTableHandler
__label__unknown Removing unused duplicate id fields.
__label__features JCLOUDS-200: Consolidate all feature-specific in the AWS provider
__label__corrective I think that fixes the compile errors
__label__corrective [ALLUXIO-2572] fix small bug in println
__label__corrective CLOUDSTACK-9728: Fixed traffic sentinel HTTP 414 error response
__label__nonfunctional add KeyColumnValueTest for HazelcastKeyColumnValueStore (+ performance improvements)
__label__unknown Remove duplicate systemUse clausule when fetching service offerings.
__label__nonfunctional ISPN-1276 Improve batching and transactional performance after profiling
__label__nonfunctional Improved performance of indexing matchers by lazily creating helper objects
__label__unknown "Fixed profiles for pom  changed log4j back to .17  removed duplicate function in tachyonFile"
__label__corrective "CLOUDSTACK-1343: cloudstack UI - baremetal - zone wizard - fix a JS error ""args.data.cluster is undefined"" that happened right after Configuring guest traffic."
__label__nonfunctional improved BigDecimal/BigInteger property performance.
__label__corrective Integrated a newer version that fixes groovy view reloading problem.
__label__features remove java 7 specific language features
__label__nonfunctional "improved performance on vertex/edge type check  issue #4105"
__label__features [JBAS-8363] resuscitate virtual host feature for WS components - includes non BC API changes
__label__unknown awsapi: Fix axiom-impl duplicate dependency
__label__nonfunctional improved servers performance
__label__corrective [FIXED HUDSON-5753] Integrated winstone 0.9.10-hudson-20 to fix the AJP parsing problem.
__label__nonfunctional Improved performance in server commands reusing the database from the pool
__label__nonfunctional [updated] minor performance enhancement for EarClippingTriangulator
__label__nonfunctional "this version of Winstone has a fix in the concurrent session access  plus a performance improvement in the file submission handling."
__label__nonfunctional "Improved yet performance with huge datasets. When the mmap pool is full  then the channel technique is used. The dramatic slowness of read/write when the mmap pool is exhausted has been fixed."
__label__nonfunctional Revert: performance improvements
__label__nonfunctional Minor: improved performance and memory by using the static Boolean.TRUE and Boolean.FALSE constants instead of parsing the boolean value and passing for auto-boxing
__label__corrective CLOUDSTACK-4223: UI > Infrastructure > zone > USC > blades tab - fix a bug that blades failed to be listed in listView.
__label__corrective "Updating to use parent POM 1.14 (with hardcoding of maven-hpi-plugin 1.64) and to explicitly use maven-hpi-plugin 1.64  to fix requiredCore missing problem with plugins."
__label__nonfunctional Improve generated HTML code to make it easier to write Selenium ITs
__label__features Add query validation feature
__label__nonfunctional removed recursive record search for improve performance.
__label__corrective CLOUDSTACK-5342: Fix for failure in adding network to VM
__label__nonfunctional CORE-2528 Oracle: improve unique constraint snapshot query performance
__label__corrective pick up stapler 1.51 to fix a bug in StaplerRequest.getRestOfPath()
__label__nonfunctional Distributed: series of fix to improve HA and performance
__label__corrective new UI - VM reset password - fix a bug that spinning wheel don't disappear after action succeeds when it's multiple selection in middle menu.
__label__nonfunctional improved toJSON performance
__label__nonfunctional #691 : Performance Enhancements
__label__features Mac compatibility. More lines in translation files. Added marking feature.
__label__features "New feature: XMP privacy filter can be used to prevent sensible fields to be exported.
Some refactoring to the PrefsTab interface."
__label__features HBASE-13071 Hbase Streaming Scan Feature
__label__nonfunctional HBASE-2180 Bad random read performance from synchronizing hfile.fddatainputstream -- putting this as improvement in CHANGES because thats what j-d wants though I think it a bug because our perf. was so bad
__label__features Remove alerting feature from embedded agent
__label__features Change homeAsUp() to require handler implementation of an interface to match the other optional features. Update change log to reflect this as well as expand on the implementation requirements.
__label__corrective bug 10135: Fix clustered agent manager's version bug
__label__corrective "bug 6943: Correct error message is returned for the parameter  ""name"" in the API as well as fixing JS to validate this as well."
__label__unknown refactoring in command arguments and command handlers with arguments and argument tab-completers to simplify the wiring between and remove duplicated code
__label__features [WFLY-1889] The schema containing WildFly 8 specific features should be bumped to version 2.0 leaving the 1.x versions available for EAP 6
__label__features "Add options for indices.get feature

As described here https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-get-index.html?q=get%20index#_filtering_index_information"
__label__unknown HBASE-1485  Wrong or indeterminate behavior when there are duplicate versions of a column (pranav via jgray)
__label__nonfunctional Merge pull request #9699 from hasancelik/enhancemnet/maintenance/nativeMemoryConfigXml
__label__corrective cloudstack UI - listView widget - basic search - fix a bug that happened on IE browser that clicking Enter key didn't do the searching.
__label__nonfunctional improved toBytes & writeJSONString performance
__label__corrective CLOUDSTACK-3803: Fix duplicate label causing validation error
__label__unknown Minor refactor to avoid duplicate function calls
__label__corrective [FIXED JENKINS-10490] fixed a build problem with JDK7
__label__nonfunctional improved test performances for sq #3 (use MetaDataHandler for MySQL)
__label__nonfunctional "Performance enhancement to comparison of LocalDate  LocalTime and LocalDateTime"
__label__corrective bug 10974: Fixed a bug in the search for listRouters API. The bug was introduced due to change in the VmInstancVO where the name field was changed to hostName. This went unnoticed in the DAO layer as we dont throw an exception but an assert error.
__label__features move elytron from servlet feature pack to core
__label__corrective "CS-16544: Create Snapshot (2nd time - reccuring) is failing on XenServer 6.1. The issue is that while backing up a snapshot when cloudstack tries to update the parent (of the backed up vhd)  vhd-util isn't present at the desired location and setParent function in vmopsSnapshot fails. This issue is observed only on Xenserver 6.1. The reason for this is  when to a Xenserver and executes the SetupCommand  it copies vhd-util tool to /opt/xensource/bin directory on the host. However  in vmopsSnapshot python file 'VHD_UTIL' is initialized to /usr/sbin/. The issue is not observed on 6.0.2 (and I guess previous versions) because vhd-util is present in /usr/sbin/ directory by default (after a clean install). Whereas  in Xenserver 6.1  vhd-util is present in '/usr/bin'. Fixed the issue by updating VHD_UTIL to point to /opt/xensource/bin/vhd-util in vmopsSnapshot file."
__label__nonfunctional improved MATCHES operator performances storing the compiled pattern in a
__label__unknown HBASE-6634 REST API ScannerModel's protobuf converter code duplicates the setBatch call
__label__nonfunctional improve sql parser performance
__label__features "I have implemented 2 features requested in Ticket #841.

    The user can now specify an arbitrary number of file-link columns in te ""Entry table columns"" preferences tab  to be added to the main table. The user can any file types specified in the list of External File Types. The extra columns work exactly like the original file-link column.

    For each file-link column whenever there are multiple files  the letter ""m"" is displayed at the bottom right corner of the icon.

 Committer: noravanq

 On branch master
 Changes to be committed:
   (use ""git reset HEAD <file>..."" to unstage)

	modified:   src/main/java/net/sf/jabref/GUIGlobals.java
	modified:   src/main/java/net/sf/jabref/JabRefPreferences.java
	modified:   src/main/java/net/sf/jabref/TableColumnsTab.java
	modified:   src/main/java/net/sf/jabref/gui/MainTableFormat.java
	modified:   src/main/java/net/sf/jabref/gui/MainTableSelectionListener.java
	modified:   src/main/java/net/sf/jabref/gui/PreventDraggingJTableHeader.java"
__label__nonfunctional CORE-2985 MSSQL Snapshot performance improvements
__label__corrective CS-15836: cloudstack 3.0 UI - autoscale - existing LB - configure AutoScale - fix a bug that root-admin was unable to see autoscale created by regular-user or domain-admin.
__label__nonfunctional HHH-7640 Improve single node Infinispan 2LC performance
__label__features Basic functionality in place for listHosts feature
__label__corrective Security Group page - fix a bug that newly created ingress rule failed to be deleted.
__label__corrective new UI - instances page - fix a bug that volume tab showed nothing.
__label__nonfunctional Improved MVRB-Tree search algorithm by reusing last search. This is really useful on indexing because the put() reuses the entry node found by the previous search.
__label__corrective [TACHYON-1592] Fix the compile error
__label__nonfunctional CLJ-668 improve performance of slurp via jio/copy
__label__corrective added Xalan to see if it fixes the problem for Jonathan Giles
__label__nonfunctional CORE-2371 Improve performance
__label__corrective CLOUDSTACK-4637: Fix failures in test_egress_fw_rules.py
__label__corrective CLOUDSTACK-7754: Templates source_template_id is null when it is created from Snapshot with its corresponding volume removed. Fix it by searching for volumes including removed. Also bring the logic of setting source template id to create() method than execute which was wrongly put in.
__label__nonfunctional "Performance improvement: if we keep querying for all columns  just get all the columns"
__label__nonfunctional improve performance of waiting for schema agreement
__label__nonfunctional improved smart match performance.
__label__corrective Fix a bug that mounting UFS should connect to UFS only when replay=true
__label__unknown HBASE-14901 Remove duplicate code to create/manage encryption keys
__label__unknown DRY-ing out some duplicate code
__label__nonfunctional "Improved the plugin ""mvn hpi:run"" performance by deferring the license"
__label__nonfunctional FLUME-682: Improve SeqfileEventSink performance
__label__corrective cloudStack UI -  Instance page (multiple-selection-middle-menu page) - fix a bug that multiple-selection menu behaved weird on slow machine (e.g. Chandan's machine).
__label__corrective leaving the record of attempted gzip encoding problem fix.
__label__corrective CLOUDSTACK-8940: Wrong value is inserted into nics table netmask field when creating a VM - Fixed
__label__features "Require Android API 19  so fully use Java 7 try-with-resources  as well as a few other Java 7 features. Reduce deprecation warning count in android"
__label__nonfunctional Improved performance by avoiding to browse document fields even when non necessary
__label__corrective Delete User action - fix a bug that loading image didn't disappear after action was finished.
__label__corrective "CLOUDSTACK-8075: UI > Instances menu > Add Instance > Select template/ISO > ""shared"" tab > select a shared template  click Next button => fix error ""unable to find matched template object""."
__label__features - [ 1570570 ] New Feature: Deselect all duplicates on import
__label__corrective "[Java] fix bug to only remove ""CustomInstantDeserializer"" for Play v2.5 (#6444)"
__label__nonfunctional ASCII aware performance improvement commented-out because of some failing unit tests for issue #3483
__label__corrective new UI - resources page - fix a bug that zonetree doesn't show in IE7
__label__features Changed the place of `feature` information to make
__label__corrective "ScrollPane  added scrollbars on top feature  support for scrollbar track being wider/taller than scrollbar knob  fixed problem where areaHeight was being reduced in size for the horiz scrollbar twice  added corner drawable."
__label__nonfunctional Implemented TransactionalGraph interface and improved performances
__label__unknown prevent duplicate entries for push infos
__label__nonfunctional "HIVE:7219 - Improve performance of serialization utils in ORC (Prasanth J reviewed by Gunther Hagleitner  Gopal V)"
__label__features JBPM-4254: Added endpoint address override feature.
__label__unknown Adds warnings for codesmells in selector
__label__nonfunctional TRUNK-4692 | Performance improvement in LocationService getLocationsHavingAllTags.
__label__corrective CLOUDSTACK-3005: fix template_spool_ref.local_patch error after upgrade from 2.2.14 to 3.X
__label__corrective [FIXED HUDSON-2804] I must have failed to handle non-ASCII characters correctly when I moved them one file to another. Fixed in 1.273.
__label__nonfunctional Minor: slightly improved performance of common methods
__label__corrective Working on a fix for pipe clogging problem.
__label__corrective bug 10759: fixed the bug in SqlGenerator - attributes weren't set right if GENERIC.DAO.REMOVED attribute was present in the list (happened for disk and service offerings)
__label__nonfunctional "Fix corner case I wasn't catching  increase memory of destroyed activities  improve performance"
__label__nonfunctional Minor performance improvent for `int`/`long` encoding in `NumberOutput`
__label__corrective [FIXED HUDSON-4053] Incorporated a new version of Winstone that fixes this problem.
__label__unknown Remove duplicated attribute on alert conditions
__label__nonfunctional Working to the issue 327. Not closed yet but improved performance without converting the field anymore if not necessary.
__label__nonfunctional Improved performance by avoiding unnecessary NumberFormatException
__label__corrective [ALLUXIO-1718] Fix a testing environment bug by adding a small delay
__label__features add DONE for cookies in the feature list
__label__features MAHOUT-521 Move FeatureVectorEncoders to vectorizer.encoders
__label__unknown Merge pull request #8609 from scottmarlow/WFLY-6069_duplicatedjipijapamodule
__label__corrective "The listSnapshots API has changed in 2.2 a bit  so rather than merge my fix for bug 6680 from 2.1.x  just applied it manually...the fix was to apply the domain search to listSnapshots so that domain admins can see snapshots in their domain and all sub domains  but nothing outside their domain hierarchy."
__label__nonfunctional AS7-5026 Cache the ExpressionFactory impl to improve EL performance
__label__unknown HBASE-7088 Duplicate code in RowCounter
__label__features "Bulk UDP: Removal.

This feature is rarely used. Removing it will help reduce the moving parts
of Elasticsearch and focus on the core.

Close #7595"
__label__nonfunctional Improved the startup performance.
__label__nonfunctional improved float/double parse performance.
__label__nonfunctional HBASE-7211 Improve hbase ref guide for the testing part. - 1st part (Jeffrey Zhong)
__label__features jedis add sharding feature
__label__unknown removed duplicate entry. I guess Kohsuke didn't see that I added jcl-over-slf4j already ;)
__label__unknown remove duplicate pagination code findbugs
__label__features Revised incremental push tags feature
__label__nonfunctional DATAMONGO-712 - Another round of performance improvements.
__label__nonfunctional Fixes #149 - Enhance performance of TranslationImpl select queries by adding additional indexes
__label__nonfunctional SONAR-3104 Improve the usability of the project 'History'
__label__features Switched from HTML to Markdown and added Tables to the Features section
__label__nonfunctional Improved ODocumentHookAbstract implementing filtering by name. This makes thing easier for developers
__label__unknown dead-7508: Remove duplicate network offerings from test_data.py
__label__features Add static setTransformer feature.
__label__nonfunctional Extendible hashing tests were added and performance was improved.
__label__nonfunctional "Revert ""HBASE-12740 Improve performance of TestHBaseFsck"""
__label__nonfunctional issue-332 : improve performance of ColumnSliceImpl instantiation and HColumnImpl getName()/getValue()
__label__nonfunctional ISPN-4105 Optimize Cluster Listener performance for Replicated Caches
__label__features BZ-1158818 - please add reminder feature in New Hire process in Maitai - small improvements
__label__corrective api: fix apidocs build bug
__label__corrective CLOUDSTACK-7143: fix a bug in the debianbase template that was referencing deleted scripts
__label__nonfunctional Dynamic Updates performance improvement
__label__features adds horizontal text alignment feature for textfields
__label__corrective new UI - host page - fix a bug that update OS preference after the 1st time was not working.
__label__nonfunctional "CLOUDSTACK-9843 : Performance improvement of deployVirtualMachine  createFirewallRule  createPortForwardingRule"
__label__nonfunctional try removing process from remote to improve performance
__label__features added Features which provides meta-data about the graph implementation.
__label__features "Patch 3122104 for feature request ""[2163626] Scan database - find unlinked files"".
 * Patch: http://sourceforge.net/tracker/?func=detail&aid=3122104&group_id=92314&atid=600308
 * Feature request: https://sourceforge.net/tracker/?func=detail&aid=2163626&group_id=92314&atid=600309"
__label__corrective [SMALLFIX] Fixed build problems
__label__features [WFLY-4872] Add the Elytron subsystem to the main WildFly feature pack.
__label__corrective CLOUDSTACK-3166: UI - VPC section - configure VPC - tier - STATIC NATS - fix a bug that listView showed nothing.
__label__corrective Fail fix the string formatting error in cloudstackConnection.py
__label__corrective CLOUDSTACK-7932: Fixed wrong semantics for isVmAlive() method in HypervInvestigator
__label__corrective [TACHYON-590] @apc999 fix a few problems (using utils for path concatenation and add a test case)
__label__features Add background trace feature
__label__corrective CS-16599: cloudstack UI - guest network page - fix a bug that networkdomain didn't show in a shared network.
__label__nonfunctional Slightly improve graph building performance when creating a
__label__features [New Feature] Regular Expression Find Files.
__label__corrective error handling improvement and bug fix
__label__nonfunctional improved SerializeFeature.BrowserSecure performance.
__label__nonfunctional Improve performance of ES request on users
__label__nonfunctional Improvement of dashboard performance fixing #881
__label__features "[AS7-4070] Add ""wait on port timeout"" feature for ARQ AS7 Managed Container"
__label__corrective CLOUDSTACK-5552 fixed private gateway DB clean up on failure
__label__features "Optimize demo for tablets  cache requestWindowFeature and invoke it"
__label__corrective CLOUDSTACK-9196: Fixing null pointer exception when vm meta data is synced on
__label__nonfunctional Improved performance by avoiding to browse document fields even when non necessary
__label__corrective CLOUDSTACK-8235: Fixed test case in test_bugs.py to read variable data from configurableData section of test_data.py and also fixed wrong parameter name
__label__nonfunctional Improved unit testing for root value generation
__label__corrective Quickview: Fix action error handling not removing loading state
__label__nonfunctional improve TypeUtils performance
__label__corrective "add zone wizard - fix a JS error ""server is undefined"""
__label__nonfunctional Improved performance by handling begin and end of offsets in cluster data.
__label__corrective "fix test cases  fix warning in exceptionfactory  update"
__label__corrective "new UI - fix a bug ""JQuery is not definied""."
__label__features Improve events for new inventory features. Adds BUKKIT-3859
__label__corrective CLOUDSTACK-2080: Fix error handling for multi-edit actions
__label__nonfunctional Performance improvements when arguments mismatch is disabled.
__label__corrective "[FIXED JENKINS-9397] fixed a bug in the implementation  added tests."
__label__nonfunctional a little bit of performance improvement
__label__corrective new UI - disk offering page - fix a bug that disk size is displayed in wrong unit.
__label__corrective bug 14586: cloudstack 3.0 UI - fix a bug that Download Template action didn't pop up a dialog box showing download URL.
__label__nonfunctional fix concurrency issue and minor performance improvement and cleanup
__label__corrective CLOUDSTACK-7897 : Fixed the script test_reset_ssh_keypair.py - Test Cases failing on Simulator as Testcases try to ssh to the VMs
__label__unknown Remove duplicate javadoc in Intersector
__label__nonfunctional Merge pull request #416 from BroadleafCommerce/qa-1722-improve-change-order-performance
__label__corrective "CLOUDSTACK-3681: fix bunch of bugs related to vmware  regarding to snapshot"
__label__features Support assume feature with JUnit 4.12.
__label__features Added flick feature to scrollpane.
__label__features the selectorIndexPerHostMap is now a hashmap and created lazily + added some serve warning when feature enabled
__label__features Remove auto-double braces feature also from GUI
__label__nonfunctional ISPN-1726 Transaction performance improvements
__label__nonfunctional Improved testing TcpIpConnectionManager getConnectionCount
__label__features added feature stack options in WekaSegmentation to have the feature stack array always up to date.
__label__nonfunctional SONAR-6229 improve performance of ES indexing at startup
__label__nonfunctional HADOOP-10659. Refactor AccessControlList to reuse utility functions and to improve performance. (Contributed by Benoy Antony)
__label__corrective CLOUDSTACK-6487: UI > Add LDAP Account - fix a bug that a LDAP account that does not have email and all LDAP accounts below it are missing from the listing.
__label__corrective "bug 12040: fixed the problem where if the fail is not retrievable  we cause a classcastexception"
__label__nonfunctional AVRO-556. Poor performance for Reader::readBytes can be easily improved.
__label__corrective [FIXED HUDSON-6459] Fix in 1.358 did not work because exception thrown
__label__nonfunctional Merge pull request #59 from square/jwilson/improve_reuse
__label__unknown [FIXED HUDSON-4831] prevent duplicate cause entries for a build
__label__corrective CreateParent option and bug fixes for parent directory creation
__label__nonfunctional Improve the sync block performance
__label__corrective CLOUDSTACK-5042: fix NPE error as BroadcastUri is NULL in shared network after upgrade from 2.2.14 (Cherry-picked from commit 09e7ab9750df27d96159bbcf3f41bafc33ac6fbe)
__label__corrective CLOUDSTACK-932: Fix incorrect param that caused casting error while processing api
__label__features Added another example that shows off features a little more
__label__corrective "JENKINS-7836 tentative fix for the copy from slave to master issues. The problem looks similar to JENKINS-7745  so we might as well synchronized the ProxyInputStream."
__label__nonfunctional Worked on CREATE LINK command to improve performance reducing memory used.
__label__nonfunctional improved reuse by refactoring things into tags
__label__nonfunctional Cleaned up CRUD code for MongoDbClient to improve readability.
__label__corrective Really fix indentation. Github browser-editor fail\!
__label__nonfunctional Improved doc + testing on NodeEngine
__label__nonfunctional Improved performance on indexing.
__label__nonfunctional Improved testing of collection classes
__label__nonfunctional performance improvement in the recursive copy method.
__label__corrective [TACHYON-94] Fix the format problem
__label__features StoreDirect&WAL: add feature masks
__label__corrective Updated netx to fix a dead lock problem.
__label__nonfunctional Node: minor layout improvement in DiscoveryServiceSetting configuration to improve readability
__label__corrective bug 12764: cloudStack 3.0 new UI - VM wizard - basic zone - select security group step - fix a bug that appeared when only one security group is selected.
__label__unknown fix duplicate metrics reporting if two components subscribed to the same metric on the same page
__label__nonfunctional Cleanup and improved readability for CloneAndRegisterMachineFromIMachineIfNotAlreadyExists.
__label__corrective CLOUDSTACK-4338: fix NPE if create volume failed
__label__features "use new jarjar ""keep"" feature instead of manual zapping

git-svn-id: https://google-guice.googlecode.com/svn/trunk@311 d779f126-a31b-0410-b53b-1d3aecad763e"
__label__nonfunctional ISPN-4807 Improve PerformanceCompareStressTest to better model the scenarious we're mostly interested in
__label__unknown jjtree-javacc get rid of duplicate interim classes
__label__corrective [TACHYON-1459] Merge Implement the OSSUnderFileSystem. Fix some integration test fail.
__label__corrective "ScrollPane  fixed horiz scroll handle width problem. Fixed not using scrollY method."
__label__nonfunctional HBASE-5416 Improve performance of scans with some kind of filters (Max Lapan and Sergey)
__label__nonfunctional improved performance for BeanToArray
__label__corrective Primary Storage page - fix a bug that clicking next middle menu item didn't clear previously selected middle menu item.
__label__nonfunctional improve profiled performance of C++ BitArray::get(). Closes issue 1101
__label__unknown HBASE-16606 Remove some duplicate code in HTable
__label__nonfunctional performance improved for large gc logs and detailed zoom levels
__label__nonfunctional Improve performance of the lwjgl backend
__label__nonfunctional Improve performance until AMD fixes CPU use bug
__label__features Store: add basic feature bitmap
__label__corrective [LWJGL3] Fix LifecycleListener related problems (#4011)
__label__corrective new UI - VM Wizard - fix a bug: clicked template is not selected.
__label__nonfunctional Use XPaths map in BindingHandler step as well (even though it didn't noticeably improve performance in the XSLT case for ~1000 xpaths!)
__label__nonfunctional improved test performances for sq (reuse iConnection in DBUnits)
__label__unknown "Revert ""Hide unused layers in MapTile"""
__label__corrective [TACHYON-1092] Fix a failing integration test ServiceSocketBindIntegrationTest
__label__features security feature to go live on 1.164
__label__nonfunctional AVRO-328. Performance improvements Validating encoder/decoder for nested records
__label__nonfunctional "Performance enhancement of critical method  when running in server JVM."
__label__nonfunctional Issue #1404. WAL tests and performance improvement.
__label__corrective "Cleaning  bug fixes. planning. reducing. Transparency stuff more and its like done."
__label__unknown Removing duplicate input Id field.
__label__corrective SWIFT: fixed error handling
__label__nonfunctional Improve Weld SE Startup Performance: Use available jandex.idx files. Thanks to Stefan GroÃŸmann
__label__corrective [PHP] Fix #6474: Bug with 'format: date' when using --model-name-prefix (#6510)
__label__corrective Fix OSX cannot to VPN due to wrongly declaim ENCAPSULATION_MODE_UDP_TRANSPORT_RFC
__label__corrective Converting to JUnit 4 thus fixing [JENKINS-14641] and also fixing test(Html)Escape which didn't ran previously because of wrong case
__label__unknown dead-4142: UI > IP Address page > configuration tab > filter - remove duplicate code.
__label__unknown Remove Duplicated Network Devices Commands
__label__corrective Address comments. fix checkstyle error.
__label__nonfunctional WFLY-5494 Fix Infinispan subsystem cache store properties transformations and improve testing
__label__nonfunctional "HBASE-4195 Possible inconsistency in a memstore read after a reseek  possible performance improvement"
__label__nonfunctional Merge pull request #5049 from jerrinot/improvements/query-performance-single-thread/master
__label__unknown "[DOC]Delete duplicated  mis-spelling xml files."
__label__corrective [FIXED JENKINS-11256] SurefireArchiver#result doesn't need to be serialized on each remote call. Fixes ConcurrentModificationExceptions in MavenFingerprinter
__label__features Add the layout for the featured image on the website to the feature demo. Can be accessed by clicking an action item.
__label__features "Add ""otoMoto"" to featured list"
__label__nonfunctional put line break after error message to improve exception message readability
__label__nonfunctional Index improvement: RIDContainer add value performance
__label__corrective "bug 7185: the tags logic in the update disk service offerings was wrong. once a tag is created  it should not be modified. we should only append to the existing list of tags  adding more tags. fixing the same"
__label__corrective CS-14546: Fixed bug Unable to view console in System and Guest VMs and Added Upgrade script
__label__corrective "[Java] Play! framework + retrofit2 client exception converter  bug fixes (#6543)"
__label__nonfunctional SONAR-2084 improve usability
__label__unknown remove (duplicated) object_to_http_body and object_to_hash from swagger.rb findbugs
__label__corrective bug fix in error handling. The postBuild should run after all the errors are recorded.
__label__features "Feature 809: import Pubmed Central ID

Import ""pmc"" field into bibtex from pubmed/medline records.  This field
is analogous to other pubmed identifiers (pubmed id  doi  pii) and is
used in NIH grant applications when listing publications produced by
NIH-funded work."
__label__features new feature: PatternProcessor
__label__nonfunctional SONAR-5877 Improve readability of issues on the same line
__label__nonfunctional YARN-6339. Improve performance for createAndGetApplicationReport. (Yunjiong Zhao via wangda)
__label__nonfunctional "1) Increase working buffer size to 1M  when downloading/uploading VMDK  hopefully can improve OVF exporting/importing performance. 2) use atomic SQL operation to get rid of global lock usage"
__label__nonfunctional more performance improvement.
__label__corrective UserContext switched to CallContext.  Added generic storage mechanism for other code to carry information throughout a call.  Made the calling User and Account a must have.  Added an interface to carry entities in error.  Fixed up the code.  Part of the vmsync branch
__label__corrective CLOUDSTACK-7241: Fixed error in test_escalations_ipaddresses.py
__label__nonfunctional Improved performance on decoding of strings reported by Alex with its fix
__label__corrective Add Zone Wizard - fix a bug that submit button didn't respond when scope at step4 is zone-wide.
__label__corrective "making more progress. bug fixes and added ""clear error"" support."
__label__features "Netty: Support to bind on multiple host/port pairs

This patch allows to create several netty bootstrap  each of which
listening on different ports. This will potentially allow for features
to listen to different network interfaces for node-to-node or node-to-client
communication and is also the base to listen to several interfaces  so that those
can be used to speed up cluster communication in the future.

Closes #8098"
__label__unknown bug 10824: clearing up older entries in resolv.conf and dnsmasq-resolv.conf before adding so that duplicate entries do not end up in these files.
__label__unknown remove the duplicated version info in common's pom file findbugs
__label__corrective new UI - fix a bug: curly brackets was missing.
__label__features Support reading feature paths from the rerun formatter file
__label__corrective CS-14542: Fix wrong traffic label for KVM agent
__label__corrective [Swift3] Fix bug where non-camel-case path params didn't work. (#5267)
__label__features Feature request 2472812: rollback can be empty now for no rollback
__label__features "Revert ""[WFLY-6779] added WISE feature code"""
__label__corrective SubTask -> Task traversal and additional bug fix
__label__nonfunctional "Improved yet performance with huge datasets. When the mmap pool is full  then the channel technique is used. The dramatic slowness of read/write when the mmap pool is exhausted has been fixed."
__label__features "Revert ""Added doesObjectExist feature"""
__label__corrective CLOUDSTACK-9854: Fix test_primary_storage test failure due to live migration
__label__corrective 1) Fix a serialization problem in command inherits AsyncCreateCommand.
__label__nonfunctional BroadleafCommerce/QA#1827 - Improve readability of offer qualifying quantity test
__label__corrective CLOUDSTACK-747: internal LB in VPC - fix a bug that Source IP Address column was not filled after Add Internal LB action was complete.
__label__features Modified LsCommand to accomodate feature of listing the pinned files
__label__corrective using a test as a driver to fix bugs
__label__corrective volume upload: fixed build error from the commit b0a96c4c85f2d6dfe57ce3474ce95ebb3cec6d2a
__label__corrective "new UI - related UI change after Bug 6162 (updatePortForwardingRule: should use ""ipaddress"" parameter instead of ""publicip"") is fixed."
__label__nonfunctional optimized for encode performance
__label__corrective "bug 11070: cloudStack - delete cluster/host/network/pod/primaryStorage/secondaryStorage/zone - fix a bug that an API error showed after account was deleted (""listxxxxxxx&id=N"")"
__label__nonfunctional Minor patch to DirichletCluster to improve cluster dump readability. All tests run
__label__corrective "CLOUDSTACK-5726: Using runtime discovered dao (in AsyncJobManagerImpl.submitAsyncJob) to persist record has a problem to locate the right DAO instance  it causes corrupted field value be stored in database. Put in a work-around fix first to always initialize record fields in all cases"
__label__nonfunctional WELD-1149 Specialization - bootstrap performance improvement
__label__features "AS7-5897 Introduced a feature to allow user application specific ""container-interceptors"" which gets applied before certain JBoss specific server side interceptors get applied"
__label__corrective another fix for a related bug on data volumes I found whilst testing the parent bug
__label__corrective new UI - resources page - pod page - fix a bug that IP Range is blank.
__label__corrective this commit fix the failed unit test in last commit
__label__nonfunctional improve console handler performance (nio write and http expires header)
__label__corrective "Revert ""[ALLUXIO-1819] Fixed build failure"""
__label__features Bumping to 3.0 alpha 2 to reflect the new history feature.
__label__corrective CLOUDSTACK-7862: Fixed the script 'maint/test_high_availability.py' - Test Cases failing on Simulator as Testcases try to ssh to the VMs
__label__unknown Remove duplicated ID field from alarm callbacks
__label__nonfunctional SONAR-4518 Improve performance of rule removal during server startup
__label__corrective perhaps the close() is the key to fix the problem reported in
__label__corrective bug 11255: cloudStack - IP address page - Create Firewall rule - fix a bug on Google Chrome that changing protocol dropdown (e.g. from TCP to ICMP) wouldn't correctly hide/show related input fields.
__label__corrective CLOUDSTACK-9787: Fix wrong return value in NetUtils.isNetworkAWithinNetworkB
__label__nonfunctional HDFS-3024. Improve performance of stringification in addStoredBlock. Contributed by Todd Lipcon.
__label__unknown bug 12337: Encrypt only password in host_detail table. Removed unused and duplicate references of HostDetailDao
__label__corrective api: Add SecurityGroup DB view creation into db create_schema and fix a bug in ListSecurityGroupsCmd
__label__corrective [ALLUXIO-2743] Fix failing tests and add removeMount to MountTable when deleting a mount
__label__nonfunctional Performance enhancement for the map.get on the locally owned entries.
__label__corrective "CLOUDSTACK-7389: fix for the script bugs CLOUDSTACK-7389  CLOUDSTACK-7390 and few"
__label__corrective [ALLUXIO-2021] Fix a bug for setPermission in LocalUFS
__label__nonfunctional Improved performance on fetch plan processing issue #4442
__label__features "Basic implementation of feature for ldap user synchronization as
background service. Introduced configuration property to configure the
synchronization period."
__label__unknown Fix duplicate imports from rebase
__label__corrective "cloudstack 3.0 UI - domain page - fix a JS error that appears after a new domain is created - ""context[$detailView.data('view-args').section] is undefined"""
__label__corrective [ObjC] Fix various bugs in generated code. (#3031)
__label__corrective bug 11555: Fixed NPE happening during LB rule cleanup in case when createLB fails
__label__unknown Move duplicate code into CmdLineTool#processConfiguration()
__label__nonfunctional raising NewSize to 128m from 64m generally improves performance
__label__corrective [FIXED HUDSON-4039] Fixed a serilization problem.
__label__unknown refactor EvernoteApi getting rid of duplicate code
__label__nonfunctional Minor improvement for readability of code
__label__nonfunctional "improve lockscreen look  feel and usability"
__label__features TFJ-335s upport feature-specific rate limit information
__label__features Adds support for java-swing-ayatana. refs feature #796
__label__nonfunctional - Usability improvement on the preferences pages (editor).
__label__nonfunctional SONAR-5010 improve testability of web service and fix media type of response
__label__nonfunctional "BACK PORT - issue TRUNK-2874: Improved error message when you try to install in testing mode  and the Release Testing Support module is not installed"
__label__corrective [FIXED JENKINS-5784] logrotate script for RPM/openSUSE bug fix
__label__corrective [FIXED HUDSON-2793] Fix from HUDSON-2379 introduced a bug for artifact/workspace
__label__corrective "Revert fail Fix OSX cannot connect to VPN due to wrongly declaim ENCAPSULATION_MODE_UDP_TRANSPORT_RFC"""
__label__corrective bug 6031: Fixing the error msg when the deployment of a directly attached vm fails
__label__nonfunctional "Improved support for concurrent testing in PerformanceTest. Also more fiddling measuring performance metrics for DateService  without getting any reliable results"
__label__unknown Remove duplicate dependencies.
__label__corrective [TACHYON-1238] Fix checkstyle errors with tachyon-common
__label__corrective account page - fix a bug that refresh button was not working properly.
__label__corrective more unit tests plus bug fix.
__label__nonfunctional SONAR-4996 Improve Java migrations performance
__label__nonfunctional Improved testing. In relation with LBCLASSIC-142
__label__nonfunctional object api performance improvements case #5443
__label__corrective this commit fix the failed unit test before
__label__corrective "A minor fix to take into account stopping of a vm in stopping state. We will get a concurrentmodificationexception  and end in errorinmaintenance. This behavior is consistent with how stop works for cpvm."
__label__nonfunctional MassiveCore - Performance improvement for command argument readers.
__label__unknown [FIXED HUDSON-6832] Hide some sidepanel links that should not be shown in
__label__features add DONE for cookies in the feature list
__label__unknown Fix more code smells (#62)
__label__nonfunctional CLOUDSTACK-2131: [Performance][Enhancement] Avoid checking for providers that are not enabled while creating network.
__label__unknown [TACHYON-821] remove duplicate call to getWorkerTachyonConf
__label__corrective "new UI - fix a bug ""$iconContainer is not found"""
__label__nonfunctional SONAR-5528 Improve performance of persistit serialization for highlighting
__label__unknown HBASE-16776 Remove duplicated versions of countRow() in tests
__label__nonfunctional SQL: minor improved on performance on reading a number that already is a number
__label__corrective CLOUDSTACK:8018: Fix test_redundant_router.test_redundantVR_internals - The SSH to router was being done from wrong host
__label__corrective "[JENKINS-7866] - Fix failed tests displaying as Yellow on ""History for Test Results"" page."
__label__unknown Add a unit test to verify assigned labels with spaces. Reduce duplicate code in test unit when validating cloud labels.
__label__corrective "Better JSON tests  bug fixes."
__label__nonfunctional Improved performance of OrientGraph.getVertices() and getEdges() when no index is configured.
__label__features Dispose line filters when feature paths are clobbered
__label__features Adds genercis and other java5 features to the code
__label__corrective new UI - fix a bug that API command didn't get passed correctly.
__label__features "browserCompatible feature add: double quote long fields exceed [-2^53+1  2^53-1]"
__label__nonfunctional Extendible hashing tests were added and performance was improved.
__label__corrective network page - fix a bug that clicking Add Network Button didn't work the first time.
__label__unknown Remove duplicate declaration of slf4j-api in pom.xml which let the build fail with maven3
__label__corrective Implement delete/free in TachyonFS and fix bug with TachyonFile.
__label__corrective [SECURITY-184] fix test failures checking null value
__label__nonfunctional Improve testability by making DomainController an interface
__label__nonfunctional ISPN-1276 Improve batching and transactional performance after profiling
__label__nonfunctional Performance improvements: the index insertions now are handled by module (and not by token anymore) / code folding marks won't be shown when too many code-folding marks are available (eclipse updates those in the UI thread and it can get really slow on large files).
__label__corrective [typescript-angular2] Fix syntax error (#4383)
__label__corrective Merge master & fix bugs at EvictorTestUtil.java
__label__corrective bug 12607: fixed error message when resource limit exceeds
__label__nonfunctional Improve readability of getBlockLock
__label__nonfunctional Improve readability of expect test output
__label__corrective refactoring old code and fixing some regression bugs (UI had an issue listing domains). Also fixed the listing of domain specific zones at vm creation for a domain admin (listing everything upto root in that domain + listing all the children based on a path search)
__label__corrective CLOUDSTACK-4089: UI > zone wizard > hypervisor VMware > multiple physical networks > edit Public/Guest traffic type > fix a bug that vSwitch Type dropdown selection didn't remain after Public/Guest traffic type is dragged to another physical network.
__label__corrective bug 10375: fixed a problem with build name
__label__corrective "usage: Fix regression build fail from fc3905fb  missing closing parenthesis"
__label__unknown Refactored hideSoftKeyboard
__label__features Add back cucumber-features. Work in progress for #45
__label__unknown HBASE-14203 remove duplicate code getTableDescriptor in HTable (Heng Chen)
__label__unknown remove duplicated kotlin template creator findbugs
__label__nonfunctional Applied a patch from Tom Huybrechts to improve the performance of subversion on slaves.
__label__nonfunctional CORE-2371 Improve performance
__label__nonfunctional Improved performance in query when 2 field are of the same class and no conversion is needed
__label__nonfunctional JBRULES-1915: Improve process persistence usability
__label__unknown "[TACHYON-590] address uronce-cc's review comments  including removing duplicates and adding more test cases"
__label__unknown HBASE-7329 Remove duplicate code in newly added files
__label__corrective [FIXED HUDSON-1958] Fixed a typo in the error message.
__label__features added read/write features for drives in elastic hosts
__label__features Share general implimentation of ListenerHandler and MethodExpressionEventListener
__label__nonfunctional Improve unit testing around Version by assigning a default version when the manifest is unconfigured
__label__nonfunctional BroadleafCommerce/QA#2412 - enhance segment inclusion performance
__label__corrective bug 12316: Install wizard error handling fixes
__label__corrective "bug 11070: cloudStack - delete account - fix a bug that an API error showed after account was deleted (""listAccounts&id=N"")"
__label__corrective "maven: build client at the end  fixes path error for console-proxy build target"
__label__unknown Move some static strings to constants and remove some duplicate code
__label__nonfunctional [JENKINS-28446] - Introduce new API method in Queue to optimize the performance of UnlabeledLoadStatistics
__label__nonfunctional ISPN-805 Use custom externalizers to improve performance of Lucene Directory
__label__unknown "Solve issue #100  removed unused duplicate RuntimeSupport."
__label__corrective "bug 10501: This is really Kelven's bug but I'll fix it for him anyways.  DAO code already have a way to extract the DB fail from a transaction that is stored in the TLS.  There's no real reason for the DAO code to add special semantics to use a different DB connection.  That can be done by simply switching the transaction before it even reached the dao code.  Think about it.  Why would anyone want to call one dao function  switch transaction  and then switch back.  The right thing is for the caller to switch transaction  call a series of dao codes  and switch it back.  That's the semantics I changed to.  By doing this  it also eliminates the number of debug messages in this bug."
__label__nonfunctional CORE-2371 Improve Oracle snapshot performance
__label__corrective [SMALLFIX] Fix wrong use of Configuration in ufs creation
__label__nonfunctional Improve performance of expand for radioBlock button.
__label__features load balancer status features for radio. #476
__label__nonfunctional Enhanced extraction API - ValueCollector added to make the collection of extracted results easier
__label__nonfunctional improved BeanToArray serialize performance
__label__features "1) Adjust SingleSegmentLoader to allow for storing segments on multiple different mount points.  The specification language is really janky right now  so this is remaining a stealth feature for the time being."
__label__nonfunctional Further HttpCommunicator testing improvements
__label__nonfunctional DATAMONGO-701 - Improve performance of starts-with and ends-with queries.
__label__nonfunctional [BZ-1276311] improve PatternBuilder performances
__label__nonfunctional SONAR-9427 Improve performance on quality profile changelog
__label__corrective CLOUDSTACK:8018: Fix test_redundant_router.test_redundantVR_internals - The SSH to router was being done from wrong host
__label__corrective cloudstack 3.0 UI - infrastructure page - guest traffic type - network tab - fix a bug that clicking a network that doesn't belong to current login user would show spinning wheel forever in detailView.
__label__features Added for sceanrios to transform.feature
__label__corrective multiple-selection page - fix a bug that top error container wrongly showed previous afterActionInfo.
__label__corrective "CID-1249800 Fix a coverity bug  but disable the code its used in as it"
__label__unknown [JBOSGI-526] Duplicate org.jboss.osgi.metadata types in repository and resolver
__label__nonfunctional improve batch logging and performance
__label__unknown Modified JavaJaxrs resources to fix duplicated variable names. See issue
__label__nonfunctional SONAR-3086 improve usability of review forms
__label__corrective cloudstack 3.0 new UI - Add Network Offering - fix a bug that array index in serviceCapabilityList[] was wrongly passed to API.
__label__nonfunctional Improved reusability of PrincipalPrintServlet. IdentityLoginModuleTestCase refactored to reflect the changes.
__label__features "Added experimental feature to minimize to sys tray. System tray icon is
displayed only when user chooses to minimize to sys tray."
__label__nonfunctional Added vertex centric index handling to SimpleVertexQueryProcessor for further performance improvements.
__label__corrective CLOUDSTACK-6965: fixed the NullPointerException introduced by fix for cloudstack
__label__features StoreDirect: add encryption feature bit
__label__nonfunctional Upgrade to Gson 2.1 for improved performance
__label__corrective [ALLUXIO-2977] Fix find bugs false positive reports
__label__corrective more bug fix: name -> full name.
__label__nonfunctional "StoreDirect: compaction was not thread safe. Fix #542  in future have to rework this section  to improve performance."
__label__corrective [SMALLFIX] Fix a bug in FileUtils when getting local principal
__label__nonfunctional Improve performance by skipping expensive conversions to string when not logging; https://github.com/plutext/docx4j/pull/162
__label__nonfunctional BroadleafCommerce/QA#1739 - reformatted previously copied over method to improve readability and clarity
__label__corrective CLOUDSTACK-5404: Fix timezone bug in network usage
__label__corrective partial fix to #1052. The problem is that the DescriptorImpl class was not public.
__label__unknown dead-3274: Remove duplicate cleanString calls in logging api for
__label__corrective [TACHYON-1559] Fix checkstyle errors originating out of changes
__label__nonfunctional [DROOLS-1560] simplify and improve performances of ChainedProperties discovery (#1276)
__label__features "Treat mappings at an index-level feature.

Today we try to have type-level granularity when dealing with mappings. This
does not play well with the cross-type validations that we are adding. For
instance we prevent the `_parent` field to point to an existing type. This
validation would be skipped today in the case of dedicated master nodes  since
those master nodes would only create the type that is being updated when
updating a mapping."
__label__nonfunctional Improved performance in server commands reusing the database from the pool
__label__features C++ Client section updated after feature implementer`s review.
__label__features Combined PressedListener and ClickListener functionality. The extra baggage if not all features are needed is minor.
__label__features Adding feature to allow controlling when and where the JNLP launch URL is exposed.
__label__corrective Docs. Fix bug CLOUDSTACK-406. Change AWS API port to 7080 in Installation Guide.
__label__corrective CLOUDSTACK-9208: Assertion Error in VM_POWER_STATE handler- Fixed
__label__nonfunctional improve streams count performance
__label__nonfunctional "Add missing annotations and toString  the latter to improve readability of logs"
__label__features made admin features optional and url based on adminURL for identity service in catalog
__label__nonfunctional improved create link performance when the destination field is a @rid
__label__corrective Instance page - vm group left menu (login as regular-user) - fix a bug that Refresh button on right panel didn't work.
__label__corrective bug 10516: cloudStack - volume page - create template dialog - fix a bug that appears on IE browser (not on Firefox) - OS Tye dropdown is push down to next line.
__label__features Updates docs with @Configuration features
__label__nonfunctional Prevented checking the reverse image preference on every scan to improve performance.
__label__unknown "Should trim the first / if there  to avoid JOSS send duplicate / to SwiftFS server  then cause cannot find the existing file."
__label__nonfunctional improve mysql sql parser performance
__label__nonfunctional improve performance across the board for escaping
__label__features "index-draft feature


Former-commit-id: e25f6838d3d53aa50d21576ce735f2694072c2e4"
__label__features [changed] SpriteBatch.setTransformMatrix/setProjectionMatrix can now be called in between begin()/end() making our live a little bit easier. Do not overuse this feature as it flushes the batch!
__label__nonfunctional Caches: improve performance in soft/weak ref cache. Thanks to 'jendam' for suggesting it. See #317
__label__nonfunctional Style and usability improvements on `AlertReceiver`
__label__nonfunctional "HIVE-15520: Improve the sum performance for Range based window (Aihua Xu  reviewed by Yongzhi Chen)"
__label__nonfunctional more perfomance improvements. allow to disable deleting of messages for performance increase
__label__nonfunctional improved reference compute performance. issue #859
__label__corrective Updating test to fix failures.
__label__nonfunctional "HIVE-13667: Improve performance for ServiceInstanceSet.getByHost (Rajesh Balamohan reviewed by Siddharth Seth  Prasanth Jayachandran)"
__label__features "Term Vector settings should be treated like flags without propergation

today if a specific feature is disabled for term vectors with something
like 'store_term_vector_positions = false' term vectors might be disabeled
alltogether even if 'store_term_vectors=true' in the mapping. This depends on the
order of the values in the mapping since the more specific one might override
the less specific on.

Closes #4582"
__label__features "feature: when using LdapUserService one can configure Gitblit to fetch all users from ldap that can possibly login. This allows to see newly generated LDAP users instantly in Gitblit. By now an LDAP user had to log in once to appear in GitBlit.

feature: when LDAP user synchronization is enabled  one can configure GitBlit to delete all LDAP users from the backing user service that are no longer existent in LDAP. By now LDAP users that were deleted still appeared in the GitBlit user list."
__label__unknown "Another massive try at removing javadoc  PMD  and checkstyle warnings. Started to remove some code in math/ that appears to be dead as it has been duplicated and improved separately."
__label__features [WFLY-8986] Move to a single licenses.xml source file in feature-pack
__label__corrective "CLOUDSTACK-8488: network with LB fails to restart as the bash script mangles the escape characters  fixed"
__label__nonfunctional Index improvement: RIDContainer add value performance
__label__corrective "new UI - VM creation - fix a bug that last step showed ""[object]"" in disk offering."
__label__corrective agent: Fix typo for error message when HVM is not enabled
__label__unknown [JBAS-8323] - Add basic detection for duplicate namespace entries
__label__features "Add functionality for labels + features in same SeqRecReader for SequenceRecordReaderDataSetIterator


Former-commit-id: 766e16d956ab45bb351b607433c0c094d439a6de [formerly 08f4d8c81010ab20e607ef76c7352d3a42b4e186]
Former-commit-id: b7b2bacb2802cc22128866bb437f30c1e98a5a27"
__label__nonfunctional Minor performance improvement.
__label__corrective CLOUDSTACK-6906: Fixed volume resize BVT failure
__label__nonfunctional SONAR-7305 Improve performances of WS api/measures/search_history
__label__unknown "(1) 'gpt' has a new option '-x' (clear tile cache after row write) (2) 'gpt' option '-c' now accepts also zero (= no tile cache at all) (3) WriteOp refactoring: deprecation of ""Static Utility Method"" and ""Parameter List Explosion"" code smells."
__label__unknown [WFLY-6704] removing duplicated javax.api
__label__corrective new UI - VM wizard - fix a bug that customized disk size didn't show in last step if blank template (ISO) is selected.
__label__unknown Removing duplicate method.
__label__features update full-feature-pack-licenses.xml
__label__unknown Adds validation of code smells in case expressions
__label__unknown [WFLY-2879] - Remove duplicated code from test cases where custom modules are needed.
__label__corrective "cloudStack - VM Wizard - fix a bug that comes and goes: ""$soTemplate is undefined"""
__label__features Entries contained in an .aux file can now be selected (feature 644).
__label__corrective "bug 7721: generically fixing the url decoder issue for all commands  wherein we block any input which contains % eg. name  displayText. We throw the apt error back to the UI for the user to act upon"
__label__corrective CLOUDSTACK-3154: UI > Infrastructure > zone detail > remove VMware datacenter action > fix a bug that incorrect property name was used to retrieve embedded object in API response.
__label__features add Feature.DisableFieldSmartMatch
__label__features SECOAUTH-328: move pre approval features to UserApprovalHandler
__label__corrective CLOUDSTACK-7860: test_eip_elb.py - Move Netscler info out of the test case. Read it from config. Fix attribute error. Fix pep8 issues. Fix imports.
__label__features Default of auto update time stamp is now False. Refs feature 799.
__label__unknown Remove duplicate attribute declaration. Closes #102.
__label__unknown "[Java] Remove duplicated model description in Spring  JAX-RS models (#3887)"
__label__corrective CLOUDSTACK-6316: Fixed bvt failures
__label__corrective CLOUDSTACK-7143: try to fix jenkins problems with last 2 commits
__label__features All core cucumber-features are passing except one
__label__nonfunctional [WFCORE-543] @Ignore test failing when testing against the model validation improvements in upstream core
__label__features Query collections & arrays feature - code coverage supplemented
__label__corrective bug 12316: Install wizard error handling fixes
__label__nonfunctional improved performance for android
__label__features Added load/save session feature.
__label__corrective bug 7075: Fixed error handling when adding secondary storage failures as long as any errors that would have been captured in the dialog itself.
__label__nonfunctional SONAR-3104 Improve the usability of the project 'History'
__label__nonfunctional "Distributed architecture: tuned timeouts  improved performance by avoiding to push to the internal queue if all the synch responses are already arrived"
__label__unknown Huge Refactor. I smell an RB coming ;).
__label__corrective [ALLUXIO-1837] Removed extra empty lines to fix the build failure
__label__features "Revert ""ContextSuggester""

Reverting context suggester due to #5525 The release of this
feature is delayed untile `v1.2`

This reverts commit 44f52e474cc68e2dbd4515304f0fd7f109951da5.
This reverts commit 8c592101aee9640b42bd9336db33ad7f09d339d2."
__label__corrective Temporary fix for CM problems. Resolves #2649
__label__unknown removed custom code that duplicates functionality of guava fallbacks
__label__nonfunctional HTTP: Improved performance by using a larger buffer
__label__corrective "[HUDSON-5951] yay for tests  fix error in new normalize() before it went in any release"
__label__unknown Cloudstack-3882 remove duplicate entres of dataserver from /etc/hosts
__label__features "Feature: Field names ""Doi""  ""Ee""  and ""Url"" are now written as ""DOI""  ""EE""  and ""URL"""
__label__features Send history feature now exports full CSV dump
__label__features Implementation of autosave & backup feature (#2118)
__label__unknown [WFLY-6868]:Remove deprecated and duplicated class AcceptEncodingGZIPInterceptor
__label__unknown dead-274: fix duplicate error code.
__label__features JBRULES-935 - Update DrlDumper to handle with the new language features
__label__corrective new UI - fix a bug that Disable HA option didn't show.
__label__corrective [JENKINS-21486] Fix :ant from daniel and separate failed plugin from
__label__nonfunctional massive performance improvement through code elimination and combination.
__label__nonfunctional Improved again performance of OGraphDatabase
__label__nonfunctional BroadleafCommerce/QA#2208 - Refactor if conditions to enhance readability
__label__corrective "CLOUDSTACK-1957: cloudstack UI - fix a JS error ""'logout' is undefined"" which sometimes shows on login screen."
__label__corrective bug 8413: IP Address page - fix a bug that domain admin can't see PF/LB tabs of Source NAT IP created by sub-domain user.
__label__corrective cloudStack 3.0 new UI - instance wizard - select network step - fix a bug that network container was empty when trying to deploy 2nd VM.
__label__features Released v. 1.5. Reenabled the CiteSeer features afterwards.
__label__corrective "Resurrecting the original fix for HUDSON-5756  as I'm still worried that bugparade 6933067 is related to some sort of the HotSpot optimization."
__label__features [JBTM-1933] Finish Migration of ACID features from TXFramework to XTS and REST-AT
__label__corrective bug 8296: fix a bug that periodicallyCheckNonCompleteAsyncJob() sent out-of-date jobId to queryAsyncJobResult API.
__label__unknown Remove duplicate Utils getters
__label__corrective "CLOUDSTACK-1758: Fix ssvm test failures  where ssh to ssvm failed."
__label__corrective Minor fix on the error message.
__label__nonfunctional HBASE-13721 - Improve shell scan performances when using LIMIT(JMS)
__label__features A first good version of the Search/Replace feature. It is a GeneralActionsManipulator.
__label__corrective Experimental: Attempted fix for rare ArrayIndexOutOfBoundsException
__label__nonfunctional [ISPN-89] - Improve configuration processing and maintenance
__label__features Add support for fullscreen feature
__label__nonfunctional HBASE-6295  Possible performance improvement in client batch operations: presplit and send in background - round 2
__label__corrective CLOUDSTACK-2322: update network.gateway to fix deployVm error on
__label__nonfunctional Improved performances on KV server.
__label__features Disclose that line filters are applied to all feature paths
__label__corrective CLOUDSTACK-9466: Fix fk constraint failure in upgrade path
__label__nonfunctional Merge pull request #7307 from stuartwdouglas/performance-improvements
__label__features [JUnit] Handle empty feature files gracefully.
__label__nonfunctional CORE-2321 Improve robustness and readability
__label__features "HIVE-13313: TABLESAMPLE ROWS feature broken for Vectorization (Matt McCline  Sergey Shelukhin)"
__label__nonfunctional Improve performance of glReadPixels() and ScreenUtils on GWT
__label__corrective [#61769706] Fixes a bug where the wrong name was being used for header
__label__nonfunctional HIVE-9127: Improve CombineHiveInputFormat.getSplit performance (Brock via Xuefu)
__label__corrective "Upgrade to use Vsphere 5.1 SDK jar  fixed all compilation error with new"
__label__features "MAHOUT-492 - modified InteractionValueEncoder to be more generic  to allow interactions of any two FeatureVectorEncoders and also to allow specifying weight to apply to interaction"
__label__features Add config option to disable analysis features in the UI for certain fields (#4175)
__label__corrective CLOUDSTACK-7891 - Fix failure in integration.component.test_escalations_instances.TestInstances/test_15_revert_vm_to_snapshot
__label__corrective CLOUDSTACK-2577: Fix exception handling for listPortForwarding API
__label__corrective "[FIXED JENKINS-22631] Do not just warn about multiple builds with the same number; note this in the official problem list  and offer to fix it."
__label__nonfunctional Slight performance improvement in api/rules/tags
__label__corrective making the same fix I made to maven-hpi-plugin to prevent a failure due to a hard-coded limitation in Jetty.
__label__unknown Remove duplicated hexadecimal conversion code
__label__corrective [JENKINS-12199] Fixed bug where job configuration shows a displayname even though the job doesn't have a display name
__label__nonfunctional YARN-6788. [YARN-3926] Improve performance of resource profile branch
__label__features Improved marking feature. Added :abbr modifier for key generator.
__label__corrective "CLOUDSTACK-7637: UI > fix a bug produced by 4.5 feature ""template accross multiple zones"" > fix it by including all properties to jsonObj."
__label__features "Add link to ""feature branch workflow""

[ciskip]"
__label__nonfunctional "BACK PORT - issue TRUNK-2874: Improved error message when you try to install in testing mode  and the Release Testing Support module is not installed"
__label__features "AnimalTamer and Tameable interfaces  and corresponding features."
__label__nonfunctional "HIVE-15617: Improve the avg performance for Range based window (Aihua Xu  reviewed by Yongzhi Chen)"
__label__features Using the language feature import since 2.9 is not supported
__label__corrective bug 8541: Instance page - fix a bug that top Start button was shown while it was not supposed to.
__label__features format the code with auto format feature of eclipse.
__label__corrective [Bash] Bugfix default curl options fix (#4832)
__label__nonfunctional Improve Weld SE startup performance: do not parse beans.xml files multiple times if isolation is turned off. Thanks to Stefan GroÃŸmann
__label__nonfunctional [ISPN-97] - Improve configuration processing and maintenance
__label__corrective Summary: Fix RPM installation error for cloudstack-awsapi
__label__corrective "Fixed a bug in the way Lwjgl3Windows are stored and removed  fixed Lwjgl3Graphics#setFullscreenMode/setWindowedMode  changed Lwjgl3ApplicationConfiguration to use setters  fixed Lwjgl3Clipboard to use GLFW clipboard functions"
__label__nonfunctional HDFS-8674. Improve performance of postponed block scans. Contributed by Daryn Sharp.
__label__nonfunctional HDFS-9768. Reuse ObjectMapper instance in HDFS to improve the performance. Contributed by Lin Yiqun.
__label__nonfunctional AVRO-753. Java: Improve BinaryEncoder Performance.
__label__unknown moving duplicate code to separate method
__label__corrective CLOUDSTACK-9830 Fix DST bug in QuotaAlertManagerTest
__label__nonfunctional Caches: improve performance in soft/weak ref cache with 'clearCache()'. See #317
__label__features Updated to JUnit 4.11. Relates to #255. Might also relate to #322. IntelliJ IDEA reports features with Background and Scenario Outline incorrect.y. Might be the case on master too.
__label__nonfunctional Improved performance on massive insert using indexes
__label__unknown 2 more duplicate module refrences
__label__corrective bug 10629: fixed regression bug in listVms - security group name and display text weren't returned
__label__corrective cloudstack 3.0 UI - VPC feature - fix a bug that shortLabel was not localizable. (Reviewed-by: Brian)
__label__nonfunctional AVRO-752. Java: Enhanced Performance Test Suite
__label__corrective cloudstack 3.0 UI - fix space problem from a patch
__label__corrective [JENKINS-28041] fix failing unittest
__label__features Adding missing features of scrap reports - TRUNK-1808
__label__features front-end CLI hook up. This feature is now visible
__label__corrective "new UI - Account page - fix a bug that JS error ""$midmenuItem1 is null or not an object ""  ""jsonObj is null or not an object"" when switching between tabs on an empty page."
__label__nonfunctional +10-15% performance improvements to light shaders. Testing with specular maps.
__label__corrective bug 8246: remove temporary UI fix since API Bug 7410 has been fixed.
__label__nonfunctional improved parseArrayMapping performance
__label__features Add buttons to the feature demo which control the built-in progress bar. This is not represented on the pre-3.0 action bar.
__label__nonfunctional Improved performance of TRAVERSE and SQL graph functions
__label__corrective "fix a bug - if adding an item fails and appears in red  the next successfully added item appear in red  too. (after this fix  the next successfully added item will appear in green)."
__label__nonfunctional SONAR-5490 Improve readability and payload of results in the Coding Rules page
__label__nonfunctional avg function: small refactoring to improve code reuse and fix possible
__label__nonfunctional "major integration testing work  consolidation of the API operations on all layers  other improvements"
__label__features TRUNK-3780 Searching for patient with patient name/new feature
__label__corrective "reverted the camera fix  because it is wrong"
__label__corrective "new UI - Update VM - related UI change after bug 6489 (""updateVirtualMachine API should return an embedded object on success"") is fixed."
__label__features Backporting: Aware of module feature causes OpenMRS to crash - TRUNK-2849 to the 1.9.x branch
__label__nonfunctional Uses a fixed key length of 8 for the BerkeleyJE adapter which improves performance.
__label__corrective follow-up bug fix to  7bcc8107e2200fb9cd82788dbef471c612d9771f
__label__nonfunctional HBASE-975  Improve MapFile performance for start and end key
__label__nonfunctional Improved performance of scripts by compiling them
__label__corrective CLOUDSTACK-3121: UI > VPC dashboard - fix a bug that showed wrong count number of private gateways.
__label__nonfunctional improved parse from bytes performance
__label__nonfunctional Improved performance to retrieve fields from documents
__label__corrective "Added debugging in UI  fixed bugs in browsing file system"
__label__corrective [Java Play Framework] Remove most warnings + bug fixes (#6275)
__label__nonfunctional improve unpooled statement's performance
__label__corrective cloudStack 3.0 new UI - VM wizard - step 5 - some bugs have been fixed in widget code. Here is related UI change.
__label__features "adding a maintenance feature to list patients who are also users. (This should probably be removed before the 1.6 release  assuming that we switch the API to properly support that feature.)"
__label__corrective CLOUDSTACK-5481: fix ui bug when regular user add isolated network
__label__features [WFLY-4873] Update the servlet-feature-pack templates to version 4.0 of the schema.
__label__corrective bug 7014: fixed JS error when attempting to view a non-selected vm instance
__label__corrective "new UI - fix a bug: ""When you execute actions in vm  the result is in red even though it was successful. It shouldn't be in red when action is successful."""
__label__corrective CLOUDSTACK-4998 additional bug fixed
__label__nonfunctional AVRO-460. Performance improvement to write_long(). Contributed by Bruce Mitchener.
__label__nonfunctional Enhance GenericResultPoint and move some logic out of qrcode packages for reuse with datamatrix soon
__label__nonfunctional Issue #1602. Small SBTree performance improvement.
__label__corrective nested optional block was not working. Fixed that bug.
__label__nonfunctional Improve performance of this method
__label__features "Largely completed  uber-cool federation feature."
__label__nonfunctional Use more restrictive filter in External TLD scanning to improve performance
__label__nonfunctional Distributed: improved performance in case of tx and commands
__label__nonfunctional improve readability of language selection on the profiles page
__label__unknown Prevent duplicate Permission or PermissionGroup objects from being created.
__label__nonfunctional HLL Performance improvement: remove useless call to Math.floor
__label__nonfunctional HADOOP-7761. Improve the performance of raw comparisons. Contributed by Todd Lipcon.
__label__nonfunctional ISPN-1015 - Optimize HotRod client to match Memcached performance
__label__nonfunctional Issue #1404  WAL performance improvements.
__label__nonfunctional "Improve writing performance: use NIO  pre-create tmp directories etc"
__label__corrective picking up new svnkit that has better exception chaining and fixed infinite loop
__label__nonfunctional Merge pull request #539 from BroadleafCommerce/qa-1968-prod-opt-performance-improvements
__label__nonfunctional performing all remote operations at once improves the performance substantially when this runs on a remote file system.
__label__nonfunctional Improves iterator performance for entity manager
__label__unknown "Removed some duplicate copyright header and made gogrid inherit from project  not multi."
__label__corrective [TACHYON-470] Fix more merge problems
__label__nonfunctional Enhanced cancelAll and testing
__label__nonfunctional Testing improvements for com.hazelcast.monitor package.
__label__nonfunctional improved performance for BeanToArray
__label__nonfunctional JBRULES-2067: adding support to class resolution caching on user and system classloaders to improve compilation performance.
__label__corrective api: Fix NullPointerException in ApiResponseHelper for DomainResponse
__label__corrective Add zone wizard - configure public - fix a bug that configureGuestTraffic() was being called more than once when multiple public VLAN IP Ranges are entered in configure public screen.
__label__corrective [ALLUXIO-2977] Fix failing tests
__label__features "After a search has been done  the first entry of the entry table is selected (feature 656)."
__label__nonfunctional "Fewer substrings created during integer parsing  resulting in performance improvements."
__label__corrective "cloudstack 3.0 UI - global settings page - fix a bug that ""value"" column turned blank when Save button is being clicked."
__label__nonfunctional improve TypeUtils performance
__label__corrective CLOUDSTACK-4634: Fixed issue arising due to wrong indentation
__label__nonfunctional Working to the issue 327. Not closed yet but improved performance without converting the field anymore if not necessary.
__label__corrective CLOUDSTACK-7362: fix wrong uuid issue for resource tags
__label__features added application-only-authentication feature to AsyncTwitter
__label__features Added Back Pressure item into New Features
__label__features Added doesObjectExist feature
__label__unknown "Refactor test code  remove duplicates at FailoverOperatorTest  yet more dups..."
__label__nonfunctional Improved performance on WAL restore if RAM is available
__label__nonfunctional HBASE-7884 ByteBloomFilter's performance can be improved by avoiding multiplication when generating hash (clockfly)
__label__corrective [ALLUXIO-2977] Fix failing tests
__label__nonfunctional "IN PROGRESS - issue TRUNK-2874: Improved error message when you try to install in testing mode  and the Release Testing Support module is not installed"
__label__nonfunctional Improved performance of OrientAsynchGraph
__label__corrective bug 10024: CloudStack UI - fix a bug that adding a pod from the resource page page didn't work.
__label__corrective "Revert ""CLOUDSTACK-7762 -[Automation] - Fix test failure for test_02_revert_vm_snapshots in smoke/test_vm_snapshots.py"""
__label__corrective CLOUDSTACK-6181 Specify GB for the value of rootdisksize parameter. Add some Bytes/GB for log or exception messages. Fix Gb->GB.
__label__nonfunctional SONAR-8325 Improve MeasureDao#selectByQuery performance
__label__corrective #268 Windows path problem fixed
__label__nonfunctional "JBRULES-325 JBRULES-326 Performance of compiling improvements  caching of extractor generation etc"
__label__nonfunctional #691 - Performance Improvements
__label__nonfunctional SONAR-926 improve performance of db migration 490_migrate_package_keys
__label__nonfunctional Improved callidgenerator testing
__label__nonfunctional [DOCFIX] Small changes to improve readability
__label__unknown Delete some duplicate codes
__label__corrective [Java] fix a bug whereby OAuth intercept method calls itself forever (#6290)
__label__nonfunctional Improved testing when an operation is send to a member that leaves the cluster
__label__features "[cloud-azure] Split azure plugin in 3 plugins

Until now we had a cloud-azure plugin which is providing 3 distinct features:

* discovery on Azure
* snapshot/restore on Aure
* SMB store

This commit splits the plugin by feature so people can use either one or the other or both features.

Doc is updated accordingly."
__label__corrective CLOUDSTACK-227: Fix NPE and throw an exception if the network is not found in Xen
__label__corrective CLOUDSTACK-7762 -[Automation] - Fix test failure for test_02_revert_vm_snapshots in smoke/test_vm_snapshots.py
__label__nonfunctional Improve reusability of the AbstractLoginModuleTestServlet.java
__label__nonfunctional removed recursive record search for improve performance.
__label__corrective [FIXED JENKINS-21612] fixed wrong CSS class for f:combobox.
__label__nonfunctional "Style  syntax  and readability improvement"
__label__features "added ""packagesToScan"" feature to LocalContainerEntityManagerFactoryBean (avoiding persistence.xml)"
__label__corrective revert wrong fix of 24bcb4ddf210fbd4ca6032bb5aa6bd02f7480a73 that built-in templates can not be found
__label__nonfunctional Improved performance on traverse
__label__features TRUNK-3780: Searching for patient with patient name/new feature
__label__corrective cloudstack 3.0 UI - add zone wizard - step 2 - fix a bug that change event of network offerings dropdown was not triggered when visiting step 2 the first time.
__label__features Pass in window features since we can't check them pre-3.0
__label__features #231 ??Node.js???????????? New Feature
__label__nonfunctional Improved performance when getting all users and some users are not converted
__label__corrective CLOUDSTACK-7771: Throw exception while restoring vm if the template is already deleted. Also fix the usage event being generated from the right template id and fix the log message which sometime showed incorrect template id.
__label__corrective [ALLUXIO-2197] Fixed Checkstyle errors
__label__nonfunctional SONAR-5141 Improve performance of technical debt measures decorator
__label__corrective cloudstack 3.0 UI - XSS - listView - editable field - fix a bug that editable field sanitized value twice.
__label__corrective bug 10516: cloudStack - volume page - create template dialog - fix a bug that appears on IE browser (not on Firefox) - OS Tye dropdown is push down to next line.
__label__corrective CLOUDSTACK-7467 Fix TestVolumes.test_07_resize_fail
__label__nonfunctional Add ThreadLocal cache to proxies to improve performance
__label__nonfunctional bug 7970: some more improvements to the storage maintenance with 2 pools
__label__features "added feature learning example


Former-commit-id: eb97d4ba0733b0dfed01eea84c7e4eab523f729d [formerly 7de2e324ec89ced1c73933ddb4b03f121ec99839]
Former-commit-id: a3ae70dc3f6da290f15bfde5e8200da100b37b42"
__label__nonfunctional "Fixed most of synchronization problems with topics/queues  improved performance and increase concurrency (no more thread pool!)  supported hot-cfg of servers in configuration file  always use node name rather than id"
__label__corrective [JENKINS-19473] Removing workaround since root bug should be fixed in jzlib 1.1.3.
__label__nonfunctional Improved performance on decoding of strings reported by Alex with its fix
__label__unknown [FIXED HUDSON-4272] don't add duplicate RootActions when reloading config from disk
__label__unknown catch APIException if creating a role fails due to duplicate names
__label__corrective cloudStack 3.0 new UI - vm wizard - fix a bug that isolated sourceNAT network wrongly showed twice in default network section in step 5.
__label__nonfunctional Fixed ugly bug on Object Database and improved performance on class inspection
__label__corrective [SMALLFIX] Fix javadoc errors
__label__corrective "system page - physical network - fix a bug that after physical network tags field is updated  add guest network dialog was still using obsolete physical network data."
__label__features remove no longer supported feature description and sample code.
__label__features Add tab listener for feature toggles.
__label__corrective more simplification and bug fix
__label__unknown simplified by removing duplicate code.
__label__nonfunctional "By passing TestClass to AllMembersSupplier  we can reuse the annotation parsing already supplied  and improve performance"
__label__features `Planned Features` removed and `EE Only` changed to `E Only`
__label__corrective Ignore CSS errors in YUI. We aren't fixing those.
__label__nonfunctional Index update operation performance was improved.
__label__corrective CS-6840: Fix wrong path of check s2s vpn script
__label__corrective ruby: Fix syntax error when pattern contains a single quote
__label__features Hi-Density Cache added to New Features.
__label__nonfunctional SONAR-3086 Improve usability of review forms
__label__nonfunctional [DROOLS-875] optimize KieSession creation performances
__label__corrective CLOUDSTACK-8161: fixed few more wrong references in the tests while
__label__nonfunctional Improved testing for operations send to member that leaves the cluster
__label__unknown Removed duplicate code and unused imports which was causing build failure.
__label__features enhance instructions for couchdb 1.1 proxy feature.
__label__features Add FriendCaster to feature impls.
__label__corrective CS-6840: Fix wrong command name
__label__corrective 1. change user timeout to avoid network congestion case. 2. fix bug in copyfromlocal hdfsapi. 3. add getLocationHosts api to TachyonFile.
__label__corrective "Edit Instance - fix a bug ""json.listserviceofferingsresponse.serviceoffering is undefined""."
__label__unknown removed unused code or duplicated code; moved code only used once to where its used
__label__corrective CLOUDSTACK-2760: UI > Infrastructure menu > System VMs > fix a bug that Agent State was not mapped correctly between systemVMs and hosts.
__label__corrective "findbug fixes  added some comments  bug fixes"
__label__corrective need to use a stapler with more bug fixes for Jetty/Tomcat.
__label__features added skeleton for Ip features
__label__corrective "new UI - related UI change after before bug 7143 is fixed (""VLAN parameter in CreateZone shouldn't be required"")."
__label__nonfunctional Improved performance of in memory key column value store by a factor of 3-5
__label__corrective S2S VPN: Fix wrong response name
__label__corrective [SMALLFIX] Fixed problems in JavaDoc references in 'RoundRobinAllocator'
__label__corrective improve unit test for master ft; add more comments; fix minor bugs
__label__corrective "CLOUDSTACK-4649: UI > Edit Instance  Edit Template > fix a bug that XenServer Tools Version 6.1+ field didn't get updated correctly."
__label__nonfunctional Improve testability of HostControllerExecutionSupport creation
__label__nonfunctional HA: improved performance of rid bag compare
__label__features WFLY-2266 Make deployment overlays feature able to replace application libraries
__label__nonfunctional MAHOUT-767 Improve RowSimilarityJob performance
__label__corrective bug 11045: Fix exception exit of CheckRouterTask
__label__features added section to userguide explaining how experimental features are indicated
__label__corrective CLOUDSTACK-9688: Fix failing smoke tests
__label__unknown prevent duplicates on Fields
__label__unknown php remove duplicated type mapping
__label__nonfunctional Performance improvements on preconditions
__label__nonfunctional HBASE-12740 Improve performance of TestHBaseFsck
__label__corrective new UI - fix a bug that dashboard doesn't get highlighted when being clicked.
__label__nonfunctional improved float/double parse performance.
__label__nonfunctional Improved performance by clearing the map instead of recreating it.
__label__nonfunctional improve ResultSetProxyImpl performance
__label__nonfunctional #691 - Performance enhancements
__label__features Drop the featured scrolling.
__label__nonfunctional HADOOP-10674. Improve PureJavaCrc32 performance and use java.util.zip.CRC32 for Java 7 and above.
__label__corrective "CLOUDSTACK-7127: Fix for addRegion failure  avoiding regionid 1 while creating new region through test case"
__label__corrective "new advanced search dialog - fix a bug that search word is still ""on"" when visiting another page without closing the dialog first."
__label__features "Bumped version to 2.7.0-SNAPSHOT  because new features were added."
__label__nonfunctional CORE-2355 Improve updateSQL performance
__label__corrective CLOUDSTACK-5697 This patchset fixes a bug with the recently merged
__label__unknown Remove duplicate module def; be more emphatic about alphabetization
__label__corrective "found a bug in the code where we were not decoding the params sent in eg. ""a b"" was being stored in the db as 'a%20b'. Fixing the same to have the right val persisted to the db"
__label__corrective [Automation] fix CLOUDSTACK-2546 Failed to add second NIC to vm in KVM environment
__label__corrective new UI - resources page - fix a bug that clicking on zone/pod/systemVM node will close system menu.
__label__corrective CLOUDSTACK-6687: Fixed IP reservation test case failures with code re-factoring
__label__nonfunctional Ticket-2873:Improve wording for Testing option in installation wizard
__label__nonfunctional Improved performance of TRAVERSE and SQL graph functions
__label__nonfunctional Distributed: series of fix to improve HA and performance
__label__unknown CID-1114601/CID-1114602 Fix ignored return values and remove duplicate code
__label__features Better error messages when loading features from rerun file
__label__unknown Avoid duplicate class conflict with core/src/test/java/hudson/model/AbstractItemTest.java.
__label__nonfunctional AVRO-1332. C#: Improve DatumReader performance. Contributed by David McIntosh.
__label__nonfunctional Improve Multi Lock performance
__label__nonfunctional PreviewUI: improved performance in the Processing applet by caching the generated Processing fonts.
__label__nonfunctional code cleanup to improve readability
__label__corrective CS-16119: Fix wrong container name of updateVpnCustomerGateway
__label__unknown Remove duplicate code in WebSocketImpl and WebSocketImplBase
__label__corrective "CLOUDSTACK-7462: UI > Network > VPC > Router > Network ACL Lists > click an entry from list > Details tab > ACL List Rules tab > click Edit icon on any existing rule > fix the JavaScript error ""args.jsonObj is undefined""."
__label__unknown bug fixed for duplicate method
__label__corrective Fail-1852 Fixing wrong authentication header when going to SoftLayer object store. Adding password configuration key invalid
__label__nonfunctional "Improve Performance  don't calculate known values (#4630)"
__label__corrective cloudstack 3.0 UI - VPC - IP Address page - configuration tab - fix a bug that root-admin was unable to see LB service of IP Address owned by regular-user or domain-admin.
__label__corrective "bug 11070: cloudStack - delete account - fix a bug that an API error showed after account was deleted (""listAccounts&id=N"")"
__label__nonfunctional DbSqlSession: refactoring to improve readability.
__label__corrective volume upload: fixed circular reference error while generating json
__label__nonfunctional YARN-6445. [YARN-3926] Performance improvements in resource profile branch with respect to SLS. Contributed by Varun Vasudev.
__label__corrective "fail NPE in the payload was causing the ssvm agent to not invalid  fix it and also make sure that template/volume sync are robust that exceptions do not cause ssvm agent disconnect issues."
__label__nonfunctional Minor performance improvements
__label__corrective "cloudStack UI - Recurring Snapshot - fix a bug that when ""hour"" is ""08"" or ""09""  it will mysteriously change to ""12"" when Apply button is clicked."
__label__corrective "CLOUDSTACK-6620: Fixed null pointer exception in hyperv agent in getting vmstats  when all vms are deleted from outside"
__label__corrective CLOUDSTACK-6316: Fixed component and smoke test failures-second pass
__label__corrective bug 10884: fixed a bug where the security group keeps processing a vm that has been removed
__label__nonfunctional Big refactoring to improve performance at N levels:
__label__nonfunctional SONAR-7389 Improve testability
__label__nonfunctional improve performance of list rendering
__label__features [JCLOUDS-1162] DockerComputeServiceAdapter shouldn't remove container if it stops with non-zero exit code quickly after start. The commit also adds feature which prints container logs into JClouds Compute Log during Node destroy if the TRACE log level is enabled
__label__corrective cloudstack 3.0 UI - account page - fix a bug that happens when account name includes ampersand or other special characters. Encode account name before it's being passed to API calls.
__label__nonfunctional YARN-7374. Improve performance of DRF comparisons for resource types in fair scheduler
__label__nonfunctional performance improvements (thx @m0nstermind)
__label__nonfunctional Index update operation performance was improved.
__label__nonfunctional SONAR-7314 Improve readability of treemap widgets
__label__unknown "switch to using DataSource injection  flipped the loop in JPAAnnotationParseProcessor  improved service names and addressed JBAS-9034 (allow JPA operations in deployments that use JPA annotations that reference external applications persistence.xml) delete duplicate module org.slf4j.slf4j-api"
__label__corrective [FIXED HUDSON-3799] Fix for performance problem in FilePath.copyRecursiveTo() over the network.
__label__features "Add Tabata Trainer  Workout/HIIT to featured list"
__label__unknown Fix duplicate ip addresses returned for loadbalancing
__label__features Added the 3.5 new feature and enhancement headlines.
__label__corrective new UI - fix a bug that action info (succeed or fail) didn't show on top of right panel after action was finished.
__label__features To take into account changes in JabRef features
__label__nonfunctional Minor: improved performance and memory by using the static Boolean.TRUE and Boolean.FALSE constants instead of parsing the boolean value and passing for auto-boxing
__label__features "HIVE-14513: Enhance custom query feature in LDAP atn to support resultset of ldap groups (Naveen Gangam  via Chaoyu Tang)"
__label__corrective CS-15803: cloudstack 3.0 UI - VPC - fix a bug that root-admin failed to create a VM in a tier that belonged to regular-user or domain-admin.
__label__nonfunctional ISPN-1276 Improve batching and transactional performance after profiling
__label__corrective [JENKINS-14749] Temporarily work around CSS errors by just suppressing the warnings until they can be fixed.
__label__corrective ALLUXIO-2812 Fix some logical problems in ResourcePool
__label__nonfunctional HBASE-1655 Usability improvements to HTablePool
__label__corrective cloudstack 3.0 UI - add network offering - fix a bug that wrongly calculated advanced zones.
__label__corrective secondary storage - fix a bug that newly created secondary storage has duplicate copy.
__label__corrective "add host - fix a bug ""Unable to execute API command listclusterresponse due to invalid value undefined for parameter podid"". (This happened when zonetree is hidden)"
__label__corrective [ALLUXIO-2907] Fix failing tests
__label__nonfunctional SONAR-4907 Enhance readability of search related info in system page
__label__nonfunctional SONAR-3104 Improve the usability of the project 'History' page
__label__nonfunctional Unify UPC-A reader into EAN-13 reader since EAN-13 is a superset and we can take advantage of the commonality to improve performance.
__label__nonfunctional improved beanToArray performance
__label__corrective CLOUDSTACK-2664: Fixed delete query. Added log message when CloudRuntimeException is thrown during upgrade
__label__nonfunctional AVRO-315. Performance improvements to BinaryDecoder
__label__corrective updated templates to fix petstore build error
__label__features "Add ""AndroidPIT"" to featured list [ci skip]"
__label__corrective CLOUDSTACK-5449: fixed pep8 errors
__label__corrective cluster page - Add Host dialog - fix a bug that Join cluster field didn't have right default value (default value should be the cluster that's currently on)
__label__nonfunctional HBASE-16414 Improve performance for RPC encryption with Apache Common
__label__nonfunctional WELD-808 performance improvements
__label__nonfunctional ISPN-1015 - Optimize HotRod client to match Memcached performance
__label__corrective bug 7717: fix the bug that call the wrong fucntion to set netmask
__label__nonfunctional Fixed bug on replication and improved performance.
__label__nonfunctional improved create link performance when the destination field is a @rid
__label__nonfunctional improved parser performance.
__label__corrective "new UI - template page - fix a bug ""id is not found"" after creating a template for all zones and click one of them in middle menu."
__label__unknown Material public member encapsulation. Array of atributes still need to be encapsulated little better.
__label__unknown prevent too much duplicate code beetween Maven2 and Maven3 ProcessFactory
__label__nonfunctional HADOOP-13403. AzureNativeFileSystem rename/delete performance improvements. Contributed by Subramanyam Pattipaka.
__label__corrective Add unittests and fix bugs for UnderStoreBlockInStream
__label__nonfunctional [FIXED JENKINS-25234] Improve readability of the 'schedule build' tooltip
__label__unknown Moved RunScriptData to src/main as there are non test dependencies; Deleted orpah and duplicate file GuestAdditionsInstallation.java (wrong place and duplicated in InstallGuestAdditions.java)  as well as duplicate script installGuestAdditions.sh (duplicated in installModuleAssistantIfNeeded.sh)
__label__unknown Removed duplicated classes.
__label__corrective CLOUDSTACK-8047: UI > zone wizard > add primary storage step: (zone-wide-primary-storage) fix a bug that failed to get cluster's hypervisor value if previous step (e.g. add host step) has ever failed.
__label__nonfunctional "major cleanup work  integration testing and persistence work  event hooks and other improvements"
__label__unknown "fixes #2379  removed duplicate method measuring distnce between a line and a segment"
__label__corrective [FIX JENKINS-22617] Fix path to deletion of VM error log
__label__corrective "Added test cases for BlockId  and fixed bug in BlockId.createBlockId"
__label__features "Implement reading from null safe dereferences

Null safe dereferences make handling null or missing values shorter.
Compare without:
```
if (ctx._source.missing != null && ctx._source.missing.foo != null) {
  ctx._source.foo_length = ctx.source.missing.foo.length()
}
```

To with:
```
Integer length = ctx._source.missing?.foo?.length();
if (length != null) {
  ctx._source.foo_length = length
}
```

Combining this with the as of yet unimplemented elvis operator allows
for very concise defaults for nulls:
```
ctx._source.foo_length = ctx._source.missing?.foo?.length() ?: 0;
```

Since you have to start somewhere  we started with null safe dereferenes.

Anyway  this is a feature borrowed from groovy. Groovy allows writing to
null values like:
```
def v = null
v?.field = 'cat'
```
And the writes are simply ignored. Painless doesn't support this at this
point because it'd be complex to implement and maybe not all that useful.

There is no runtime cost for this feature if it is not used. When it is
used we implement it fairly efficiently  adding a jump rather than a
temporary variable.

This should also work fairly well with doc values."
__label__corrective bug 10496: fixed various problems in scanDirectAgentToLoad code (1) case when loadSize=clusterSize wasn't working 2) Long value comparison was done incorrectly)
__label__unknown remove releaseVersion (duplicated with packageVersion)
__label__nonfunctional Improved performances on KV server.
__label__corrective fix problems after merging in bug fixes from 2.1.x
__label__corrective CLOUDSTACK-995: fix failed to detect centos 6.2
__label__nonfunctional SONAR-7300 Improve readability of RoutesFilter
__label__features added ops to vm and datacenter features to softlayer
__label__features Adding new features to 3.5-SNAPSHOT Reference Manual
__label__corrective [FIXED HUDSON-4118] Fixed a bug in JDK auto-installation to Windows with directories with whitespaces. In 1.318.
__label__corrective [SMALLFIX] Fix failing tests
__label__corrective CLOUDSTACK-7684: Fixed Exception not raised issue in secondary storage limits test suite test_ss_max_limits.py
__label__nonfunctional Test runner usability improvements
__label__nonfunctional [FIXED HUDSON-3254] Use a bigger buffer size to improve remote I/O performance. Will be in 1.302.
__label__features Added a feature to descripte the desired functionality
__label__corrective zonetree - fix a bug that clicking network node didn't refresh middle menu.
__label__unknown [WFLY-4170] : Remove duplicated RBAC tests
__label__nonfunctional "PUB-882: improve auc/cm testing: check that the values are non-null  not just that the fields are present."
__label__nonfunctional serialize DateTime As Long to improve json serde performance (#4038)
__label__unknown Fix possible duplicated JMX registration issue
__label__features pass ansible variable through ansible's environment feature
__label__nonfunctional improve README readability.
__label__unknown Fix bugs and code smells found by sonarqube
__label__nonfunctional HADOOP-14216. Improve Configuration XML Parsing Performance (jeagles)
__label__corrective "bug 11070: cloudStack - delete diskOffering/serviceOffering - fix a bug that an API error showed after account was deleted (""listxxxxxxx&id=N"")"
__label__unknown dead-2570: Fix duplicate resource name field
__label__corrective bug 10737: Fix java.nio.BufferOverflowException in decompression
__label__corrective new UI - domain tree - fix a bug that tree is not expandable after coming back from other pages.
__label__corrective "bug fix in null handling  and bug fix in finding <TEXTAREA>  not just <INPUT>"
__label__features Added new Preferences tab for entry editor preferences. Added preference settings for autocompletion feature.
__label__corrective Temporarely disabing vpc test as some part of it requires failing to the real DB. Will re-enable after fixing the problem
__label__nonfunctional Some small improvements to the permissions events so they are easier to use for plugin devs
__label__features Added feature that allows a Camel header to be used for setting the
__label__corrective "CLOUDSTACK-2842: UI - fix a JS error ""elems is undefined"" when popping up a dialog box that has zone dropdown and there is no zone created yet."
__label__features Adding 'show around' feature
__label__unknown dead-3803: Fix duplicate label causing validation error
__label__corrective bug 10433: fix a bug that was caused by global zone name cache.
__label__corrective CLOUDSTACK-2160: fix bug add a huge size guest network will cause out of memory
__label__corrective "CLOUDSTACK-4459: fix silly bug  one more time"
__label__unknown Corrects check for codesmells selector/case.
__label__corrective additional navigation bug fixes.
__label__corrective [TACHYON-590] Bug fix (return after the for loop)
__label__nonfunctional [JENKINS-35098] Disable AutoBrowserHolder by default to improve the changelog rendering performance (#2371)
__label__nonfunctional BPMSPL-165 - Improve REST query infrastructure and capabilities: delete query maintenance
__label__corrective use maven-hpi-plugin 1.64 that fixes missing Hudson-Version problem
__label__nonfunctional Issue #2901 pool performance was improved up to 255 000 ins/s in benchmark.
__label__nonfunctional "Merge ""JERSEY-2606: ""Monitoring statistics performance improvements"""""
__label__corrective "bug 1443: even adding host failed  return success in api. status 14443: resolved fixed; Reviewed-by: sheng"
__label__corrective "vpn_l2tp: fix variable assignment  fails L2TP VPN"
__label__nonfunctional Improve the http2 reuse connection test
__label__corrective [UI] bug fix: update vm info after add/remove nic
__label__corrective "TextureAtlas  ints didn't fix rounding problem after all. Mind = lost."
__label__nonfunctional AVRO-1260. Ruby: Improve read performance.  Contributed by Martin Kleppmann.
__label__corrective bug 7103: fixed session timeout error handling of all AJAX calls.  You will now properly timeout.
__label__nonfunctional "intern strings from GTFS  for improved memory performance"
__label__unknown Fix Enum model display duplicate description #6072 (#6073)
__label__nonfunctional Use BufferedInputStream to improve tmx loading performance
__label__nonfunctional Improve ConnectionsPool implementation and performance. Patch provided by Laurent QuÃ©rel
__label__nonfunctional Improve graph writing performances by introducing a conditionnal write lock.
__label__nonfunctional improved BigDecimal property performance.
__label__features "HBASE-17624 Address late review of HBASE-6721  rsgroups feature"
__label__corrective [Java][Spring] fix missing import for java.io.IOException (#5501)
__label__corrective [ALLUXIO-2116] gracefully get under storage type and fix checkstyle error
__label__corrective Small bug fix in computing JAVA_HOME
__label__corrective "[FIXED JENKINS-9009] Fixed a bug in handling ' and "" in matrix build"
__label__nonfunctional improved Date/UUID field parse performance.
__label__corrective new UI - domain page - fix a bug that admin.acccounts didn't get refreshed when clicking different domain node that has zero admin account.
__label__unknown "defaultHandler shouldn't be reused across requests  as it encapsulates per-request state."
__label__features added feature TRUNK-2009: Implement TextHandler for Complex Obs
__label__nonfunctional Improved scan performance with configurable pre-fetching
__label__corrective Fixes required for regressions found running automated tests.  (1) method signatures that weren't properly refactored to new API framework (2) API request parameter types should always be specified lest they default to String which may or may not be desired (3) better exception handling with regard to Queued commands and generic exceptions (4) fix eventing to pass the proper accountId where neccessary
__label__nonfunctional Some performance improvements on Jython (especially in the grammar which now uses a CharStream in the same way that PyDev uses it).
__label__corrective Fixing the syntax errors while fixing whitespaces
__label__nonfunctional Merge pull request #759 from pveentjer/fix/3.maintenance/645-log-improvement-for-client-reconnect
__label__features Added the hasImplicitElements feature for use with SailGraph and others which return elements not explicitly created with addVertex or addEdge
__label__features Neighbours features in NodeImpl.
__label__corrective CLOUDSTACK-5457: DBHA features is broken due to RuntimeException thrown from underlying layer. Fixed my catching in ClusterManagerImpl
__label__corrective [FIXED HUDSON-7201] Fixed the malformed HTTP request error recovery behavior in Winstone.
__label__corrective Update Spring Fox dependency version to 2.6.1. This fixes a defect where Swagger and Feign clients do not conflict when registration occurs with Eureka.
__label__features "Draft project pages  project metadata  and RSS feeds

This is an in-progress feature to offer an interface for grouped
repositories.  This may help installations with large numbers of
repositories stay organized.  It also will be part of a future 
more advanced security model."
__label__nonfunctional improve JSON String value writing performance
__label__nonfunctional AVRO-428. Improve file read performance by buffering data
__label__corrective bug 10368: better fix for the db fail problem.
__label__corrective NetworkManager Exception Fix Due to call to getDhcpServiceProvider()
__label__nonfunctional [GSCOLLECT-1169] Enhance performance test logging.
__label__nonfunctional Some performance improvements
__label__corrective CLOUDSTACK-9662: Fix failing iscsi test
__label__nonfunctional Sharded Performance improvement
__label__unknown Remove duplicate code for 'debug' option
__label__nonfunctional JBRULES-1915: Improve process persistence usability
__label__nonfunctional improve performance of waiting for schema agreement
__label__corrective [ALLUXIO-2743] Fix failing integeration tests
__label__nonfunctional TFJ-682 use byte array to improve http upload performance
__label__nonfunctional Improved testing of TcpIpConnection functionality
__label__corrective "AssetManager  fixed up some exception messages."
__label__nonfunctional Buffer or DataInput overflow bug fix + ASCII aware performance improvement for issue #3483
__label__nonfunctional HDFS-8865. Improve quota initialization performance. Contributed by Kihwal Lee.
__label__nonfunctional Some changes that improve readability of the java-calculator artifact.
__label__nonfunctional BroadleafCommerce/QA#1831 - Improve readability of discount percent calculation summation for offer permutations
__label__nonfunctional HDFS-5511. improve CacheManipulator interface to allow better unit testing (cmccabe)
__label__corrective "new UI - domain page - fix a JS bug ""$selectedDomainTreeNode.data(""jsonObj"") is not an object""."
__label__nonfunctional More performance improvements due to less object allocation.
__label__corrective CLOUDSTACK-7691: Fixed 'Exception not raised' issue in test_project_limits.py
__label__nonfunctional Improved performance on browsing of collection while fetching. Reported by Fabrizio Fortino in ML
__label__nonfunctional YARN-6768. Improve performance of yarn api record toString and fromString. Contributed by Jonathan Eagles
__label__nonfunctional "Improve Vector classes even more  and add unit testing."
__label__unknown Fixed build file and also removed duplicate config property
__label__corrective CLOUDSTACK-6602: UI - VPC - createNetworkACL - fix a bug that caused wrong value being passed to action parameter in API call.
__label__corrective "Added more reporting  Fixed bug with setting globals  Added info to README  minor tweaks"
__label__nonfunctional HIVE-14533: improve performance of enforceMaxLength in HiveCharWritable/HiveVarcharWritable (Thomas Friedrich reviewed by Prasanth Jayachandran)
__label__unknown CID-1114591 Replace duplicated functionality with a call to super like the other state classes
__label__nonfunctional CORE-2371 Improve performance
__label__corrective CLOUDSTACK-6316: Fixed component and smoke test failures-third pass
__label__nonfunctional "Slight performance enhancement. No measurable difference using server VM  however."
__label__features "Created an HTML help system  which is hooked up to the Menu/Help button. It also runs automatically the first time a new version of the app is run on a particular device. I wrote up a bunch of pages  which feature great art by Joseph  including a What's New page that we can edit for every release."
__label__nonfunctional CORE-2358 Improve data types for DATABASECHANGELOG and DATABASECHANGELOGLOCK tables for MSSQL. Make it easier for extensions to override the types.
__label__nonfunctional CORE-2985 MSSQL Snapshot performance improvements
__label__corrective CS-14869: Fix KVM fail to apply DNS/ROUTER option of the network
__label__features Add history feature; group some functionality into subpackages
__label__features "Feature: ""Normalize to BibTeX name format"" also removes newlines"
__label__features Install from Module Repository feature does not work under maven+jetty -
__label__unknown removed duplicate test class  fixing code issues found by FindBugs.
__label__nonfunctional finbugs improvement: PERFORMANCE        SIC_INNER_SHOULD_BE_STATIC_ANON
__label__features "index-draft feature


Former-commit-id: 6748e5bff4c0df534a389cb36cf2f88b94b6c34a [formerly e25f6838d3d53aa50d21576ce735f2694072c2e4]
Former-commit-id: 3201fb753e29b59a658cbaf8cdf9fda73a4fce4e"
__label__nonfunctional SONAR-4368 Highly improve performance of the project deletion operation
__label__nonfunctional YARN-7136. Additional Performance Improvement for Resource Profile Feature
__label__nonfunctional Merge pull request #1716 from eminn/improvement/NearCache-maintenance
__label__nonfunctional improve scrolling performances a little
__label__corrective [FIXED HUDSON-4304] Fixed a bug in the init package script by adding --shell /bin/bash. This fix will be in 1.325.
__label__corrective - fixed #899 where Hudson fails to recognize a test failure
__label__corrective "Add system cursors to GWT  fix little error in Lwjgl3Cursor"
__label__corrective ALLUXIO-2112 fix check style errors
__label__unknown bug 14201: delete duplicate guest os type. status 14201: resolved fixed
__label__corrective "gdx-freetype: separated shadowOffset into shadowOffsetX/shadowOffsetY and allow negative values  fixed compilation error"
__label__corrective CLOUDSTACK-2478: Fix test_volumes.py script for BVT failures
__label__features add wait for recvieve to become ready feature to camel producer
__label__corrective bug 9101: cloudStack UI - Edit Instance - fix a bug that HAEnabled dropdown was empty.
__label__features Remove theme switching buttons from features demo. Theme switching is now its own sample.
__label__corrective Host page - fix a bug that caused a javascript error when clicking Add Primary Storage dialog.
__label__nonfunctional "Improved yet performance with huge datasets. When the mmap pool is full  then the channel technique is used. The dramatic slowness of read/write when the mmap pool is exhausted has been fixed."
__label__features add wildfly-clustering-common and wildfly-clustering-service as dependency of feature-pack
__label__corrective [FIXED HUDSON-2373] Fixed <tt>NoSuchMethodError</tt> error during error recovery with Maven 2.1. Will be in 1.330.
__label__nonfunctional Fix for JERSEY-2002: performance improvements
__label__nonfunctional CORE-2371 Improve Oracle snapshot performance
__label__corrective [FIXED JENKINS-13125] Fixed a bug in Content-Range header handling
__label__corrective fix: es6 style of Array inheritance to fix transpiler error (#5977)
__label__corrective crucial bug fix in remote->local copy.
__label__nonfunctional Improve performance of IndexMergerV9  (#3440)
__label__nonfunctional Improved performance of OrientAsynchGraph
__label__corrective devcloud: Fix default template url and deploydb error
__label__features added vertex-component-loader as an experimental feature.
__label__unknown dead Avoid marking IPs already in Allocated as Allocated again. Use row lock to ensure that prev state is either Allocating or Free. This will inturn avoid logging duplicate events
__label__features "Added new feature (Tools -> Scan database... -> Resolve duplicate BibTeX keys) to search for duplicate keys and offer to generate new keys to resolve the duplicates. Works  but needs some more polish."
__label__features change DEFAULT_GENERATE_FEATURE
__label__corrective [FIXED HUDSON-5943] Fixed IllegalStateException due to trying to pass a FilePath around
__label__features Add RateBeer to the featured apps. Scroll 'em too.
__label__nonfunctional Improved performances on serialization by avoiding the creation of Strings for RIDs
__label__nonfunctional "SQL min: fixed bugs introduced by last Adolfo's commit. Improved performances avoiding to have a temporary array in memory  but rather used the iterator"
__label__corrective "[ALLUXIO-2569]carelessly changed the head of file  result in Test failed. Already fixed  pls test again"
__label__corrective [TACHYON-623] Add a new JCA provider which registers the PlainSaslServerFacroty to create instances of PlainSaslServer -- fixed the failed unit test
__label__unknown Renaming some port constants and removing duplicate unnamed constants.
__label__features HBASE-11423 Visibility label and per cell ACL feature not working with HTable#mutateRow() and MultiRowMutationEndpoint. (Anoop)
__label__unknown "remove duplicate code frame  looks like a merge issue"
__label__corrective CLOUDSTACK-2303: fix upgrade failed from 2.2.14 to 4.1.0 for systemvm changes
__label__unknown bug fixed for duplicate getUpdateCount
__label__features support feature: OrderedField
__label__nonfunctional ISPN-1015 - Optimize HotRod client to match Memcached performance
__label__corrective "cloudStack UI - Secondary Storage page - fix a bug ""secondRowText is not defined""."
__label__features "Allow plugins to register pre-configured tokenizers (#24751)

Allows plugins to register pre-configured tokenizers. Much
of the decisions are the same as those in #24223  #24572 
and #24223. This only migrates the lowercase tokenizer but
I figure that is a good start because it proves out the features."
__label__corrective "It's not obvious to me if the race condition could ever occur  but Rama and I experienced a very suspicious failure once  and we are hoping that this would fix it."
__label__unknown remove duplicate email title findbugs
__label__nonfunctional HADOOP-6467. Improve the performance on HarFileSystem.listStatus(..).  Contributed by mahadev
__label__features new feature TRUNK-1995 Regimens tab should provide ordering of drug regimen;
__label__corrective Cloudstack-2644 [Multiple_IP_Ranges] user data service on VR does not work in case of multiple subnets Cloudstack-2953 [Multiple_IP_Ranges] VM does not get the public key from VR incase of multiple subnets per vlan Also removed some unused code and fixed the an error in the dnsmasq config function
__label__corrective CLOUDSTACK-7865: fixed pep8 errors and errors in wrong references
__label__corrective bug 8485: Merge from 2.2.x. Fixed ClassCastException with returning the login response in xml format
__label__corrective "CLOUDSTACK-8040: UI: register template dialog  register ISO dialog - fix a bug that hidden fields fail to be generated before cloudStack.preFilter.createTemplate() is called. Thus  cloudStack.preFilter.createTemplate() is unable to change hidden fields's css display property from none to inline-block for admin users."
__label__corrective [JENKINS-32852] Fixed possible ArrayIndexOutOfBoundsException in RangeSet.fromString()
__label__nonfunctional Improve performance for formatted SQL files.
__label__features [WFLY-7045] Correct supplement includes ordering for Elytron configuration in the EJB3 subsystem and update feature pack subsystems template with upstream changes to default template.
__label__corrective "vpn_l2tp: fix variable assignment  fails L2TP VPN"
__label__nonfunctional ACT-1202: Improved readability of test cases and retrigger Hudson
__label__nonfunctional Made logger static to improve performance. Fixed logger name.
__label__nonfunctional Improved performance debugging
__label__corrective CLOUDSTACK-6279: Fix egress rules tests failed due to comparison between string and unicode
__label__unknown Remove duplicate bean for ApiRateLimitServiceImpl to make sure that only
__label__corrective bug 10406: fixed concurrency problem happening during Agent Transfer Monitor task
__label__nonfunctional went through and optimized function implementations with finals and reuse of parameters.size().
__label__nonfunctional More runtime performance improvements
__label__nonfunctional Improve replication performance and memory usage.
__label__corrective Merging 2.1.8 fix to master : Bug 8801 - reserve some space for snapshots
__label__features "[WFLY-1158] adding ""remove vault entry"" feature for default vault impl."
__label__corrective Redundant router: Fix wrong log attend to keepalived.log
__label__unknown removed duplicated undeploy  fixing code issues found by FindBugs.
__label__nonfunctional DATAMONGO-682 - Performance improvement for mapping hotspots.
__label__nonfunctional WFLY-7389 Improve undefined statistics-enabled attribute testing in infinispan subsystem for EAP 6.2
__label__features Ensure that resolveDependencyJar works for NetBeans compile-on-save (and possibly other IDE‰Ûªs similar features) even when plugin dependencies are snapshots (possibly in the reactor).
__label__unknown remove duplicated VPC router in return value of functions in DomainRouterDaoImpl
__label__corrective vagrant deploy: various bug fixes.
__label__corrective CLOUDSTACK-9584: Fix intermittent test failure in `test_volumes`
__label__nonfunctional "Move executor code into PermissionBackend  optimize performance of FileBackend a bit"
__label__nonfunctional HADOOP-7333. Performance improvement in PureJavaCrc32. Contributed by Eric Caspole.
__label__unknown Remove duplicated jsRoutes
__label__features new feature: click on a additional field's value to automatically search for it in a quickfilter #WEBINTERFACE-30
__label__corrective api: Fix test failure in cloud-server
__label__nonfunctional Fixed a bug on reusing of graph instance in thread local. Improved performance by avoiding creating a new Graph+DB instance in the case the kind of graph doesn't really matter (idempotent functions)
__label__corrective [TACHYON-1520] Fix failing integration tests
__label__features Make preview feature more generic
__label__features Updated the new features and enhancements for the 3.6 EA package.
__label__features "[HUDSON-3889] In 1.325  I added a ping support so that the master detects dead connections more rapidly. This feature is off by default  until we feel comfortable enough that this feature works correctly."
__label__corrective "picked up a bug fix in <copyStream> tag  which had a truncation bug"
__label__nonfunctional Distributed: improved performance
__label__nonfunctional improved serilaze performance
__label__nonfunctional Partial search query performance was improved.
__label__features [WFLY-6779] added WISE feature code
__label__nonfunctional TypeSafeBeanResolver performance and memory usage improvement
__label__corrective CLOUDSTACK-8161: fixed few more wrong references
__label__corrective "added a fix for #1061. The only problematic spot was the api.mustache file  although if more parameterized templates were to evolve in the other mustache files we could definitely add {{localVariablePrefix}} to those.  For now I didn't want to add any extra noise to the template files which didn't need the prefixes."
__label__nonfunctional Input stream with range query to improve close performance when block is read.
__label__nonfunctional Finish testing CassandraClientPoolStoreImpl and improved JMX
__label__nonfunctional HBASE-10791 Add integration test to demonstrate performance improvement
__label__corrective "cloudstack 3.0 UI - fix a JS error ""str.replace is undefined""."
__label__corrective "Revert fail Fix OSX cannot get to VPN due to wrongly declaim ENCAPSULATION_MODE_UDP_TRANSPORT_RFC"" invalid setting"
__label__nonfunctional SONAR-4529 Add index on created_at column of notifications table to improve notifications performance
__label__nonfunctional HIVE-5951 : improve performance of adding partitions from client (Sergey Shelukhin via Ashutosh Chauhan)
__label__nonfunctional SONAR-5868 Improve performances of fs indexation
__label__unknown dead-7828.Avoid marking IPs already in Allocated as Allocated again. Use row lock to ensure that prev state is either Allocating or Free. This will inturn avoid logging duplicate events
__label__features Generalized the 'protected' create feature so that it works for all modes.
__label__unknown Remove Headless.java. Duplicate of HeadlessSocket
__label__unknown Migrated BerkeleyJe based integration test into respective index backend modules. Removed duplicate MAX_RESULT_SET_SIZE configuration option from SolrIndex.
__label__nonfunctional HDFS-11742. Improve balancer usability after HDFS-8818. Contributed by Kihwal Lee
__label__nonfunctional Improve performance when selecting against multiple roots
__label__nonfunctional ISPN-1015 - Optimize HotRod client to match Memcached performance
__label__nonfunctional ROO-232: Modification of Roo commands to enhance usability and consistency between add-ons
__label__corrective "cloudstack 3.0 UI - network page - LB listing - VM listing - VM name - no need to choose between id  displayname  name property in VM object. Always use displayname property in VM object. This also fixes a bug that VM name did not show right after an VM was assigned to a LB rule."
__label__corrective CLOUDSTACK-4189: UI > Infrastructure > zone > dedicatedZone object is different from zone object. Fix a bug that they were wrongly presumed to be the same object and wrongly mixed which caused zone object's properties being wrongly overriden.
__label__corrective "bug 6870: during updating of pf rules  it is possible one might try to update a non existing rule via the api cmd. hitherto  we were returning a null which was assumed as a success by the cmd api  which failed with a npe. instead  we ought to throw back an error since we did not find any rule to be updated. i am checking in the same change. this also will fix the npe."
__label__features servlet-feature-pack-licenses.xml - fill in license info
__label__corrective "cloudstack 3.0 UI - autoscale - existing LB - configure AutoScale - fix a JS bug ""otherdeployparams is undefined""."
__label__corrective CLOUDSTACK-5413: Fixed bug CLOUDSTACK-5413
__label__unknown "Add version selection  fix duplicate dependency  remove android dependency"
__label__nonfunctional improved testing for synthetic equations/data to expected GLM result/compare
__label__nonfunctional CORE-2528 Oracle: improve unique constraint snapshot query performance
__label__corrective Better handled or fixed identified problematic parts of the code.
__label__features Create a VisualizationAPI for exposing common features like select. Use Lookup for implemeting VisualizationController.
__label__unknown Merge pull request #1535 from maginatics/remove-duplicate-utils-getters
__label__nonfunctional performance improvements on server for client protocol
__label__unknown Duplicated Logic in Called Method (#923)
__label__features Add a few more uses-features that describe the app better
__label__nonfunctional "Caches: improve HardRef cache performance  make it JIT friendly"
__label__corrective new UI - ip address page - fix a bug that highlight in middle menu doesn't work after acquiring new IP.
__label__nonfunctional improve sql parser performance
__label__nonfunctional expanding the contract to improve the usability of LabelAssignmentAction
__label__features [Bleeding] Add SpawnReasons to cover new Minecraft features.
__label__corrective listView: Fix 'addRow' event being triggered under wrong scope
__label__nonfunctional CLOUDSTACK-9428: Fix for CLOUDSTACK-9211 - Improve performance
__label__nonfunctional improve serialize performance
__label__corrective fix problems after merging in bug fixes from 2.1.x
__label__corrective "bug 10094: The problem was we added code that won't add any more ha work items if it already has one.  However  that is wrong.  HA Manager stores the existing snapshot of the VM state machine.  Before working on HA for a VM  it checks to see if that snapshot has been changed.  So by not scheduling HA work  we've effectively made HA not work under multi-failure situations.  I've fixed by removing that code and instead at the time of performing HA  do a quick check to see if there are pwork underway for the same VM and work scheduled in the future for that VM.  If there are work scheduled in the future  then we simply cancel the current work.  If there are already work underway  then we retry again in 1 minute."
__label__corrective pax-britannica: Fix Ship collisionCenter calculation position error.
__label__corrective [ts-node] Fixed html escape bug in serialize/deserialize (#6043)
__label__corrective [ALLUXIO-2977] Fix failing tests
__label__unknown Fail the build on duplicate resources or classes on the classpath
__label__corrective CLOUDSTACK-7826: UI - dialog widget - dependent dropdown field (dependsOn property specified) - fix a bug that default opton in dependent dropdown field didn't trigger change event handler until another option in dependent dropdown field was selected.
__label__corrective "bug 6922: related UI change after bug 7101 is fixed (""Bug 7101 - DetachISO API and AttachISO API should return an embedded object of virtualmachine  not an embedded object of ISO"")"
__label__nonfunctional TopN performance improvements
__label__nonfunctional SONAR-5718 Improve readability of issues list
__label__features Add feature to set default profile name via system property for ProfileCredentialsProvider
__label__corrective CLOUDSTACK-4830: fix build error
__label__nonfunctional CORE-2321 Improve robustness and readability
__label__corrective CLOUDSTACK-8047: UI > zone wizard > add primary storage step: (zone-wide-primary-storage) fix a bug that failed to get cluster's hypervisor value if previous step (e.g. add host step) has ever failed.
__label__corrective CLOUDSTACK-2569: UI > Infrastructure > zone > physical network > VNMC provider > fix a bug that queryAsyncJobResult API kept being called even after the async job was finished.
__label__features "Added more GUI implimentation  and a super basic login screen"
__label__features pushing down the dependency change set feature.
__label__nonfunctional [ISPN-169] (Improve the performance of Fqns by backing with an immutable array rather than a list)
__label__nonfunctional Improve performance of Persistit adapter for Titan
__label__nonfunctional [DROOLS-875] optimize KieSession creation performances
__label__nonfunctional HBASE-8768 Improve bulk load performance by moving key value construction from map phase to reduce phase (Rajeshbabu)
__label__features recording when this feature was added
__label__nonfunctional improve TypeUtils performance
__label__nonfunctional improve SFSBXPCMap performance
__label__nonfunctional Improved performance of write queue processing during timeouts
__label__corrective CLOUDSTACK-4314: fix dir error in ProcessUtil.pidCheck and Revert commit 9375aa9467c3855f28c6753d1eb4932a6f1a0e6f
__label__corrective [FIXED HUDSON-4245] Fixed a bug in the tabular display of a matrix. Will be in 1.323.
__label__unknown remove duplicate code plus small optimisation findbugs
__label__nonfunctional Oracle snapshot unique constraint performance improvements and better multi-schema support
__label__nonfunctional "Improved support for concurrent testing in PerformanceTest. Also more fiddling measuring performance metrics for DateService  without getting any reliable results"
__label__features Added transform.feature and TransformSteps
__label__features revised links approach for deltacloud so that we can determine which features a collection supports
__label__nonfunctional "bug 5147: Improvements after testing the storage maintenance across multiple sp's  with sys vms scattered across multiple sps"
__label__features Update featured app icons.
__label__corrective Moved the check-style.xml into the tools directory given that we're not using the project to reference the style any longer.  Fixed problems with eclipse complaining about copy-dependencies
__label__corrective CLOUDSTACK-9299: Fix test failures on CI
__label__nonfunctional Merge pull request #700 from pveentjer/improvement/3-maintenance/memory-monitor
__label__features "Set available processors for Netty

Netty uses the number of processors for sizing various resources (e.g. 
thread pools  buffer pools  etc.). However  it uses the runtime number
of available processors which might not match the configured number of
processors as set in Elasticsearch to limit the number of threads (for
example  in Docker containers). A new feature was added to Netty that
enables configuring the number of processors Netty should see for sizing
this various resources. This commit takes advantage of this feature to
set this number of available processors to be equal to the configured
number of processors set in Elasticsearch.

Relates #24420"
__label__nonfunctional attempting to improve performance
__label__corrective [TACHYON-1043] Fix a bug in IsolatedTachyonFileSystemIntegrationTest
__label__nonfunctional HBASE-3610 : Improve RegionSplitter performance
__label__corrective StaticRoleBasedAPIAccessChecker: Fix acl cfg processing error messages
__label__corrective new UI - resources page - fix a bug that StartVM/StopVM/RebootVM/DestroyVM button didn't disappear when clicking instance page then clicking zone/pod/systemVM/cluster node in left navigation.
__label__features "Add highlighting support for suggester.

This commit adds general highlighting support to the suggest feature.
The only implementation that implements this functionality at this
point is the phrase suggester.
The API supports a 'pre_tag' and a 'post_tag' that are used
to wrap suggested parts of the given user input changed by the
suggester.

Closes #3442"
__label__unknown maven: Remove duplicate cloud-core dependency in server
__label__nonfunctional AVRO-1282. Java: Use sun.misc.Unsafe to improve Reflect API Performance.
__label__unknown "Alphebetical order for keys  remove one duplicate key"
__label__corrective [FIXED JENKINS-30569] HistoryWidget: fix JS syntax error
__label__corrective [SMALLFIX] fixed some problems for adding javadoc for FileSystemRenameIntegrationTest.java
__label__unknown Duplicate conditional and body in VirtualSystemSettingDataHandler.java
__label__nonfunctional improved performance tests
__label__nonfunctional Improve testability and coverage by UTs
__label__features #2158 Add a completion-aware feature to handle a group of multiple writes overe AtmosphereResponse
__label__features HBASE-4272. Add -metaonly flag to hbck feature to only inspect and try to repair META and ROOT.
__label__nonfunctional Improved again performance of OGraphDatabase
__label__nonfunctional Added a small benchmark test with a small performance improvement
__label__corrective CLOUDSTACK-6856 : Fixed few data corruption and retries issues for failing cases
__label__nonfunctional "added GC calls  which improves the performance a bit."
__label__corrective "Invalid UI - VPC - site-to-site VPN - VPN fails - fix a JS error ""elems is undefined"" when clicking Create VPN Connection."
__label__features "BZ1158818 Add ""reminder"" feature"
__label__nonfunctional #1462 - Implement functionality to process Product batches for improved Solr indexing performance
__label__corrective CLOUDSTACK-6789: UI > User page > fix a bug that a domain-admin was unable to delete other domain-admin in the same domain.
__label__nonfunctional CORE-2985 MSSQL Snapshot performance improvements
__label__nonfunctional Performance improvement to WeldResourceLoader
__label__features Bumping next version b/c of new feature.
__label__unknown Rename some classe. Smell code. Classes must not starting with lowercase.
__label__corrective "new UI - Snapshot page - fix a bug that JS error ""$midmenuItem1 is null or not an object ""  ""jsonObj is null or not an object"" when switching between tabs on an empty page."
__label__nonfunctional Optimize memory management and performance for graph rendering in Studio
__label__corrective new UI - volume page - fix a bug that device ID column doesn't get refreshed correctly when clicking between different volumes.
__label__nonfunctional Improved performance on indexing.
__label__nonfunctional Improve readability of Jenkins.getTarget()
__label__nonfunctional Enhance VR performance by selectively executing tasks instead of brute-forcing
__label__corrective "[TACHYON-1092] Fix failing tests  ufs address was set twice differently"
__label__corrective adding a test case and fixed off-by-one bug
__label__unknown deprecate getClusterName. It's a duplicate of describeClusterName
__label__corrective [ALLUXIO-2743] Fix failing tests
__label__corrective bug 14110: Fix error message
__label__corrective "Remove emulated IOException  use GWT's emulation. Fix #4007"
__label__features HBASE-11452 add getUserPermission feature in AccessControlClient as client API (Demai Ni)
__label__nonfunctional Updated async executor documentation. Improved readability and corrected typos.
__label__corrective CLOUDSTACK-7000: Fix bugs in ListSnapshotPolicy and updateSnapshotPolicy command
__label__nonfunctional optimized for encode performance
__label__corrective [ALLUXIO-2047] Fix failed tests
__label__nonfunctional SONAR-3537 Improve performances of the treemap filter
__label__corrective [FIXED JENKINS-10036] Fix jelly to groovy conversion error in Ant config.
__label__nonfunctional "Fixed most of synchronization problems with topics/queues  improved performance and increase concurrency (no more thread pool!)  supported hot-cfg of servers in configuration file  always use node name rather than id"
__label__nonfunctional SONAR-5820 Improve performance
__label__corrective "CLOUDSTACK-5492: UI > Routers > Group by zone/pod/cluster/account > (1) fix a bug that requiresUpgrade wrongly showed""No"" when it should show ""Yes""."
__label__nonfunctional Initial work on client performance improvement fix
__label__corrective "IP Address page - fix a bug ""networkObj.service[6].capability is undefined"""
__label__corrective 1) Fix build problem caused by alex's Refactoring
__label__nonfunctional "major integration testing work  improvements in Spring wiring  other improvements"
__label__nonfunctional CORE-2528 Oracle: improve unique constraint snapshot query performance
__label__nonfunctional Improve re-usability of createIndex() method in Indices
__label__nonfunctional Improve file hashing performance
__label__nonfunctional "Made logger static to improve performance. Fixed logger name  back port #749"
__label__features add apache taglibs as dependency of feature-pack
__label__corrective [SMALLFIX] Fixed build error
__label__corrective Modified pull421 to fix failed unit tests.xs
__label__features Big rename and more pointcut features in UI
__label__corrective CLOUDSTACK-3715. Fix import error.
__label__nonfunctional Unsafe byte array comparator performance was improved
__label__unknown merged duplicate code branches
__label__corrective [TACHYON-1675] Fix a ssh problem when deploying EC2 with Vagrant .
__label__nonfunctional "Performance improvement as suggested by md_5  thanks."
__label__features Remove LDAP feature support
__label__corrective bug 12571: fixed error message in createSnapshotPolicy
__label__nonfunctional improved ParameterizedOutputVisitorUtils performance.
__label__corrective "cli: fix autocompletion binding bug  make all params lowercase"
__label__features made BellyStepdefs sideffect-free so that they don't need @Dirty annotation and do not clash with dirtyCukes.feature
__label__features "Remove slow  mostly unuseful feature"
__label__corrective Correct documentation for loadufs and fix bug when loading local underfs.
__label__nonfunctional ISPN-1015 - Optimize HotRod client to match Memcached performance
__label__nonfunctional improve contact loading and display performance
__label__features Added unsupported features for C# Client doc.
__label__corrective CLOUDSTACK-6810: Fix storage migration of a vm with volume on local was failing. When a plan
__label__nonfunctional Improved WebDriver example that shows how to reuse a driver for the entire JVM. Another case against #295
__label__nonfunctional Shift initial initialization to AsyncPlayerPreLoginEvent. May improve performance on login
__label__unknown Remove duplicate Nullable import
__label__corrective [FIXED JENKINS-9637] Fixed the 404 when clicking the testResult on the Project Page when there is only an aggregated test result for a freestyle job. The name of the link is still wrong.
__label__nonfunctional YARN-6682. Improve performance of AssignmentInformation datastructures. Contributed by Daryn Sharp.
__label__corrective "cloudStack - Elastic Load Balancer - fix a server-side bug ""unhandled exception executing api command: listLoadBalancerRules"""
__label__unknown [SMALLFIX] Removed duplicate JUnit dependency
__label__corrective "new UI - instance page - change service action - fix a bug that the dropdown is blank first  then populated with value."
__label__corrective "List:  added ability to select 'nothing'  and ability to disable item selection (+ bug/defect fix)"
__label__corrective [FIXED HUDSON-1261] Bundling the patched activation.jar that fixes the ClassCastException problem.
__label__corrective "This is a quick fix to attempt to resolve most of the travis failures Most of the failures have been due to transient network failures  that are causing dependency artifact downloads to fail Maven does not have a way to retry this without restarting the
 whole build  so the mvn dependency plugin is the best bet Unfortunately  running a dependency:resolve on the project returns yet to be compiled dependencies  and causes it to fail... There is an option to excludeGroupIds and excludeArtifactIds in the
 docs for this goal  but unfortunately they don't seem to work This drafts a dummy pom in a quick and dirty way  just to download all the deps in one go  while retrying for RETRY_COUNT times if it fails"
__label__nonfunctional Improved performance on query against not-unique indexes
__label__corrective bug 5482: Fixed malformed JSON when an error is returned by the API call.  Also fixed the UI to make use of the new JSON object.
__label__nonfunctional SONAR-1928 Improve performances by splitting the SQL query in 2
__label__corrective Added ObjectAL hack for fixing audio problems that happen sometimes.
__label__corrective CLOUDSTACK-8344: Fixed SSH failures in test_haproxy.py test suite
__label__nonfunctional Improved minimap performance dealing with large files.
__label__nonfunctional Minor performance improvements to HybridBinarizer (#762)
__label__features "bump to lucene 3.2 and use new feature to return numeric fields as numbers  not strings."
__label__nonfunctional "Cache result of hash code to enhance performance "
__label__corrective [PHP] Fix #5338: InvalidArgumentException (#6685)
__label__corrective Comment about folder suffix and fix style error
__label__corrective cloudStack 3.0 new UI - zone chart - public network - IP range tab - fix a bug that VLAN value didn't show.
__label__corrective "added missing apiresponse.go  renamed petapi_test.go  fixed compilation error"
__label__nonfunctional JBRULES-1915: Improve process persistence usability
__label__corrective "new UI - host page - fix a bug ""id is not found"" when clicking Add Host button."
__label__corrective Removed 'BugId' tag from tests for fixed bugs
__label__features Remove LDAP and Validation objects - (removing these features)
__label__unknown get rid of duplicate lines
__label__features ACT-4177 : Secure scripting feature : support for execution- and tasklisteners with secure scripting
__label__corrective "Closes #2798  ShaderProgram#setUniform supposed to throw an exception in case the program isn't bound. However  this may have side effects in existing code and add additional runtime overhead. Fixed the Javadocs to say that the program must be bound instead."
__label__nonfunctional Improved MVRB-Tree search algorithm by reusing last search. This is really useful on indexing because the put() reuses the entry node found by the previous search.
__label__features Since this is a feature it has been moved to the titan0.1 branch.
__label__corrective [UI] fix bug: Cannot delete SSH keypairs in projects
__label__corrective "clean up ruby sample  remove commented code  bug fix"
__label__nonfunctional Improves performance of PartitionView.getReplicaAddress
__label__unknown [Objc] Remove interface method duplicate
__label__corrective "new Advanced Search - fix a bug that advanced search dialog didn't appear when clicking the same type of submenu (e.g. ""my accounts""  ""all accounts"")."
__label__features "Made 'unique statements' behavior the default in GraphSail  as reasoners are less efficient without that feature."
__label__nonfunctional "Small tweaks to streamline performance and code  and changed row search pattern to search more broadly more quickly  which seems to slightly improve decode performance"
__label__corrective "While debugging the subversion plugin  I discovered that hpl file can be ignored by the bundled hpi file. Fixed that problem."
__label__features "Added help button and help file for OpenOffice integration. Started adapting the help file from the plugin web page  to fit the new integrated feature."
__label__corrective bug 7822: fixing the storage maintenance failures centered around domr stop/start
__label__nonfunctional Revert: performance improvements
__label__nonfunctional HIVE-756. Performance improvement for RCFile and ColumnarSerDe in Hive. (Ning Zhang via zshao)
__label__corrective [ALLUXIO-2426] Fix failing tests
__label__nonfunctional SONAR-3825 improve performance of SQL request
__label__nonfunctional Finish testing CassandraClientPoolStoreImpl and improved JMX
__label__features [WFLY-6201] Add the other-server-group configuration to the servlet-feature-pack template.
__label__corrective new UI - fix a bug - clicking IP address on left menu didn't work.
__label__nonfunctional "Re-name and slightly restructure much of the processor code  so that it is more obious what the pieces are. This is intended to improve future maintenance."
__label__nonfunctional Improve node buffer utilization readability
__label__nonfunctional Sonar Channel : Slightly improve the readability of the source code in charge to increment the line number
__label__features removed GraphJungLoader/Helper work as it will not be a feature.
__label__corrective Misc. fixes for error handling:
__label__corrective [ALLUXIO-2691] Fix failing tests
__label__features update code. Finished Towny implimentation
__label__corrective Fix CLOUDSTACK-936: fix nonoss build due to CloudException IdentityProxy
__label__nonfunctional Distributed: improved performance in case of tx and commands
__label__corrective "[HUDSON-5827  HUDSON-5756] This approach fixes both bugs in one fell swoop"
__label__nonfunctional Improved performance on iteration
__label__corrective bug 10737: Fix java.nio.BufferOverflowException in decompression
__label__corrective CLOUDSTACK-6316: Fixed component and smoke test failures for wrong references
__label__corrective - CLOUDSTACK-3229: Fixes a syntax error in s3xen
__label__nonfunctional improved beanToArray performance.
__label__corrective "not sure if this is needed  but it might help fix the bug that I'm seeing."
__label__unknown Removed duplicated $BIN under bin/tachyon-mount.sh and placed $BIN variable on sudo elevation
__label__nonfunctional Improved mmap management when the buffer pool is full. Now performance with millions of writes and random searches are really good. Further work on this in the next days.
__label__features "Make `index` in TermsLookup mandatory (#25753)

This change removes the leniency of having a `null` index to fetch
terms from in 6.0 onwards. This feature will be deprecated in the 5.x series
and 6.0 nodes will require the index to be set.

Closes #25750"
__label__corrective #4532 AL_DIRECT_CHANNELS_SOFT fixes narrow stereo channel problem with music
__label__nonfunctional "improved performance on vertex/edge type check  issue #4105"
__label__nonfunctional HBASE-1276 Part of '[testing] Upgrade to JUnit 4.x and use @BeforeClass annotations to optimize tests'
__label__corrective CLOUDSTACK-6316: fixes for bvt failures
__label__corrective CLOUDSTACK-9789: Fix releasing secondary guest IP fails with associated static nat which is actually not used
__label__features Make more of cucumber-features pass. Rename Table to DataTable. #45.
__label__corrective CLOUDSTACK-6893: fix enum ValueOf issue which causes systemvm fail to start
__label__corrective "set default gateway always on eth2  to fix the bug that system vm is not pingable  if public network and"
__label__nonfunctional Merge pull request #416 from jmxtrans/improve-testing-of-cloudwatch-writer
__label__features "Timestamp is now automatically updated on a change of an entry (feature 799).
 * Field update notification is now also localized"
__label__unknown Remove duplicate tests for stopped_vm
__label__features Demonstrate Spring 3.2 features
__label__unknown Remove duplicate code by using RECURSIVE_OPTION. Fix minor formatting.
__label__nonfunctional Performance improvement: save all colums per table instead of re-querying for each column
__label__nonfunctional improved performance limiting the read and write on queues and
__label__nonfunctional "MAHOUT-767 Improve RowSimilarityJob performance  fixed typos"
__label__unknown HBASE-16270 Handle duplicate clearing of snapshot in region replicas (Robert Yokota)
__label__corrective [ALLUXIO-2743] Fix failing tests
__label__features Added StoreFeatures option supportsMultiQuery so that backends can indicate whether they can efficiently execute (i.e. bundle) multiQueries.
__label__nonfunctional CLOUDSTACK-10053: Performance improvement: caching of NuageVsp ID
__label__corrective "new UI - list instance of load balancer rule - fix a bug (""privateip is not found"") caused by API refactor."
__label__features adding web & full feature packs and server provisioning
__label__nonfunctional "YARN-4360. Improve GreedyReservationAgent to support ""early"" allocations  and performance improvements (curino via asuresh)"
__label__unknown bug 10866: Putting additional unique indexs on firewall_rules_cidrs to prevent duplicate rules.
__label__nonfunctional Improve readability of closing protocol and websocket message
__label__corrective "new UI - volume page - fix a bug ""object is not found"" when creating volume fails."
__label__corrective CLOUDSTACK-274: fix duplicate error code.
__label__nonfunctional Improved readability of code for IMap.values() and IMap.values(Predicate) for Hazelcast members. Removed warnings in MapPredicateTest.java
__label__features added feature which allows to quickfilter and define streamrules with a
__label__corrective CLOUDSTACK-5449: fix the log creation failure case and added an option
__label__corrective "volume-upload: UI > dialog widget - args.form.fileUpload.postUpload - fix a bug that loading image (spinning wheel  freezing screen) does not disappear after action succeeds/fails."
__label__corrective [FIXED HUDSON-1815] Fixed NumberFormatException for variants where the build number was non-numeric
__label__unknown Fix for #610 [websocket] WebSocket class must be re-written to support AtmosphereInterceptorWriter. Also refactored WebSocket support to avoid duplicated code all over the place
__label__features Added Back Pressure to the New Features section.
__label__unknown removed call to duplicate from within stringSerializer to match behaviour given the rest of the serializers
__label__corrective [ALLUXIO-1895] Fix failing unit tests InodeDirectoryTest.permissionStatusTest
__label__corrective CLOUDSTACK-6805: UI > create account > fix a bug that account creation failed when password contains # character.
__label__corrective CLOUDSTACK-7897 : Fixed the script test_reset_ssh_keypair.py - Test Cases failing on Simulator as Testcases try to ssh to the VMs
__label__corrective "[FIXED HUDSON-5267] in 1.342. I also gave you a commit access  so that we won't be blocking you for bug fixes like this."
__label__features "Improvement to push-to-vim feature  courtesy of Stephan Rave"
__label__unknown interface for deleting duplicates
__label__nonfunctional Improve performance of jacoco on sonar-server
__label__features Brought up to date with 4.4 features
__label__nonfunctional Improved performance to retrieve fields from documents
__label__unknown Remove duplicated javadoc param in lineage.
__label__unknown gdx-box2d: removed duplicate fixture.setUserData
__label__corrective CLOUDSTACK-9565: Fix intermittent failure in test_oobm_zchange_password
__label__features Add feature to list all the pinned files
__label__nonfunctional WELD-864 minor performance improvement
__label__corrective [FIXED HUDSON-5210] fixed this problem in Hudson that doesn't require any configuration change in Jetty.
__label__nonfunctional Improved performance on browsing of collection while fetching. Reported by Fabrizio Fortino in ML
__label__corrective new UI - load balancer page - fix a bug that new template was attched to wrong grid.
__label__nonfunctional CORE-2371 Improve Oracle snapshot performance
__label__corrective Windows path problem fixed (again) - #268 #269
__label__corrective Going back to Ant 1.6.5 to fix the problem reported in
__label__features feature for saving complexobs data while saving encounter
__label__features depends on stapler 1.26 for features that take advantage of Java5
__label__features Major part to make this feature happen
__label__corrective "CLOUDSTACK-5762: VM wizard  custom compute offering: Fix error label"
__label__nonfunctional added a stacktraceLayout and improved testing of stacktrace message lines
__label__nonfunctional ROO-410: Improve readability of message resources managed by Roo
__label__unknown avoid getting jelly/jexl duplicates
__label__corrective bug 13540: Fix release ip fail to clean up iptables rules
__label__corrective "Revert ""CLOUDSTACK-7762 -[Automation] - Fix test failure for test_02_revert_vm_snapshots in smoke/test_vm_snapshots.py"""
__label__features Add enablement feature for save actions
__label__features "Added some debugging features to the M3 Android client. You can now press 'C' to capture a photo  'U' to decode only UPC/1D barcodes  and 'Q' to decode only QR Codes."
__label__nonfunctional get indy working again. looks like performance has improved since jdk 7u4.
__label__corrective regen test code for petstore csharp and fix test errors
__label__corrective [TACHYON-1463] Fix a failing unit tests
__label__features "Add feature ""allowing user to control the order of fields in saved
database""."
__label__features HBASE-13863 Multi-wal feature breaks reported number and size of HLogs (Abhilash)
__label__nonfunctional "Performance tuning  improve workaround for bukkit scheduler bugs"
__label__corrective bug 11675: fixed error messages
__label__corrective SelectBox: maxListCount off-by-one bug quick fix
__label__unknown bug 10790: cloudStack - volume page - Hide Storage for normal user. Show storage for root admin and domain admin.
__label__corrective CLOUDSTACK-7684: Fixed Exception not raised issue in secondary storage limits test suite test_ss_max_limits.py
__label__nonfunctional Improved performance on iteration
__label__unknown [WFLY-5403] Remove duplicated naming-client module
__label__features Add the Duplicate Workspace feature from the Edit menu
__label__features "Reindex from remote

This adds a remote option to reindex that looks like

```
curl -POST 'localhost:9200/_reindex?pretty' -d'{
  ""source"": {
    ""remote"": {
      ""host"": ""http://otherhost:9200""
    } 
    ""index"": ""target"" 
    ""query"": {
      ""match"": {
        ""foo"": ""bar""
      }
    }
  } 
  ""dest"": {
    ""index"": ""target""
  }
}'
```

This reindex has all of the features of local reindex:
* Using queries to filter what is copied
* Retry on rejection
* Throttle/rethottle
The big advantage of this version is that it goes over the HTTP API
which can be made backwards compatible.

Some things are different:

The query field is sent directly to the other node rather than parsed
on the coordinating node. This should allow it to support constructs
that are invalid on the coordinating node but are valid on the target
node. Mostly  that means old syntax."
__label__unknown removed duplicate dependency; specify powermock version only once in parent POM
__label__corrective change local FS underfsAddress to /; fix a bug in excluding prefix-matching paths
__label__corrective CLOUDSTACK-9711: Fixed error reporting while adding vpn user
__label__features "Initial commit for Module to compute metrics on queries

This is an initial squashed commit of the work on a new feature for query metrics
proposed in #18798."
__label__corrective "CLOUDSTACK-7435: UI > instance page > assign instance to another account > fix an error ""TypeError: json.virtualmachine is undefined [Break On This Error] var item = json.virtualmachine.virtualmachine;"" that showed after the action is clicked."
__label__corrective Better way to fix the test failure.
__label__unknown Merge pull request #3798 from mateuszmackowiak/objc/fix/remove_interface_method_duplicate
__label__features update create build introduce functionality behavior
__label__corrective [TACHYON-1092] Fix failing unit tests
__label__nonfunctional HIVE-756. Performance improvement for RCFile and ColumnarSerDe. (Ning Zhang via zshao)
__label__corrective CLOUDSTACK-6181 Specify GB for the value of rootdisksize parameter. Add some Bytes/GB for log or exception messages. Fix Gb->GB.
__label__corrective bug 8514: Instance page - volume tab - Create Template dialog - fix a bug that OS dropdown was empty when 2nd time visiting Instance page.
__label__nonfunctional Performance improvements for the Block constructor
__label__nonfunctional "ROO-3: Enhancements to launch scripts to eliminate ROO_HOME variable requirement  and also ensure correct operation with spaces in path name. Tested successfully under Ubuntu 9.04 and Windows 2000 Server. Apple testing to follow."
__label__features Changed file autoset features to use the optimized find routine.
__label__nonfunctional adding an entry point for improved reusability.
__label__corrective bug 11255: cloudStack - IP address page - Create Firewall rule - fix a JavaScript syntax bug.
__label__nonfunctional SONAR-3086 Improve usability of review forms
__label__features "Add ""UnixAdmin"" to featured list [ci skip]"
__label__features TFJ-688 retire feature specific rate limit status
__label__nonfunctional Improved performance on management of collections
__label__corrective [NancyFx] Fixed bug in the generation of enum models that were generated with compilation errors (#5910) (#5913)
__label__features Removed C++ client from planned features
__label__corrective bug 14076: Fix the exception scope
__label__corrective bug 6800: introducing a vm error state and fixing a couple of bugs introduced by the new networking model and around vm destroy
__label__features #394 one more spring boot example demo adavanced feature
__label__nonfunctional "HIVE-16969: Improvement performance of MapOperator for Parquet (Colin Ma  reviewed by Ferdinand Xu)"
__label__features "modified the golf example to be clearer  and use features from Drools 4"
__label__features removed very old feature branche
__label__corrective Add method getVolumeRelativeDirInSecStroage to fix compile error.
__label__features MAHOUT-492 - added InteractionValueEncoder for encoding interaction of two categorical features into feature vectors
__label__features Add action item support to the feature demo.
__label__corrective but 7309:  fix console proxy thumbnail disappearing problem. (merge from 2.2.beta1 branch to master branch)
__label__nonfunctional improved test performances for sq (reuse iConnection in DBUnits)
__label__nonfunctional Improved performance in query when 2 field are of the same class and no conversion is needed
__label__features HIVE-9278 : Cached expression feature broken in one case (Navis via Ashutosh Chauhan)
__label__corrective integrated the latest htmlunit to fix a possible ConcurrentModificationException
__label__features implementing update for forward to feature.
__label__corrective new UI - global settings page - related UI change after API bug 6506 is fixed.
__label__nonfunctional DATAJPA-1208 - Improved readability.
__label__corrective "whilst fixing the iso bug  i realized that the public isos werent being returned for the regular user when he tries to attach the iso to the running vm. adding a listpublicisos() method for a regular user  which will take care of the same"
__label__corrective "CLOUDSTACK-4300: possible fix: cputune feature is only available after 0.9.0  so start vm can fail on rhel 6.1"
__label__corrective [JAXRS-Spec|Resteasy|CXF] Issue 4315 - Fixed bug generating arrays of enums (#4582)
__label__corrective "tried to fix kissfft  failed misserably :D"
__label__nonfunctional Small performance enhancement - notion of a skipping Iterator which can efficiently advance
__label__nonfunctional Improved readability for /whitelist list. Addresses BUKKIT-772
__label__nonfunctional SONAR-5912 improve IssuesBySeverity performance and memory consumption
__label__corrective "Resource metadata - fixed the bug in removeResourceDetail API - when ""key"" parameter was passed in  used to remove the details matching the key  for all the resources  not just the one defined by resource_id"
__label__nonfunctional fixed for issue #849(improved TypeRerence Performance) and #937
__label__nonfunctional CLOUDSTACK-8423: [Xenserver] Improved the performance for processing of ClusterVMMetaDataSync command which can cause slowness in DB if there are huge number of VMs
__label__features TFJ-690 remove annotations feature
__label__corrective CLOUDSTACK-4296: fix parameter setting error in listVirtualMachines command
__label__nonfunctional improve jsonparser context testing
__label__nonfunctional Performance improvements in HotRodDecoder and HotRodServer
__label__corrective Fixed #593: Python code failure caused by Model IDs with dots has been fixed
__label__corrective CS-15704: Fix wrong domain id setting of non-root domain
__label__features ssl feature added for client
__label__features Moved HP Storage Container Metadata parsing to Swift since it's a standard Swift feature.
__label__features remove warning for feature section (and preserve rendering)
__label__corrective [ALLUXIO-1911] Fix failing test
__label__corrective "appliance: fix Debian iso url  fixes failing Jenkins builds"
__label__nonfunctional HBASE-5001 Improve the performance of block cache keys (Lars H and J-D)
__label__nonfunctional "optimized OPerformanceStatisticManager#getSessionPerformanceStatistic  about +3k ops on single-thread index/cluster insert"
__label__features Added JCache Near Cache feature explanation.
__label__nonfunctional Improved performance of Dijkstra and shortest path algorithms
__label__nonfunctional ISPN-1276 Improve batching and transactional performance after profiling
__label__nonfunctional Introduce a surprising performance improvement in DefaultRoboModule
__label__corrective CLOUDSTACK-5178: DeployVm from ISO fails. Fixed the creation of root
__label__nonfunctional JBRULES-1999  Improve performance/configuration options of ChainedProperties use in StatelessSession.execute calls
__label__features Remove Validation and LDAP features
__label__features "Add client-side encryption

The Java Cryptography Extension (JCE) has to be installed to use this feature."
__label__nonfunctional Merge pull request #1461 from pveentjer/improvement/maintenance-3.x/serializationbenchmarks
__label__corrective "CLOUDSTACK-6120: UI > listView widget > reorder list > drap to new position > fix a JS error ""map1 is undefined""."
__label__features "JabRef 2.0: feature to allow custom importers added
- added menu items and dialogs to manage custom importers
- added custom importers imports package
- added submenu for custom importers to main frame"
__label__corrective "cloudStack 3.0 new UI - listView widget - (1) remove default option ""All"".  (2) fix a bug that args.filterBy.kind got value from wrong dropdown when selectView dropdown and filterBy dropdown both exist on the same page."
__label__corrective "[GWT] Fix problem with logging  when app is not yet fully initialized (#4084)"
__label__corrective CLOUDSTACK-7281: Fix error in debug line
__label__features Remove image Options feature.
__label__features Better German translation for new feature pref
__label__unknown Removing a duplicate file.
__label__nonfunctional Minor: improved readability and speed by reducing the scope of variable in some hot points
__label__nonfunctional HDFS-8133. Improve readability of deleted block check (Daryn Sharp via Colin P. McCabe)
__label__nonfunctional improved digits parse performance
__label__corrective [JENKINS-31618] Fixed NoSuchMethodException in loginLink.jelly
__label__corrective [TACHYON-1129] Fix failling tests by a workaround in RemoteBlockOutStream
__label__nonfunctional bug fixed for issue #849 . improved TypeRerence Performance.
__label__corrective 1) Fix Console viewer CTRL key problem on Chrome browser
__label__nonfunctional "More small code refactorings  minor performance improvements -- also fixed a bug in refresh-related code of Similarity implementations"
__label__features Implemented Near Cache pre-loader feature.
__label__corrective CLOUDSTACK-6379: UI > fix a bug that domain admin failed to be created when current login doesn't have visibility to root domain object.
__label__nonfunctional various improvements and safeguards around path handling in FaunusVertex. Fixed an object reuse bug around paths as well.
__label__nonfunctional performance improvement: only draw visible rectangles
__label__corrective CLOUDSTACK-3643: Fix wrong protocol type and test case sequence
__label__nonfunctional Improved performance of tree map
__label__nonfunctional Changelog for performance improvement.
__label__nonfunctional performance improvement on restricted class check.
__label__corrective "Merge conflicts between authorization branch and master  fix failed cases"
__label__corrective CloudStack - Add Network Dialog - fix a bug that & is missing between isShared parameter and isDefault parameter in createNetwork API call.
__label__features Calculator feature for Clojure passing
__label__features added vm feature to savvis
__label__nonfunctional Minor performance improvement on the management page of group roles
__label__corrective "cloudstack 3.0 UI - autoscale - configure AutoScale - fix a bug when root-admin tried to update an AutoScale created by regular-user or domain-admin  users dropdown was not correctly populated (should be populated with users under owner account instead of users under current login account)."
__label__corrective CLOUDSTACK-7143: fix a bug where a script file rename wasn't propagated to build.sh
__label__nonfunctional SONAR-5528 Improve performance of syntax highlighting API
__label__nonfunctional Testing improvements for com.hazelcast.monitor package.
__label__unknown Avoid duplicate aliases in TexturePacker2
__label__nonfunctional Test performance improvement by allowing multiple Hudsons to reuse classloaders.
__label__corrective CLOUDSTACK-5076: fix wrong bridge name in vm domain xml desc after upgrade from 4.0 or before to 4.2
__label__corrective clean code. fix bug in inputstream
__label__features Had to change the text we look for in the webdriver search features
__label__corrective To fix the bugs in JournalTest over ufs-hdfs
__label__features "New scope checker feature.

The implementation is somewhat complex; if you're reading this please consider reading through the code to find some mistakes!

I'm considering moving this out to be a proper extension; for now it'll live in util.

git-svn-id: https://google-guice.googlecode.com/svn/trunk@1049 d779f126-a31b-0410-b53b-1d3aecad763e"
__label__unknown Added bleed setting to fix linear filtering with non-premultiplied alpha. Removed duplicate padding setting.
__label__unknown Eliminate duplicated code in catch blocks
__label__corrective "I think I fixed #474  although I don't have a way of verifying it. ""svn+ssh on slave node causes NullPointerException"""
__label__corrective new UI - fix a bug that clicking a submenu will collapse parent menu.
__label__features TFJ-26 : added debugging feature
__label__features "Introduce logout feature  upgrade to 1.0.2.Final of console"
__label__corrective bug 7713: Add Zone Wizard - Add IP Range to advanced zone - fix a bug that domain field and account field is not hidden when scope is account-specific and VLAN is changed from tagged to  untagged.
__label__features removed setfeature due to it is not supported in sax
__label__nonfunctional AVRO-752. Java: Enhanced Performance Test Suite
__label__nonfunctional [GSCOLLECT-1606] Improve primitive map performance.
__label__corrective bug 11664: fixed regression bug in listVms introduced by performance changes
__label__features Adding feature toggle in ProcessEngineConfigurationImpl to allow diagram creation on deploy to be disabled.
__label__corrective new UI - fix a bug - instances page's middle menu action list is empty.
__label__nonfunctional SONAR-5007 improve medium tests for testing server startup tasks
__label__corrective CLOUDSTACK-8466: Fixed import error in testpath_snapshot_limits.py
__label__corrective publican errors in the release notes fixed
__label__corrective "CLOUDSTACK-7490: UI > Templates menu (listing) > select a template from listing > Details tab > Zones tab (listing) > select a zone from listing > Details tab > fix a bug that wrong ""template+zone"" combination was shown."
__label__features proxy config change tracking; plaintext password warning; improvements for feature #388
__label__corrective "new UI - instance page  volume page - fix a bug that after creation  clicking middle menu pops up javascript error."
__label__features added attribute feature to Request and filter example on how to use it
__label__corrective more logging and fixed bug in cleanup
__label__nonfunctional performance improvement on restricted class check.
__label__corrective [ALLUXIO-2572] Fix return value when error
__label__nonfunctional Issue #1404. WAL tests and performance improvement.
__label__corrective [FIXED HUDSON-5827] Fixed ClassCastException - live in svn plugin 1.13 which will be bundled with 1.350
__label__nonfunctional BZ-1155852 - Performance improvement suggestion for getRuntimeEngine()
__label__unknown Sort in alphabetical order (to avoid duplicate key) and better compare with l10n ressource files (already in alphabetical order)
__label__features Created examples/java-no-features to demonstrate Cucumber JVM behaviour
__label__unknown Use default methods to eliminate duplicate enum logic.
__label__corrective "CLOUDSTACK-3868: fixed ""count"" param in listUsageRecords API to return the actual number of records matching the search criteria. Used to return the wrong value - the number of records per page"
__label__corrective CLOUDSTACK-8844: Network Update from RVR offering to Standalone offering fails - Fixed
__label__features "percolator: Replace percolate api with the new percolator query

Also replaced the PercolatorQueryRegistry with the new PercolatorQueryCache.

The PercolatorFieldMapper stores the rewritten form of each percolator query's xcontext
in a binary doc values field. This make sure that the query rewrite happens only during
indexing (some queries for example fetch shapes  terms in remote indices) and
the speed up the loading of the queries in the percolator query cache.

Because the percolator now works inside the search infrastructure a number of features
(sorting fields  pagination  fetch features) are available out of the box.

The following feature requests are automatically implemented via this refactoring:

Closes #10741
Closes #7297
Closes #13176
Closes #13978
Closes #11264
Closes #10741
Closes #4317"
__label__nonfunctional add a benchmarks module to do quick experiments to improve performance.
__label__nonfunctional SQL: improved performance when BETWEEN is used. Thanks to Fabrizio Fortino for the tip
__label__corrective CLOUDSTACK-7863: Fix the script 'test_vpc_vms_deployment.py' - Test Cases failing on Simulator as Testcases try to ssh to the VMs
__label__corrective CLOUDSTACK-3539: Fix wrong management ip when server start up
__label__corrective "fixed a possible infinite loop. This doesn't eliminate the possibility that context classloader has UberClassLoader as an ancestor  but it fixes the problem Rama is seeing."
__label__unknown remove duplicate lines of 2d678063fac318776f60b7f3b1d27323cac06dfc
__label__corrective "[FIXED HUDSON-6542] Fix javascript error when a plugin uses an empty f:dropdownList "
__label__features "Added 'coming' tags to mlt for multiple docs feature.

Closes #6272"
__label__features [Core] Use whole path for uri:s for file system feature files.
__label__nonfunctional Tiny performance improvements / streamlining
__label__features [AS7-4486] Remove feature that starts bundles automatically on 'deploy' operation
__label__nonfunctional Small performance enhancement for checksum generation.
__label__features Added transform tag to feature
__label__features Feature request #710: A setting to choose either a DOI link or a URL to be standard
__label__corrective "CLOUDSTACK-9354 - Fixing an issue in Marvin around creating a template from a snapshot (if â€œis publicâ€ is not provided  there was a problem)"
__label__corrective "attempting to fix the performance problem in artifact archiving. Discovered on Sun's deployment  in the ""glassfish-v3-main-publisher"" job by Harsha."
__label__unknown Duplicate statement in ExporterDL.java
__label__nonfunctional improved error response code to include url encoded params which makes ec2 a lot easier to debug
__label__corrective "new UI - volume page - fix a bug that JS error ""$midmenuItem1 is null or not an object ""  ""jsonObj is null or not an object"" when switching between tabs on an empty page."
__label__unknown handle duplicate class definition errors during module classloading
__label__corrective CLOUDSTACK-3994: fix for Wrong error notification is generated when Primary storage is added with wrong path
__label__features "Add ""noodles - To Do List"" in featured implementations [deploy snapshot]"
__label__nonfunctional object api performance improvements case #5443
__label__corrective "CLOUDSTACK-6477: UI - Load Balancing - add VMs => fix error 'Unable to decode parameter vmidipmap[0].vmip[]; if specifying an object array  please use parameter[index].field=XXX  ~ '"
__label__nonfunctional Index: improved performance for most common use cases + reduced code
__label__corrective [SMALLFIX] Fix bug in UfsUtilsIntegrationTest
__label__unknown  fixing code issues found by FindBugs.
__label__corrective "Revert ""CLOUDSTACK-9711: Fixed error reporting while adding vpn user"""
__label__unknown Fix code smells (#61)
__label__corrective CLOUDSTACK-7863: Fix the script 'test_vpc_vms_deployment.py' - Test Cases failing on Simulator as Testcases try to ssh to the VMs
__label__nonfunctional Improve readability with a space in JDK downloading message
__label__corrective new UI - ISO page - fix a bug that isPublic field doesn't get updated after upadteISO action.
__label__unknown Remove duplicate fields from sub-classes of the Java codegen
__label__corrective cloudstack 3.0 UI - listView - fix a bug that table row was not removed from listView after Remove action on listView completed.
__label__features Remove dead letters feature
__label__nonfunctional Improved performance on massive insert using indexes
__label__nonfunctional "Improved yet performance with huge datasets. When the mmap pool is full  then the channel technique is used. The dramatic slowness of read/write when the mmap pool is exhausted has been fixed."
__label__corrective integrated a version that fixed a bug in the method matching.
__label__nonfunctional removed flush to improve network performance
__label__corrective 1) Fix build problem caused by alex's Refactoring
__label__nonfunctional BroadleafCommerce/QA#2760 : Cherry Pick Merge Commit - 767fc1ed8698cc395d4c7de320eacc79bf4d4499 (moving 2760 performance enhancements from 5.0 to 5.1)
__label__nonfunctional CLOUDSTACK-9783: Improve metrics view performance
__label__corrective [feature #1255] fix import problem pointed out during review.
__label__nonfunctional improve sql parser performance
__label__corrective trying to fix a bug where the slave agent doesn't terminate itself even when the connection is lost of failed.
__label__corrective "cli: generate verbs on the fly  fix autocompletion whitespace bug"
__label__nonfunctional "Improves readability by using static imports  simplifies statements"
__label__features rename Feature.NonPublicFieldSupport to SupportNonPublicField
__label__features Remove fields filtering feature
__label__corrective CLOUDSTACK-2120: API - mixed zone management - fix a bug that listTemplates/listIsos API didn't take in zoneType properly.
__label__unknown CID-1114592 Replaced duplicate code with a call to super
__label__features allow to enable/disable dead letter feature. Graylog2/graylog2-web-interface#653
__label__corrective cloudStack 3.0 new UI - NaaS - fix a bug that network service provider status was wrong in zone chart.
__label__corrective bug 12233: cloudStack 3.0 new UI - public network - delete IP range - fix a bug that id didn't get passed to API call.
__label__corrective fix a bug that Configuration tab was wrongly hidden.
__label__unknown "client: Remove duplicate baremetal dependency  regression from 1f15c1e9"
__label__nonfunctional "Minor performance improvements to FastMap and MemoryDiffStorage -- use custom  faster BitSet and rehash FastMaps in MDS to optimize layout of entries at runtime."
__label__nonfunctional titan-core performance improvements
__label__nonfunctional additional test improvements for REST testing
__label__corrective "shader improving  minor bug fixes  better organization."
__label__corrective Support binary input and output - fix some merge problems
__label__nonfunctional Improve performance of convertions to java.sql classes
__label__nonfunctional Fixed one of the event tests and some performance enhancements.
__label__corrective "JENKINS-7836 tentative fix for the copy from slave to master issues. The problem looks similar to JENKINS-7745  so we might as well synchronized the ProxyInputStream."
__label__nonfunctional Issue #1602. Small SBTree performance improvement.
__label__nonfunctional HA: improved performance of rid bag compare
__label__features added attribute feature to Request and filter example on how to use it
__label__nonfunctional Improved performance on operation against MVRB-Tree by storing temporary the searched values on thread local
__label__nonfunctional WELD-614 Performance improvements via simpler data structures
__label__corrective "[FIXED JENKINS-6795] Maven agent needs a fix for the 'hardcoded' socket connection to localhost  perhaps a fallback mechanism when it fails to connect through the loopback interface can solve this pesky issue?"
__label__corrective [FIXED HUDSON-2031] debug code crept into the trunk. This exception message is otherwise harmless. Fixed in 1.233.
__label__corrective Address comments about style and fix a bug with in commit block.
__label__nonfunctional SONAR-4301 Improve performance when searching component children ids from specified component keys
__label__nonfunctional improved error response code to include url encoded params which makes ec2 a lot easier to debug
__label__features Adds the spinner background hack to the FeatureToggles demo activity
__label__features "Updated the HTML ""What's new"" page with 3.0 features."
__label__corrective "CLOUDSTACK-7272: Router stop fails with NPE. Fixing it by making the hostId as Long object than native type long. The issue was the response was checking for getHostId() != null to populate attribute hypervisor. But since the hostId is declared as long it will never be null  resulting in the NPE when populating hypervisor. Fixed that"
__label__corrective [SMALLFIX] Fix format error in bin/alluxio
__label__corrective CLOUDSTACK-747: Internal LB detailView - Assigned VMs tab - Assign VMs action - fix a bug that select VM view failed to show VMs.
__label__features "Added support for 'volatile' statement iterators in GraphSail  so as to ease concerns of excessive new object creation during graph traversal through Sail.  Experimentation indicates  in fact  that the JDK is smart enough to optimize away the creation of short-lived statement objects in typical scenarios.  However  should compiler optimization ever fall short  the feature is there."
__label__nonfunctional HIVE-9127: Improve CombineHiveInputFormat.getSplit performance (Brock via Xuefu)
__label__corrective CLOUDSTACK-5269: Fix nose failures.
__label__features WS streaming feature restricted to Grizzly provider for the time being.
__label__nonfunctional migrated the optimized GremlinScriptEngine from TinkerPop Gremlin to FaunusGremlinScriptEngine. Much better performance as import is not callled on ever evaluation.
__label__unknown change algorithm for duplicate lines
__label__nonfunctional HBASE-1778 Improve PerformanceEvaluation
__label__unknown cloudstack 3.0 UI - network page - IP Address detail page - remove duplicate info - network name and network type are already in parent page (network page).
__label__corrective new UI - fix bug 6670(The UI shows templates are ready to use: DB says the DOWNLOAD_IN_PROGRESS)
__label__corrective "the fix to stapler for makign Winstone work now caused Jetty to fail  so reapplied fix"
__label__features Started work on alternative group add/remove/move feature.
__label__corrective domain page - fix a bug that newly created domain appears twice in domain tree.
__label__corrective "new UI - update load balancer rule - fix a bug ""items is not found"""
__label__corrective [ALLUXIO-1748] Fix incompatible type compilation error on Java 8
__label__nonfunctional JBRULES-1915: Improve process persistence usability
__label__nonfunctional Improved performances on serialization by avoiding the creation of Strings for RIDs
__label__nonfunctional "Initial import for MAHOUT-180.  Brings in all the core of decomposer.  Lots more to do (to be described on the list [and wiki - need wiki!])  but has a couple unit tests to verify correctness  and my recent checkins in the rest of mahout-math help optimize for performance."
__label__corrective [FIXED SECURITY-109] SECURITY-55 fix to BuildTrigger configuration failed if downstream project was not visible.
__label__corrective bug 7902: Fixed problem with updating secstorage.ssl.cert.domain as it was incorrect set to be validated as a boolean and also was set to be validated as an ip range.
__label__corrective CLOUDSTACK-2334: UI > Regions > GSLB > remove lb rule from GSLB - fix a bug that passed wrong parameter to API call.
__label__nonfunctional Improved performance on WAL restore if RAM is available
__label__features Inline html to report the plugin that implemented the feature.
__label__nonfunctional Improve readability of IssueWorkflowTest
__label__corrective CLOUDSTACK-9634: fix marvin test failure test_router_dhcp_opts
__label__nonfunctional Performance improvement: property docx4j.openpackaging.parts.JaxbXmlPartXPathAware.binder.eager.* allows us to avoid unmarshalling via DOM
__label__corrective change hadoopfs to tfs. fix a bug in delete.
__label__nonfunctional DATAMONGO-1108 - Performance improvements in BasicMongoPersistentEntity.
__label__corrective CLOUDSTACK-7143: a better fix for kernel upgrade disk space problems
__label__unknown fix somes code smells in the srouce code
__label__corrective CLOUDSTACK-9711: Fixed error reporting while adding vpn user
__label__nonfunctional Improved alarm callback testing (#3196)
__label__nonfunctional Reuse APIChecker adapter interface for APi Rate limit checking and optimize ApiRateLimitService interface.
__label__corrective Host page - fix a bug that refresh button was not working in Firefox (but was working in IE).
__label__corrective bug 11045: Fix exception exit of CheckRouterTask
__label__nonfunctional Merge pull request #740 from pveentjer/improvement/3.maintenance/inmemoryformat-cached-and-equals
__label__corrective "Merging the fix to bug 6680 to master branch by hand due to differences in the code between 2.1.x and master.  The fix is for join conditions in GenericDaoBase  making sure to only add non-null / non-empty where clauses to the query string  and to recursively prepare all join parameters since there might be sub-join clauses in the query."
__label__nonfunctional Issue #123 - Improve RAF performance by replacing RandomAccessFIle with FIleChannel.
__label__corrective [FIXED HUDSON-4058] Integrating a newer version of Winp that fixes memory leak problems.
__label__features update create build introduce functionality behavior
__label__features Implemented Inventory.contains with a minimum amount of item required. As per feature request #187
__label__corrective CS-15471: Fix wrong type of updating customer gateway lifetime
__label__nonfunctional bug 9192: More improvements to listVm performance - cache dataCenter/serviceOffering/Network/Template/Iso information on Api level
__label__nonfunctional "GremlinRangeFilterPipe now 'auto resets' when a NoSuchElementException is thrown. Its a bit ghetto to use exceptions for flow control  but now GPath doesnt have to inspect each pipe to see if its a RangeFilter and .reset() it. Performance improvement and better encapsulation."
__label__features [JBAS-8450] - Integrate features for domain deployments
__label__corrective CLOUDSTACK-3643: Automation: Fix wrong network acl rule for ping
__label__corrective CLOUDSTACK-6289: fixed storage migration failing in case of hyper-v if there are multiple disks attached to VM
__label__nonfunctional Merge pull request #7549 from asimarslan/feature/maintenance-3.x/client-message-improvement
__label__corrective "bug 7472: fixing the bootloader issue  wherein a vm with iso attached fails to boot up  when trying to start from a stopped state"
__label__corrective "2.1 old UI - fix error ""pagesize parameter is required when page is specified""."
__label__corrective bug 10232: CloudStack UI - Instance page - fix a bug that VMName was not decoded when encode.api.response is set to true.
__label__unknown fix pom duplicated id issue
__label__corrective [SMALLFIX] Fix compilation error by handling TachyonException
__label__nonfunctional ISPN-1015 - Optimize HotRod client to match Memcached performance
__label__nonfunctional SONAR-5490 Improve readability and payload of results in the Coding Rules page
__label__unknown remove wasteful duplicate method calls findbugs
__label__unknown fixed duplicate builds in view build history when nested in folders
__label__nonfunctional BroadleafCommerce/QA#2412 - enhance segment inclusion performance
__label__nonfunctional Merge pull request #4119 from pveentjer/improvement/3.x/performance-monitor-includes-response-info
__label__features HBASE-13103 [ergonomics] add region size balancing as a feature of master
__label__features cloudstack: added virtualmachine and asyncjob features
__label__features Added feature to allow users to administer HL7 error and archive queues (#890).
__label__features Add UserDefineLibrary.loadLibrary features
__label__corrective CLOUDSTACK-7932: Fixed wrong semantics for isVmAlive() method in HypervInvestigator
__label__unknown "bug 6662:  handle a null ip forwarding rule in the API response as 'the rule already exists' since other errors will result in thrown exceptions.  Also  fix up detection of network conflicts and duplicate rules by adding a list of used protocols to the port mappings"
__label__corrective [TACHYON-470] Fix failed unit test in TachyonConfTest
__label__nonfunctional SPY-127: Optimize StringUtils performance.
__label__features "HBASE-7006 [MTTR] Improve Region Server Recovery Time - Distributed Log Replay  Addendum disables the feature by default"
__label__nonfunctional Refactoring effort to improve performance and reduce unnecessary database reads
__label__corrective bug 14476: cloudstack 3.0 UI - IP address page - VPN tab - fix a bug that newly added VPN users didn't show up on UI when owner of IP Address is different from current login.
__label__features "implement proper support for endpoint config  its properties & features"
__label__nonfunctional "slightly improved readability  plus Eclipse autoformatter"
__label__corrective [HUDSON-1520] fix compile error from r28632 and make remote call sort by ThreadGroup too
__label__features "Added mark/unmark feature  osx adapter for mac compatibility. Added Seb Wills' patch for pdf autodetection."
__label__corrective "bug 10222: fixed issue with associate ip introduced more than one nic.  The problem is that associate ip automatically creates a nic but doesn't have sufficient information to properly creates so it uses what it knows for sure is the naming pattern to do it.  However  we changed the naming pattern and it broke.  I fixed it by passing all of the information in the ipaddressTO object."
__label__corrective Temporary fix to keep dashboard UI from reporting error
__label__features Add empty feature for Usage (global admin)
__label__nonfunctional Improved performance on operation against MVRB-Tree by storing temporary the searched values on thread local
__label__nonfunctional Improve dynamic graph snapshot performances
__label__features New IMap features headline information added
__label__nonfunctional Merge pull request #1717 from Graylog2/improve-indexing-methods-reusability
__label__features "Revert ""Feature/master/portable enhancement"""
__label__features "Deprecate omitting terms lookup index name in 5.6 (#25755)

We remove this feature since it super misleading and error prone
if you go through aliases etc. This commit deprecates the feature in 5.x and
adds deprecation logging.

Relates to #25750"
__label__features Adding adminURL to Endpoint so we can access admin client features
__label__nonfunctional "HIVE-16311: Improve the performance for FastHiveDecimalImpl.fastDivide (Colin Ma  reviewed by Xuefu Zhang)"
__label__corrective [TK-3113] fixed CloudRuntimeException: NO EVENT PUBLISH CAN BE WRAPPED WITHIN DB TRANSACTION!
__label__corrective Wrap light bug fix and huge performance imporovement.
__label__unknown Remove duplicated validation functions
__label__nonfunctional performance improvement based on the input from http://www.nabble.com/Maven-job-5-times-slower-than-a-free-style-job--td14651245.html
__label__nonfunctional "naming conventions work  events improvements  integration testing work"
__label__corrective "CLOUDSTACK-3612: fixed missing indexes in some cloud tables. In the bug those tables are addressed as table #4  table #5  and table #6"
__label__corrective "CLOUDSTACK-4363: fix possible NPE  if copy volume failed."
__label__corrective CLOUDSTACK-5200: UI > Infrastructure > Sockets > listView > fix a bug that Hosts and Sockets displayed wrong number.
__label__features removed hostgroup features. can now be done in streams. (explanation: http://www.lennartkoopmann.net/post/11612984083/hostgroups-in-graylog2-will-die) also improved error handling of index checker on startup.
__label__nonfunctional by Andrey and Artem to improve performance on index lookup with operators > and <
__label__nonfunctional WS permissions/search_global_permissions improve readability
__label__nonfunctional HBASE-6295  Possible performance improvement in client batch operations: presplit and send in background
__label__nonfunctional Improved ODocumentHookAbstract implementing filtering by name. This makes thing easier for developers
__label__features Added the versionCodeUpdateFromVersion feature and put more checks to avoid failures
__label__features "Removed computeVisibleGlyphs  added truncate feature to GlyphLayout."
__label__features Completed the New Features headlines for 3.5.
__label__corrective Account page - fix a bug that newly created account in middle menu showed wrong data.
__label__corrective CLOUDSTACK-6900: This fixes volume migration failing after that volume is downloaded.
__label__features "added feature learning example


Former-commit-id: 7de2e324ec89ced1c73933ddb4b03f121ec99839"
__label__corrective [ALLUXIO-1748] Fix incompatible type compilation error on Java 8
__label__features Compensate for sendMessage losing its 'unintended splitting on existing newlines'-feature
__label__corrective invalid 3.0 UI - site to site VPN - create connection fails - fix a bug that wrong vpnGatewayId is passed to API command where there are multiple VPN gateways are present in one account.
__label__corrective [UI] bug fix: updateNetwork keep polling
__label__corrective [SMALLFIX] Fix checkstyle problem by ordering imports in SleepingTimerTest.java
__label__corrective bumping up to stapler 1.25 to get a bug fix for StaplerRequest.getRootPath()
__label__corrective "new UI - cluster page - fix a bug ""$leftmenuItem1 is not found""."
__label__corrective bug 12688: fix a bug in listView widget that didn't pass correct filterBy object to loadBody().
__label__nonfunctional "JERSEY-2606: ""Monitoring statistics performance improvements"""
__label__nonfunctional JBRULES-1915: Improve process persistence usability
__label__nonfunctional Issue 1759: Improved serialization performance of value container
__label__nonfunctional "HIVE-11531: Add mysql-style LIMIT support to Hive  or improve ROW_NUMBER performance-wise (Hui Zheng  reviewed by Sergey Shelukhin  Jesus Camacho Rodriguez)"
__label__corrective CLOUDSTACK-8431: [Hyper-V] Fixed VM deployment failing when the stale vhd already exists Now generating guid when the template copy from secondary to primary storage requested instead of using it same as secondary
__label__unknown Optimize menu key check. Remove duplicate helper class.
__label__corrective temporary fix: autowriring failing for missing storage allocator
__label__features [WFLY-311] Feature provisioning service
__label__corrective bug 9495: Fix DomR logging error on boot
__label__corrective CLOUDSTACK-5771: UI > Infrastructure > SystemVMs page > listView Search > fix a bug that UI kept spinning when there was no matching result.
__label__unknown Use inference to elide duplicated type parameters
__label__corrective "resource page - fix a bug that primary storage total number is ""NaN"" after creating the first primary storage from resource page."
__label__nonfunctional Improved performance to retrieve fields from documents
__label__corrective "CLOUDSTACK-1219  CLOUDSTACK-1220: Fix IPv6 error messages"
__label__corrective "TextField  updates to use displayed text for glyph positions rather than actual text  enables cursor for password mode to work right. This stomped ariel.coppes@gmail.com changes which seemed to attempt to do the same thing  but were causing crashes in our app. Please let me know if I caused problems here and I'll fix it  no need to waste your time trying to fix my fix. :)"
__label__nonfunctional "search work  integration testing  improvements for the search APIs  other cleanup work"
__label__unknown hideAll() now resets all internal state.
__label__corrective "volume-upload: UI > upload template from local > fix a bug that fields below OS Type field (isPublic  isFeatured  ~ ) are not created."
__label__nonfunctional [TACHYON-807] Use Precondition checks for TachyonFS#get to improve readability
__label__nonfunctional Merge pull request #5138 from metanet/improvement/master/partition-testing
__label__corrective bug 11202: cloudStack - Service Offering page - fix a bug that Network Rate didn't get refreshed when another service offering is selected.
__label__features MAHOUT-163: New features for ClusterDumper and add in ClusterLabel capability for Lucene index using Log Likelihood
__label__corrective add raw table and fix bugs.
__label__nonfunctional Issue #2901 pool performance was improved up to 255 000 ins/s in benchmark.
__label__corrective CLOUDSTACK-9728: Fixed traffic sentinel HTTP 414 error response
__label__nonfunctional Improved testing ReadManyOperationTest
__label__nonfunctional Made method call final to improve performance since this is a very frequently invoked method
__label__unknown bug 10727: fixed duplicated usage event generation when create volume from snapshot
__label__corrective [ALLUXIO-1856] Fix more failing unit tests
__label__nonfunctional excluding SSH module from the test for performance improvement
__label__nonfunctional improve serialize performance
__label__corrective update csharp doc with minor enhancements and bug fixes
__label__nonfunctional JBRULES-1915: Improve process persistence usability
__label__nonfunctional #691 - Performance Improvements
__label__nonfunctional improved test performances for sq #2 (use sonar.jdbc.schema property to explicit schema for DBUnit)
__label__corrective MultipartForm: fixing syntax error
__label__features I prefer strongly typed named variable for controlling feature flags.
__label__unknown HBASE-7604 Remove duplicated code from HFileLink (Matteo Bertozzi)
__label__corrective using the lateste that fixes the stdout capturing problem
__label__corrective [FIXED HUDSON-6756] fix js error in IE for f:select and f:combobox
__label__nonfunctional sponge: Cache results of context lookup to improve performance
__label__features Added cucumber-features back
__label__features I declare that this feature is no longer beta.
__label__features "JCache implementation added to New Features  3.3.1"
__label__corrective [ALLUXIO-1911] Fix Format and failing tests
__label__features "Remove incomplete and deprecated TicGit feature

Change-Id: Idb7de272589e086da9b2b3a241dcd082c1c8f27b"
__label__nonfunctional Performance improvement on parsing larger HTML pages.
__label__nonfunctional JBRULES-1915: Improve process persistence usability
__label__corrective CLOUDSTACK-1273: Fixed the problem with the paths on the systemvm
__label__features Add proper JacksonFeature to ResourceConfig in RestApiService
__label__features added note that feature is experimental
__label__corrective "2.1 old UI - fix error ""page needs to be specified when pagesize is specified""."
__label__features Updating the features section to match the website
__label__corrective "LibvirtComputingResource: Fix coverity scan  recent bugfixes revealed a potential unhandled null in getResizeScriptType"
__label__corrective [FIXED HUDSON-2180] revised the design of polling to fix the problem.
__label__corrective Add more unit tests for block heartbeat reporter and fix a bug.
__label__corrective [ALLUXIO-1819] Fixed build failure
__label__nonfunctional HIVE-502. Optimize RCFile's performance by removeing all synchronized modifiers. (Yongqiang He via zshao)
__label__corrective new UI - fix a bug that pod doesn't collapse/expand the first time being clicked.
__label__corrective better logging plus a masterclient minor bug fix.
__label__corrective "Fixes problem with having to change the ""-SNAPSHOT"" string in debian/rules for releases  deb packaging was broken in master due to this in a merge with release version. Fixes some warnings generated by dpkg-buildpackage regarding upstream
 tarball an source versioning Reduces source tarball from 669MB to 183MB (it was including .git)  now build is faster and takes up less space"
__label__unknown bug 10538: avoid duplicated config values insertion when multiple management servers start at the same time
__label__unknown HBASE-14769 Remove unused functions and duplicate javadocs from HBaseAdmin
__label__corrective Add tests for failure cases and fix a failure case
__label__features ACT-675 + ACT-673 added historicTaskInstanceQuery features + ACT-671 updated docs
__label__nonfunctional improve logging readability
__label__corrective "JENKINS-33813 - fix error page styling issue  add option to retry  fix"
__label__nonfunctional improve loading code for performance and repsonsiveness
__label__corrective "bug 12421: cloudstack 3.0 UI - detailView widget - fix a bug that updated data returned by API call got lost  so failed to update detailView with updated data."
__label__nonfunctional HIVE-1943. Metastore operations (like drop_partition) could be improved in terms of maintaining consistency of metadata and data. Contributed by Devaraj Das
__label__corrective cloudstack 3.0 UI - XSS - global setting page - fix a bug that notification got hacked after saving a value that has script tag (XSS attack).
__label__unknown took care of code smells in the srouce code
__label__corrective DestroyNetwork: fixed regression bug - the call always returns false after finishing the transaction. Return true instead.
__label__nonfunctional Enhance readability of RoutingContext
__label__unknown fix somes code smells in the srouce code
__label__unknown dead-7728: Removed duplicate import
__label__features "Added AccessRestrictionFilter and simplified authentication.

Replaced servlet container basic authentication with a custom servlet
filter which performs the same function.  The advantage to this is
that the servlet container is now divorced from the webapp.

The login service (realm) also simplified a great deal and removes its
Jetty dependencies.

Additionally  the basic authorization pop-up will be displayed as
needed based on the repository's access restriction.  This was
necessary for view-restricted repositories with the RSS feature.  Its
also necessary for completely open repositories as before it would
prompt for credentials.

Improved feed syndication feature."
__label__corrective [ALLUXIO-1852] Fixing wrong authentication header when connecting to SoftLayer object store. Adding password configuration key
__label__features Update 'Feature Toggles' for new dropdown list navigation. Closes #330.
__label__nonfunctional bug 9192: More improvements to listVm performance - cache dataCenter/serviceOffering/Network/Template/Iso information on Api level
__label__features Supported dynamic FEATUREs based on configuration
__label__features Implement tag/tagExists for the offline database feature
__label__corrective [ALLUXIO-2197] Fixed errors caused due to merge from upstream
__label__features Joyent server and Dataset features
__label__corrective "because of maven process reuse  environment variables like BUILD_NUMBER is not reliable. Fix the problem by exposing those same variables as system properties as well."
__label__corrective cloudStack 3.0 new UI - zone chart - public network - add IP range - fix a bug that vlanId didn't get passed to API call.
__label__nonfunctional Cache performance improvements.
__label__corrective [ALLUXIO-1949] Fix other failing integration tests
__label__corrective "cleaning up imports  fixing up some compilation problems related to API refactoring"
__label__nonfunctional HDFS-3800. improvements to QJM fault testing. Contributed by Todd Lipcon.
__label__features "Added button to crossref entry editor field to select parent entry (#1563)

* Added button to crossref entry editor field to select parent entry
* And the main table column feature..."
__label__nonfunctional HIVE-4838 : Refactor MapJoin HashMap code to improve testability and readability (Brock Noland via Ashutosh Chauhan)
__label__features added feature for saving complexobs data while saving encounters
__label__features Implement join and UUID changes related to the partial-start feature
__label__features TRUNK-257: Add Feature to enable moving Encounter Data to a different patient
__label__corrective cloudStack - Elastic Load Balancer - fix a bug that g_supportELB became null on 2nd browser window (2nd browser window doesn't require login).
__label__corrective "new UI - VM creation - fix bug ""toRightPanel is not a function""."
__label__nonfunctional Improved scan performance with configurable pre-fetching
__label__corrective CLOUDSTACK-7771: Throw exception while restoring vm if the template is already deleted. Also fix the usage event being generated from the right template id and fix the log message which sometime showed incorrect template id.
__label__corrective "new UI - VM creation - fix bug ""$t is not defined""."
__label__features Add deployment scanner to web feature pack
__label__nonfunctional "Improve low-level testing a bit  to guard against regression (like one that exists now)"
__label__features Partial implementation of FileListEditor download feature.
__label__unknown "need to hide the element at the end  or else the top region becomes"
__label__corrective instance page - fix a bug that instance groups are duplicate when login as user-role and click instance menu more than once.
__label__nonfunctional SONAR-8838 Improve readability of list of facets in index
__label__features blueprints sail feature branch added.
__label__corrective cloudStack 3.0 new UI - template page - fix a bug that delete action shouldn't be displayed for system built-in templates.
__label__nonfunctional improved basic number parse performance.
__label__corrective CLOUDSTACK-5154: Fixed test script issue related to failure
__label__features Add remaining features to support the abstraction
__label__nonfunctional Performance improvement: encoder/decoder invoked only once
__label__unknown Removed a duplicate cliOptions (it is already added by the base class)
__label__corrective CLOUDSTACK-1475: fix RegisterISO error after Update SSL Certificate
__label__corrective [ALLUXIO-2743] Fix failing tests
__label__corrective [TACHYON-1072] Fix test wrong method names in tachyon.conf.TachyonConfTest
__label__unknown Removed a duplicate comment
__label__nonfunctional optimized for encode performance
__label__corrective new UI - fix a bug that disable multiple selection was not working.
__label__corrective CLOUDSTACK-7826: UI - dialog widget - dependent dropdown field (dependsOn property specified) - fix a bug that default opton in dependent dropdown field didn't trigger change event handler until another option in dependent dropdown field was selected.
__label__features Made download icon visible all the time. And added download feature for the uploaded files
__label__nonfunctional Fixed ugly bug on Object Database and improved performance on class inspection
__label__features "Increase visibility of deprecation logger

The deprecation logger is an important way to make visible features of
Elasticsearch that are deprecated. Yet  the default logging makes the
log messages for the deprecation logger invisible. We want these log
messages to be visible  so the default logging for the deprecation
logger should enable these log messages. This commit changes the log
level of deprecation log message to warn  and configures the deprecation
logger so that these log messages are visible out of the box.

Relates #20254"
__label__nonfunctional Improved performance of scripts by compiling them
__label__nonfunctional integration testing work; other improvements
__label__nonfunctional CLOUDSTACK-7575: improved performance of cleanString method in StringUtils
__label__nonfunctional Partial search query performance was improved.
__label__features update create build introduce functionality behavior modify modification
__label__features "Added improvement of ""Change Group Containment"" by Andreas Schlicker.
This feature is now enabled by the settings and is indicated by a red frame.
(Improved patch by adding a permanent storage of this setting)"
__label__corrective bumping up to 1.52 to pick up a bug fix in JEXL ExpressionFactory handling
__label__nonfunctional Optimize memory management and performance for graph rendering in Studio
__label__corrective CLOUDSTACK-9688: Fix failing test_volumes on centos7/kvm
__label__corrective Issue #3698: Fixed wrong Y property in case of Tile Object in TMX map
__label__corrective [Haskell] Fix broken client/server compilation errors (#5097)
__label__corrective CLOUDSTACK-321: Fixed a bug in cloud-set-guest-*.in
__label__nonfunctional Usability improvements on input state badge
__label__nonfunctional trivial performance related improvements
__label__corrective CLOUDSTACK: 4705 - Fixed memory limits - domain limits test cases. Fixed attribute error
__label__features "[WFLY-3344] Some schemas versions were bumped to enable development of WildFly 9 features  however maintenance of WildFly 8 continued - this commit is to port the subsequent WildFly 8 maintenance to the bumped versions for WildFly 9."
__label__features Add theme switching buttons for the feature demo.
__label__unknown CE-110 remove duplicate-unused functionality
__label__nonfunctional "fixed various bugs in the timeline when dealing with integer or double data types  and improved overall performance"
__label__corrective CLOUDSTACK-459: cloudstack UI - create network offering dialog - fix a bug that associatePublicIP parameter was passed to createNetworkOffering API incorrectly. Fix it to pass associatePublicIP parameter as part of servicecapabilitylist.
__label__nonfunctional Improved performance of writing a string to an output stream.
__label__corrective [TACHYON-1559] Fix the two checkstyle errors originating out of the additional assertion
__label__features Updated new features list.
__label__nonfunctional improve map serialize performance
__label__unknown MAHOUT-1393: Removed duplicated code from getTopTerms and getTopFeatures in AbstractClusterWriter
__label__features Added new menu items for marking in different colors. Updated help file for marking feature.
__label__corrective adding more tests and fixing bugs as they are discovered
__label__features TRUNK-3749 - Backport some new features in the Order data model to 1.9.x
__label__features Another cucumber-feature passing
__label__features Extend validation feature with provided validator
__label__corrective CLOUDSTACK-7894 : Fixed the script test_vm_passwdenabled.py - Test Cases failing on Simulator as Testcases try to ssh to the VMs
__label__features Explicity state this features is for local workers in the docs
__label__features Added more New Features content.
__label__features "Implement admin function to clear captured data

This is generally useful  but even more so currently because there is
not yet a rollover feature to limit the amount of captured data."
__label__corrective "dashboard - fix a bug ""alerts is undefined"" when login as user-role and recent errors is not empty."
__label__nonfunctional improve serialize performance
__label__unknown Infra. chart: Fix socket info items duplicated on refresh
__label__nonfunctional Performance improvements to get the existing frames for python 2.4 and jython 2.1
__label__features Enable action item text display on pre-Android 3.0 devices by calling `requestWindowFeature()` with the argument `Window.FEATURE_ACTION_BAR_WATSON_TEXT`.
__label__nonfunctional Issue 55 enhanced integration tests to support redirect testing
__label__unknown Add a simple duplicate method to maintain consistency with FragmentActivity.
__label__nonfunctional Clean up (and improve performance of) the creation of member injection keys.
__label__nonfunctional Merge pull request #10360 from pveentjer/v3.9/performance/io-balancing-improvements
__label__corrective bug 10496: fixed various problems in scanDirectAgentToLoad code (1) case when loadSize=clusterSize wasn't working 2) Long value comparison was done incorrectly)
__label__nonfunctional HDFS-6080. Improve NFS gateway performance by making rtmax and wtmax configurable. Contributed by Abin Shahab
__label__nonfunctional MAPREDUCE-3944. Change the history jobs/ webservice to return partial job info for a significant performance improvement. (Contributed by Robert Joseph Evans)
__label__nonfunctional HBASE-5638 Readability improvements on HBASE-5633: NPE reading ZK config in HBase (Matteo Bertozzi)
__label__corrective CLOUDSTACk-9002: VM deployment is successful even when dhcp entry command fails - Fixed
__label__corrective "IP Address page - PF  LB tab - fix a bug that action_link was shifted to state column when state column doesn't have value."
__label__corrective new UI - Restore VM - fix a bug that VM info doesn't get refreshed after action succeed.
__label__corrective "[FIXED HUDSON-3875] According to the bug report  IBM JVMs fail to load akuma for some reasons. Gracefully recover from that error. This fix will be in 1.311."
__label__unknown dead-3647: Remove duplicate row
__label__nonfunctional Merge: Improve HttpResponseCache performance.
__label__corrective "CLOUDSTACK-6624: UI > create network offering > cloudStack does NOT support specifyIpRanges for isolated network - fix a bug that wrongly sends ""specifyIpRanges=true"" to createNetworkOffering API."
__label__features "Mappings: Remove ability to disable _source field

Current features (eg. update API) and future features (eg. reindex API)
depend on _source. This change locks down the field so that
it can no longer be disabled. It also removes legacy settings
compress/compress_threshold.

closes #8142
closes #10915"
__label__corrective "CLOUDSTACK-7637: UI > fix a bug produced by 4.5 feature ""template accross multiple zones"" > fix it by including all properties to jsonObj."
__label__nonfunctional Improve performance in  MOVED and ASK response parsing
__label__nonfunctional SONAR-5490 Improve readability and payload of results in the Coding Rules page
__label__nonfunctional Improved testing - integration style!  Woop Woop!
__label__unknown Fixed findbugs warnings
__label__nonfunctional "CLOUDSTACK-9843 : Performance improvement of deployVirtualMachine  createFirewallRule  createPortForwardingRule"
__label__features "adding a maintenance feature to list patients who are also users. (This should probably be removed before the 1.6 release  assuming that we switch the API to properly support that feature.)"
__label__corrective CLOUDSTACK-4713: UI > EIP/ELB Basic Zone - fix a bug that IPs that are acquired are not showing in listView of IP Addresses page under Network menu.
__label__nonfunctional Improved performance on fetch plan processing issue #4442
__label__corrective CLOUDSTACK-8420: [Hyper-V] Fixed number format exception when untagged vlan is used for Hyper-V setup Change the vlan data type to string from int and handled the untagged vlan cases
__label__nonfunctional performance improvements to chatview and messages
__label__corrective CLOUDSTACK-6422: Fixed errors with simulator VM snapshot delete and revert
__label__nonfunctional avoid build the count array to improve performance.
__label__unknown bug 12586: Remove the duplicate sync code of fullHostSync()
__label__features "Added the ability to reorder the panels in the side pane.

Side pane panels now feature an up arrow button and a down arrow button immediately to the left of the close button. These buttons allow panes to be swapped with the pane above or below them  respectively.

Whenever the panes are reordered  the current position of each visible pane is recorded in the application preferences  so the user's custom ordering can be preserved when JabRef is next run."
__label__nonfunctional [DROOLS-875] optimize KieSession creation performances
__label__features CFID-28: Add browser-like features to AuthorizationCodeAccessTokenProvider
__label__nonfunctional SONAR-3825 many different improvements on usability
__label__nonfunctional removed load check from recordstore.reset() and improved testing
__label__corrective Windows path problem fixed
__label__corrective new UI - Resources page - fix a bug that clicking zone arrow icon didn't show pod and systemVM in IE7.
__label__features TFJ-26 : added debugging feature
__label__corrective Temporary fix for the chicken and egg problem when making changes to the configuration database.
__label__corrective account page - fix a bug that wrong parameter was passed to listUsers API.
__label__nonfunctional SONAR-2962 Add an index on dependencies.project_snapshot_id to improve performance
__label__nonfunctional improve maintenance screen (update text and remove spinner)
__label__nonfunctional Improved HTTP performance and POST/PUT compatbility.
__label__nonfunctional OrientDB: improved performance on browsing vertices and edges by using native size() of OrientDB collections
__label__nonfunctional Performance and assurement improvements in wscript
__label__nonfunctional "DbSqlSession: improve debug logging  readability."
__label__corrective Summary: Fix empty traffic labels causing NullPointerExceptions on KVM
__label__nonfunctional Merge pull request #682 from pveentjer/improvement/maintenance-3/improved-aws-logging
__label__corrective new UI - global setting - fix a bug that Add Buttons from other pages didn't go away when visiting this page.
__label__features feature to add servlet filters in a druid node via extension modules
__label__nonfunctional Improves performance when joining params. Closes #380
__label__features "Implemented optional create-on-push

If this feature is enabled then permitted users can automatically create a
repository when pushing to one that does not yet exist.  Permitted users
are administrators and any user with the CREATE role.

If the pushing account is an administrator  the created repository may be
located in any folder/project space.  This reposiory will inherit the server's
default access restriction and authorization control.  The repository owner
will be the pushing account.

If the pushing account is a regular user with the CREATE role  the repository
can only be located in the account's personal folder (~username/myrepo.git).
This repository will be VIEW restricted and accessible by NAMED users.  The
repository owner will be the pushing account."
__label__unknown dead-1044: Fix duplicate listCapacity call on dashboard
__label__nonfunctional improve performance for issue #382
__label__corrective clean the code. fix a sync bug.
__label__features "Remove plugin isolation feature for a future version

relates #5261"
__label__nonfunctional improved BigDecimal parse performance.
__label__nonfunctional Minor performance improvements on StringUtils.join.
__label__nonfunctional added concurrent CCPbH implementation w/ ~ 8% performance improvement in stress testing and significantly cleaner dead client and host removal semantics
__label__nonfunctional Improved performance on cloning of OMVRBTreeRID objects during query: all the items were copied!
__label__corrective iOS: bug fix for server socket.
__label__features ClientUserCodeDeployment feature development
__label__corrective new UI: fix a javascript error that happened after clicking between My Template and Featured Template => 'events' is null or not an object
__label__features Updates to Rackspace CDN Container Metadata handling. Added feature to Purge CDN Object. Added feature to set default index and error pages for CDN based static website.
__label__corrective "CLOUDSTACK-3841: Fixed test case issue. The exception raised earlier was valid behaviour  added missing assertRaiss statement"
__label__corrective turns out my fix was wrong.
__label__corrective "bug 10501: This is really Kelven's bug but I'll fix it for him anyways.  DAO code already have a way to extract the DB connection from a transaction that is stored in the TLS.  There's no real reason for the DAO code to add special semantics to use a different DB connection.  That can be done by simply switching the transaction before it even reached the dao code.  Think about it.  Why would anyone want to call one dao function  switch transaction  and then switch back when it fails.  The right thing is for the caller to switch transaction  call a series of dao codes  and switch it back in case it is invalid.  That's the semantics I changed to.  By doing this  it also eliminates the number of debug messages in this bug."
__label__nonfunctional remove amount of chatlist updates to improve performance
__label__corrective CLOUDSTACK-9688: Fix VR smoke test failure in vpc_vpn
__label__corrective CLOUDSTACK-7269 - Fix expunge from non-Admin account error in Marvin
__label__unknown "Revert ""jjtree-javacc get rid of duplicate interim classes"""
__label__corrective "Little hack to fix a link problem when using swig 3.0 with multiple modules and mingw (works fine with VC). The method ExceptionMatches is never actually used  so this practically removes it."
__label__unknown Duplicate statement in DirectoryChooserUI.java
__label__corrective new UI - VM statistics - fix a bug that bar chart didn't show correctly.
__label__nonfunctional Oracle snapshot index performance improvements and better multi-schema support
__label__unknown remove duplicated gradle wrapper mustache files from android api client; findbugs
__label__features "#230 - Improve empty folder navigation.

Empty folders are automatically skipped when browsing repository tree  (similar to github ""folder jumping"" feature)."
__label__nonfunctional Volume: small performance improvement by replacing divide operation with bite shift.
__label__features "Add a page to generate and view a full thread dump

This is not a primary feature of Informant  so it is buried under the
misc page  but it is sometimes useful nonetheless  and nice to have in
a convenient web accessible form."
__label__nonfunctional refactor for performance improvement
__label__features Add 'Pay with Square' to featured applications.
__label__corrective python: Fix model maxLength validation error message
__label__unknown Remove duplicate configuration validation
__label__nonfunctional Improve ComponentTesting and SnapshotTesting
__label__nonfunctional "improved OStorageRemote testability  added unit test for remote async operation management."
__label__nonfunctional Enhanced testing of ui spicelist module
__label__corrective Security Group page - ingress rule tab - fix a bug that validation fails when selected protocol is  ICMP.
__label__corrective [TACHYON-816] Integrate permission model into Inode structure -- Fix some failure UTs
__label__corrective CLOUDSTACK-3255: UI > VPC section - IP Address - Load Balancing - autoscale - fix a bug that failed to get zoneid for createAutoScaleVmProfile API.
__label__corrective Fix [TACHYON-565] Fix String equals bug in CommonUtils
__label__nonfunctional Merge pull request #4712 from aaudiber/format-usability-improvements
__label__features Implement partition lost listener feature
__label__corrective "cloudstack 3.0 UI - (1) to distinguish between getUpdatedItem() and getUpdatedData()  rename getUpdatedData() to getUpdatedItemWhenAsyncJobFails() since it's being called only when async job fails. (2) fix the space problem (tab size is not 2) from patch."
__label__nonfunctional improved performance for large parameters.
__label__unknown Remove duplicate entry for 1.593
__label__nonfunctional SQL: Improved performance when no group by is used
__label__nonfunctional "Fixed issue 1145. Super huge improvement in performance  even 90x! Thanks Fabrizio for the report an analysis!"
__label__nonfunctional "Improved performance of iteration  specially for the GraphDB side."
__label__nonfunctional SQL: Improved performance when no group by is used
__label__nonfunctional SONAR-3617 Improve performance of treemap filters
__label__corrective "bug 6271: Fixed the issue of us not iterating over all vlans  in the direct attached case. now  we consider all vlan ranges before we error out saying no ip address available"
__label__unknown remove duplicate jboss-as-jmx declaration
__label__features Added initial log4j.properties with the rolling file appending feature to the conf directory
__label__corrective [JENKINS-35020] Fixed some JSHint errors (#2368)
__label__unknown dead-1631 - removing duplicate %doc declarations in -management
__label__nonfunctional Cache performance improvements.
__label__nonfunctional "- Usability improvement on the preferences pages (code-formatter  comment block and code-style showing examples)"
__label__corrective removing postinstall to fix problems when installing published api in other project
__label__corrective CLOUDSTACK-8537 test for the sake of testing the fix seems so trivial but no testing is available for it at all. when bugs arise test extension should be the start point here.
__label__nonfunctional Performance: CPU and memory improvements for Selectors
__label__unknown Remove duplicate ApiClientTest
__label__nonfunctional Minor: improved performance
__label__corrective "CLOUDSTACK-537: cloudstack UI - Advanced SG-Enabled zone - Network menu - guest network section - fix an JS error ""advSgDisabledZones is undefined""."
__label__nonfunctional "Fixed issue 1145. Super huge improvement in performance  even 90x! Thanks Fabrizio for the report an analysis!"
__label__unknown Fixed up duplicate pom ids
__label__corrective Try fixing occasional testing failuers in Java client
__label__nonfunctional HDFS-12143. Improve performance of getting and removing inode features. Contributed by Daryn Sharp.
__label__corrective "CLOUDSTACK-7758: Fixed although api calls are failing  event tab shows them as successful"
__label__corrective "CLOUDSTACK-5733: UI > Virtual Routers > group by zone/pod/cluster: fix a bug that ""Total of Virtual Routers"" in first row is blank."
__label__nonfunctional Merge pull request #1098 from pveentjer/improvement/3.maintenance/gettingstarted-documentation
__label__features "Rename uri to featurePath  which is more explicit"
__label__features Implemented the new automatic indexes using the OrientDB built-in index features
__label__corrective bug 9786: zone tree - fix a bug that Add External Firewall button and Add Load Balancer button were missing when clicking between advanced zone and basic zone that has no external firewalls.
__label__unknown Remove tests duplicated by testPut
__label__nonfunctional by Andrey and Artem to improve performance on index lookup with operators > and <
__label__unknown Encapsulate authentications.
__label__features avro-extension -- feature to specify multiple avro reader schemas inline  (#3368)
__label__unknown Detail view: Slice (clone) fields array to prevent duplicate fields
__label__nonfunctional improve performance for g1 log files without PrintAdaptiveSizePolicy
__label__corrective Fix error message in split pane. Fixes #3356.
__label__nonfunctional [ISPN-507] (Search performance: Improve InfinispanIndexIO.InfinispanIndexInput by tuning readBytes()) - trunk
__label__nonfunctional removed flush to improve network performance
__label__corrective CLOUDSTACK-9065: fix bug when creating packaging with noredist flag
__label__corrective bug 12243: cloudStack 3.0 new UI - system - service provider - fix a bug that addNetworkServiceProvider was being called again after the provider has been created.
__label__corrective Detail view: Fix case where view all link referenced wrong details object
__label__corrective apidoc: fixing the api doc failure
__label__corrective "CLOUDSTACK-121: Fixed ""Incorrect username/domainId login causes NullPointerException """
__label__corrective [SMALLFIX] Fix a bug when UnregisteredChannelFired
__label__corrective ACL item reorder: Fix error message box
__label__features Extractors feature - code coverage supplemented
__label__corrective "Don't sleep for a fixed amount of time  no use in continuing if repo is unavailable Check if DNS resolution is working properly when failure occurs"
__label__features jar:sign mojo seems to be a new feature in 2.1
__label__nonfunctional Minor: improved readability and speed by reducing the scope of variable in some hot points
__label__features added InteractionValueEncoder for encoding interaction of two categorical features into feature vectors
__label__corrective CLOUDSTACK-7895 : Fixed the script test_security_groups.py - Test Cases failing on Simulator as Testcases try to ssh to the VMs
__label__corrective CLOUDSTACK-2981: UI - create network offering - fix a bug that provider dropdown always bounced back to the first enabled option. It should only bounce back to the first enabled option when the selected option is disabled.
__label__nonfunctional MAPREDUCE-1981. Improve getSplits performance by using listLocatedStatus. Contributed by Hairong Kuang and Jason Lowe
__label__nonfunctional Minor performance improvement for bulk gets.
__label__corrective "cloudstack 3.0 new UI - download template - fix a bug that ""Please click ~~~ to download template"" dialog didn't pop up after extractTemplate API returned success."
__label__corrective "Added missing rules on router config  fixed ordering of multiple rules  removed duplicate rules  added fix for network stats  added a check for b64 decoding (to pad incorrect b64). Also added a catch exception to be logged on the configure main."
__label__corrective "Added few exception changes test suite name generation for information collected post run  fixed pep8 issues"
__label__unknown deleted duplicate EventCollector
__label__corrective "bug 12964: fix a JS error => ""args is undefined"""
__label__features "Run scenarios/features by name. Closes #233  #323"
__label__features HBASE-10031. Add a section on the transparent CF encryption feature to the manual
__label__nonfunctional Improved readability of AbstractBaseReplicatedRecordStoreTest.
__label__nonfunctional "Improved performance of iteration  specially for the GraphDB side."
__label__features "Remove comma-separated feature parsing for GetIndicesAction

This removes the parsing of things like `GET /idx/_aliases _mappings`  instead 
a user must choose between retriving all index metadata with `GET /idx`  or only
a specific form such as `GET /idx/_settings`.

Relates to (and is a prerequisite of) #24437"
__label__unknown Reduce duplicate entries for the same plugin and version when multiple update centers are publishing similar data
__label__corrective CLOUDSTACK-9782: Fix intermittent host-ha KVM test failures (#2256)
__label__nonfunctional "Revert ""OPLA: improved performance with variable management (avoiding copy for most of the cases)"""
__label__unknown [memcached] Removed groupId (duplicates parent).
__label__nonfunctional improve serialize performance
__label__features [WFLY-4692] : Configure the distributions in the dist modules instead of the feature packs.
__label__nonfunctional Improved performance of tree map
__label__features "Upgraded version to 2.1.0-SNAPSHOT  because we will release a new feature."
__label__unknown Removed duplicate Net classes in headless
__label__features added Round Robin Pool features to UltraDNS
__label__corrective CLOUDSTACK-4092: UI > listView widget: fix a bug that a grid row was incorrectly removed when a non-add action of listView failed.
__label__nonfunctional HDFS-10560. DiskBalancer: Reuse ObjectMapper instance to improve the performance. Contributed by Yiqun Lin.
__label__unknown Remove duplicate while-loop retries during ssh
__label__features "First cut of Guice Servlet 2.0. Contains regex dispatching  improved binding DSL  and almost the full gamut of features short of per-servlet filtering.

git-svn-id: https://google-guice.googlecode.com/svn/trunk@733 d779f126-a31b-0410-b53b-1d3aecad763e"
__label__corrective "Called the wrong method  fixing the same"
__label__corrective "Invalid [hyperv] removed the redundant connectToRemote  DisconnectRemote methods which in turn fixes this bug. connectToRemote was used to connect to share  but once the share is domain joined we don't need this method as we already have required permissions"
__label__corrective "cloudStack 3.0 new UI - system - fix a JS error ""args.context.hosts is undefined"" after adding a host and clicking the newly created host in listView."
__label__corrective [HUDSON-2829] I think I fixed this in 1.274. Let me know if that fixes the problem for you.
__label__nonfunctional Improve performance of DefaultShader#canRender(..) (#4531)
__label__nonfunctional avg function: small refactoring to improve code reuse and fix possible
__label__nonfunctional Additional performance improvements for StaticAssetService to use BroadleafFileServiceInitial - #432
__label__features "Update geo-shape.asciidoc

Added coming[] annotation for points_only feature"
__label__nonfunctional Minor performance improvement.
__label__corrective bug 10024: CloudStack UI - fix a bug that adding a pod from the resource page page didn't work.
__label__corrective [FIXED HUDSON-4765] Fix broken links for failed tests on MatrixBuild page.
__label__features "Added more translations  and started work on a Replace string feature"
__label__nonfunctional issue-332 : improve performance of ColumnSliceImpl instantiation and HColumnImpl getName()/getValue()
__label__nonfunctional performance improved for large gc logs and coarse zoom levels
__label__corrective new UI - fix a bug that UI didn't pass correct parameter for CreateServiceOffering.
__label__corrective CLOUDSTACK-6316: Fixed bvt failures because of test data and wrong references
__label__nonfunctional HIVE-4858: Sort 'show grant' result to improve usability and testability (Xuefu Zhang via Brock Noland)
__label__corrective bug 14610: cloudstack 3.0 - single sign on - fix a bug that logout didn't work  for single-sign-on.
__label__corrective CLOUDSTACK-4531: Fixed indent problem with the patch.
__label__nonfunctional Slight performance improvement in api/rules/tags
__label__nonfunctional ISPN-7929 Improve configuration readability of testing utilities
__label__nonfunctional improve TypeUtils performance
__label__features "Changed jetty version to 8.1.9  added JSTL libraries  completed basic UI features"
__label__nonfunctional ISPN-1456 Improve transactions performance by defining a non-system hashCode
__label__features Apply line filters only to the own feature path
__label__corrective "cloudStack UI - Secondary Storage page - fix a bug ""secondRowText is not defined""."
__label__corrective [FIXED JENKINS-11714] Fixed the problem in the find command operator priority.
__label__nonfunctional several performance improvements
__label__nonfunctional optimized for encode performance
__label__features CORE-375 Add update-rollback-update feature
__label__features Strip lines from feature paths if filters are specified
__label__corrective new UI - fix a bug that some menu at left navigation disappear after refresh page.
__label__features Added error message if user tries to use rename field feature on multiple fields.
__label__corrective php: Fix syntax error when pattern contains a single quote
__label__unknown removed chance of race condition due to duplicate tearDown methods
__label__unknown bug 7744: tab action - delete duplicate code that has existed in handleMidMenuItemAfterDetailsTabAction().
__label__nonfunctional Significantly improve LongEncodingStrategy.AUTO build performance (#4215)
__label__corrective bug 10368: better fix for the db connection problem.
__label__features Feature 847: Adds title case as a case changer
__label__nonfunctional HDFS-6606. Optimize HDFS Encrypted Transport performance. (yliu)
__label__corrective [ALLUXIO-1909] Fix failing tests
__label__corrective "bug 13648: fix a bug in listView widget - $listView.length is 0 after calling $(window).trigger('cloudStack.fullRefresh')  calling $listView.listView will encounter an error when $listView.length is 0."
__label__corrective bug 7713: Add Zone Wizard - Add IP Range to public network for advanced zone - fix a bug that domain dropdown was not populated.
__label__features "Added push to lyx feature: there is a problem however  (check line 476 in basepanel) pref.get('lyxpipe') return 'asdf'. When lyxpipe path is hard coded  tit works fine"
__label__nonfunctional Do not use the polling value for setting keep alive. Also use a non Connections pool when set to false to improve performance
__label__corrective [Python] Fix bug of test files about packageName
__label__corrective CLOUDSTACK-1995: Enhance resize volume tests to support xenserver hypervisor and fix few test flow errors
__label__nonfunctional Improve performance of creation of preview H2 DB.
__label__unknown "Removed some duplicate copyright header and made gogrid inherit from project  not multi."
__label__corrective "new UI - template page - fix a bug: clicking a template whose status or size is not blank  then click another template whose status or size is blank  the latter one wrongly show status or size from the former one."
__label__features move all EC2 entries into New Features
__label__features SECOAUTH-139: Refactor TokenEndpoint and related XML features
__label__unknown Removed duplicate key for bluelock in rest.properties.
__label__corrective Fix bugs with Bits.nextClearBit(int). Fixes #3198.
__label__features "Based on a discussion with Daniel Beck  implemented a master kill switch as an admin configurable feature."
__label__features also added the same feature to the trigger.
__label__nonfunctional CLOUDSTACK-7575: improved performance of cleanString method in StringUtils
__label__nonfunctional Optimize memory management and performance for graph rendering in Studio
__label__corrective [HUDSON-4941] Log which file had an XML parse error to assist in diagnosis & fix.
__label__nonfunctional Issue 1759: Improved serialization performance of value container
__label__nonfunctional Fixed bug on ObjectDatabase method discovering and optimized it for performance
__label__corrective "cloudstack 3.0 UI - listView - when clicking fast between different rows  JS error ""args.context.xxx is undefined"" appears.  e.g. ""args.context.instances is undefined"" appears when clicking fast between different rows in listView in instance page. Because when clicking fast  users might click another row before API response for this current row is back => which causes the JS error.  The fix is to overlay the whole listView by loading image (spinning wheel image) until click-handling for this row is done (e.g. API response is back)."
__label__nonfunctional Cache result of isCaseSensitive() method to improve performance
__label__features Remove heap histogram feature
__label__nonfunctional Fixed a bug on reusing of graph instance in thread local. Improved performance by avoiding creating a new Graph+DB instance in the case the kind of graph doesn't really matter (idempotent functions)
__label__nonfunctional HBASE-7952 Remove update() and Improve ExplicitColumnTracker performance (Raymond Liu)
__label__features initial integration of the quick silver feature.
__label__nonfunctional decrement ja size and improved performance
__label__corrective "CLOUDSTACK-495: cloudstack UI - template page - delete template/ISO - fix a JS error ""cloudStack.context.projects is null"""
__label__corrective CLOUDSTACK-1066: bug fixes to cloudstack package script
__label__corrective Fix return types for resetVmPassword and upgradeVirtualMachine commands.  Fix response for resetVmPassword to be a vm rather than success/failure.  Make sure the password is a transient variable for the resetVmPassword command so that the new password is returned to the user.
__label__features "Change separator for shards preference

The shards preference on a search request enables specifying a list of
shards to hit  and then a secondary preference (e.g.  ""_primary"") can be
added. Today  the separator between the shards list and the secondary
preference is ';'. Unfortunately  this is also a valid separtor for URL
query parameters. This means that a preference like ""_shards:0;_primary""
will be parsed into two URL parameters: ""_shards:0"" and ""_primary"". With
the recent change to strict URL parsing  the second parameter will be
rejected  ""_primary"" is not a valid URL parameter on a search
request. This means that this feature has never worked (unless the ';'
is escaped  but no one does that because our docs do not that  and there
was no indication from Elasticsearch that this did not work). This
commit changes the separator to '|'.

Relates #20786"
__label__features "decided to not include weighting on iterative maps. We can add it if its a useful feature  but it will be expense and require a Reduce..... though  with it  Gremlin will be semantically correct (albeit  awkaward at scale). More thought needed. An easy  efficient solution that is consistent throughout is currently the state of things."
__label__features [WFLY-4588] Update the Elytron specific configurations within the feature packs so Elytron is used exclusively for authentication.
__label__nonfunctional "implemented maven process caching to improve performance  especially in the distributed environment."
__label__corrective [ALLUXIO-1856] Fix failing unit tests
__label__corrective "CS-15801: cloudstack 3.0 UI - VPC - create new tier - fix an error ""Owner of vpc with specified vpcId is different from the network owner Acct[2-admin]""."
__label__nonfunctional Try to improve performance of MeasurePersister
__label__corrective iOS: bug fixed & tested the socket/serversocket implementation (working now).
__label__corrective [ALLUXIOå_2788] fix by replace Throwables.propagate with RuntimeException.
__label__features Duplicated scenario in cukes.feature
__label__nonfunctional Cleanup and improved readability for CloneAndRegisterMachineFromIMachineIfNotAlreadyExists.
__label__corrective "[JENKINS-22631] The wrong (newer) build was sometimes being marked for fixing  depending on arbitrary directory listing order."
__label__nonfunctional Improve Hive snippet testing.
__label__unknown remove duplicated scheduled tasks from VpcVirtualNetworkApplianceManagerImpl
__label__corrective CLOUDSTACK-6065: Fix NPE problem caused by the lack of context setup in threads from agent manager thread pool
__label__features Repair closing of CoarseChangeFilter and apply it for the autosave feature
__label__corrective integrated stapler 1.18 to fix a problem running it in Winstone with whitespace in path
__label__corrective Network-refactor: fix bugs in components.xml discovered by unit tests
__label__unknown Change zadd parameter order to allow duplicated scoremembers but not members
__label__nonfunctional Merge pull request #709 from pveentjer/improvement/3.maintenance/versionasint-exception-improvement
__label__features "Update views.html

Clarified ""localized templates"" feature in the tip box."
__label__features "Add ""Extreme Fitness Tracker Free"" to featured list"
__label__nonfunctional Improve performance of TestDatabase
__label__features restore endpoint-publish feature on server side
__label__features Added description of the key generation regxp replace feature.
__label__corrective "cloudstack 3.0 UI - fix a JS error ""selectedNetworkOfferingObj is not defined"""
__label__corrective bug 11441: cloudStack - host page - Edit Host - fix a bug that hosttags editing field didn't get refresh when clicking different hosts in middle menu.
__label__corrective "[FIXED HUDSON-5776] fix serialization problem with empty CopyOnWriteMap.Tree "
__label__nonfunctional improved cast to enum performance
__label__unknown dead-504: Remove duplicate cloud-set-guest-password script
__label__nonfunctional "improved OStorageRemote testability  added unit test for remote async operation management."
__label__corrective bumped up to 0.8 to fix IE7 rendering problem
__label__features avro-extensions -- feature to specify avro reader schema inline in the task json for all events (#3249)
__label__corrective CLOUDSTACK-6047: Fix fail to enable VPN
__label__nonfunctional Improve performance by preventing dead connection from being processed
__label__nonfunctional Distributed: improved performance
__label__corrective appliance: fix branch finding method from e16414e even Junio can be wrong
__label__corrective "made sure that even if a bug similar to what was just fixed in the previous commit re-surfaces  we still won't kill the master JVM by eating its memory"
__label__corrective bug 9493: fixed the bug in Basic zone when nic_count was updated incorrectly due to multiple domRs per network
__label__corrective cloudStack - Cluster page - fix a bug that Manage Cluster action showed wrong message.
__label__corrective [ALLUXIO-1910] Fix failing style checks
__label__nonfunctional HBASE-11362 Minor improvements to LoadTestTool and PerformanceEvaluation (Vandana Ayyalasomayajula)
__label__nonfunctional "refactoring  performance improvements by using array vs. lists"
__label__corrective new UI - instance page - fix a bug that top message doesn't show new password after reset pasword for VM succeeds.
__label__corrective CLOUDSTACK-7691: Fixed 'Exception not raised' issue in test_project_limits.py
__label__nonfunctional "AVRO-464: Work in progress on performance enhancements  including atom-based API  changing structure of records and arrays to not use hash tables as much. This changes the API incompatibly!"
__label__corrective [SECURITY-225] Fix failing tests
__label__features Add content text to feature toggles. Landscape on large and up only.
__label__features More cucumber-features passing
__label__corrective "new UI - fix a bug that account failed to udpate resource limit (""resourcetype is wrong)."
__label__features Combined features from JBPM-4526 (reoccurring jobs) and BZ-1171859-history log cleanup to provide possibility to schedule automatic cleanup of logs in background job
__label__corrective 5784: Fixed a log rotation configuration problem on openSUSE.
__label__features [WFLY-4872] Add configuratios to the servlet-feature-pack that contain the Elytron subsystem.
__label__nonfunctional HDFS-7433. Optimize performance of DatanodeManager's node map. Contributed by Daryn Sharp.
__label__features [WFLY-9008] Add licenses to the servlet-feature-pack
__label__corrective CLOUDSTACK-1840: cloudstack UI - VM Wizard - fix a bug that the first parameter in jQuery.grep() should not be null.
__label__corrective CloudStack - Add Network Dialog - fix a bug that & is missing between isShared parameter and isDefault parameter in createNetwork API call.
__label__corrective Summary: Fix exception handling in security_group.py
__label__corrective "bug 7582: there was an error in re-starting user vm  due to the master refactor which happened. Fixed that regression"
__label__corrective bug 10433: fix a bug that was caused by global zone name cache.
__label__features removed 'messages around' feature for now #ES
__label__features "New aggregations feature - ï¿½PercentageScoreï¿½ heuristic for significant_terms aggregation provides simple ï¿½per-capitaï¿½ type measures.

Closes #9720"
__label__corrective [TK-3119] Fix NPEs and improve exception handling + error messages
__label__nonfunctional Improve the sync block performance
__label__features Implemented push-to-emacs feature. Improved ISI importer. Changed MedlineFetcher.fetchMedline to static. Added first version of Toralf Senger's key generator patch.
__label__corrective new UI - resource page - fix a bug that nothing happened when clicking Add Zone button after splitting resource.jsp into 7 JSP file.
__label__nonfunctional "Intorducing pluggable element wrappers. This should lead to a performance improvement for libraries that use Blueprints - Instead of wrapping elements as RawElement->Neo4j2Element->LibrarySpecificElement  we can do RawElement->LibrarySpecificElement directly  and improve memory usage. As part of this commit  some additional cast operations were removed (to  hopefully shave a few more milliseconds). NOTE: The code passes the test suite  but still needs some minor cleanup."
__label__features Java-Helloworld: Correct the indentation of helloworld.feature
__label__corrective "bug 7659: fix the race condition that agent inside systemvm connecting to mgt server at the head of startcommand returning to mgt server  then got a NPE. and fix bugs in security group of KVM"
__label__corrective clean code and some bug fix
__label__corrective bug 9344: fixed problems with the template table
__label__corrective [ALLUXIO-1949] Fix failing unit tests
__label__corrective new UI - ip address page - fix a bug that newly created port forwarding rule appear on every IP.
__label__corrective "CLOUDSTACK-5980: Fix test case failing with ""Error reading SSH protocol banner"" ssh error"
__label__features "Import the new n-gram tokenizers and filters from Lucene.

Lucene 4.4 will feature new n-gram tokenizers and filters that should not
generate broken offsets (that cause highlighting bugs) anymore. They also
correctly handle supplementary characters and the tokenizers can work in a
streaming fashion (they are not limited to the first 1024 chars of the
stream anymore)."
__label__features Added whitespace trimming to Entry Editor.  Added deliminator-based AutoGrouping to Group feature (like separate keywords by comma).
__label__corrective "IP Address page - fix a bug ""networkObj.service[0] is undefined"""
__label__nonfunctional "SONAR-5490 Improve readability and payload of results in the page ""Rules"""
__label__nonfunctional OPLA: improved performance with variable management (avoiding copy for most of the cases)
__label__corrective Fix for IndexOutOfBoundException in invalid connect process to failing SSVM.
__label__features "[STORE] Move to on data.path per shard

This commit moves away from using stripe RAID-0 simumlation across multiple
data paths towards using a single path per shard. Multiple data paths are still
supported but shards and it's data is not striped across multiple paths / disks.
This will for instance prevent to loose all shards if a single disk is corrupted.

Indices that are using this features already will automatically upgraded to a single
datapath based on a simple diskspace based heuristic. In general there must be enough
diskspace to move a single shard at any time otherwise the upgrade will fail.

Closes #9498"
__label__features All cucumber-features scenarios are green. Closes #45.
__label__nonfunctional Improve readability of schema-h2.ddl
__label__corrective [TACHYON-1582] Fix a bug introduced in IDE refactoring
__label__corrective "[FIXED HUDSON-1882] If ""svn update"" fails because a local file is colliding with newly added files  revert to check out. This fix is in 1.228."
__label__nonfunctional Small performance improvement in Cache
__label__features Explicitly add Google URL cleaner as feature
__label__nonfunctional Optimize memory management and performance for graph rendering in Studio
__label__corrective "cloudstack 3.0 UI - security group - ingress rule - fix a bug that Account  Security group failed to be translated."
__label__corrective bug 13362: fix error message in StorageManagerImpl.java
__label__nonfunctional Improved performance on fetch plan processing issue #4442
__label__nonfunctional "Improved readability of code for IMap.values() and IMap.values(Predicate)  e.g. newlines  moved declarations to usage  new sub-methods. Sorted methods per superclass and/or from public to private. Added @Override to methods."
__label__corrective [FIXED JENKINS-9634] fixed a bug in the Mac OS X arg parsing code
__label__nonfunctional HADOOP-6502. Improve the performance of Configuration.getClassByName when the class is not found by caching negative results. Contributed by Sharad Agarwal and Todd Lipcon.
__label__corrective [TACHYON-1602] Fix bug with exception type
__label__corrective bug 7022: fixing the custom size for volumes bug
__label__nonfunctional Merge pull request #1512 from gpang/master_testing_improvement
__label__corrective use the latest HtmlUnit to fix the test failure caused by YUI 2.9
__label__nonfunctional More performance enhancements for Local* classes
__label__nonfunctional Unsafe byte array comparator performance was improved
__label__nonfunctional ISPN-1780 Improve performance of DefaultConsistentHash.locateInternal
__label__features AS7-5826 Multi-JSF feature
__label__nonfunctional improved performance for BeanToArray parse
__label__features "Remove the ability to enable doc values with the `fielddata.format` setting.

Doc values can now only be enabled by setting `doc_values: true` in the
mappings. Removing this feature also means that we can now fail mapping updates
that try to disable doc values."
__label__nonfunctional CLOUDSTACK-6047: VR resource testing improvements
__label__nonfunctional "MAHOUT-767 Improve RowSimilarityJob performance  threshold integration"
__label__nonfunctional Improved performance on type checking on alter property
__label__nonfunctional [ISPN-169] (Improve the performance of Fqns by backing with an immutable array rather than a list)
__label__nonfunctional Minor: improved performance
__label__nonfunctional CORE-864 loaddata performance enhancement
__label__corrective [TACHYON-470] Fix failing unit tests --- some are obsolete
__label__corrective [TACHYON-1311] Fix a failing unit tests on proto buf
__label__corrective CLOUDSTACK-5674: cls.fail does not work in setUpClass fixed it with assert.
__label__features "Remove back compat for the `path` option.

The `path` option allowed to index/store a field `a.b.c` under just `c` when
set to `just_name`. This ""feature"" has been removed in 2.0 in favor of `copy_to`
so we can remove the back compat in 3.x."
__label__corrective [TACHYON-1106] Fix failed unit tests
__label__nonfunctional improved get statdata performance.
__label__features pick up 1.36 for an improvement in the export feature.
__label__features "Deprecate ProvisionListener.ProvisionInvocation.getDependencyChain()

A benchmarking experiment* shows that maintaining the dependency stack costs about 10% of guice performance.  Anecdotally this feature also isn't very popular  so eliminating it seems reasonable.

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=131748522"
__label__corrective [JENKINS-34228] Fixed IOException in DeleteBuildsCommand class
__label__nonfunctional [FIXED HUDSON-2552] Applied a modified version of the patch that improves the usability and code reuse
__label__nonfunctional Issue 55 enhanced integration tests to support redirect testing
__label__unknown Removed duplicate code in CitrixResourceBase.getPatchFiles
__label__nonfunctional Worker network testing improvements
__label__corrective bug 11045: Fix exception exit of CheckRouterTask
__label__corrective "IP Address page - fix a bug ""networkObj is undefined"" when login as user-role."
__label__corrective new UI - fix a bug that domain tree doesn't show 2nd-level or lower level.
__label__unknown bug 9259: removed some of the extra vpn statements duplicated from my change and chiradeep's change
__label__nonfunctional Filters usability improved by automatically open/close settings panel
__label__features Updates for the max selectbox list feature.
__label__corrective 1. Change name Partition to File in DataServerMessage. 2. Add equal method to checkpointinfo. 3. fix a bug in dataserver.
__label__corrective Reworking rename call to reduce rpc calls and fixing a bug with the rename integration tests
__label__nonfunctional AVRO-354. Performance improvement to BinaryDecoder.readInt()
__label__corrective CLOUDSTACK-537: cloudstack UI - Advanced SG-enabled zone - VM Wizard - fix a bug that networkID was not passed to API call when selected networks don't include security group service.
__label__corrective CLOUDSTACK-2351: (1) object store - listStorageTypes API has been changed to return 'NFS'. Here is related UI change. (2) Infrastructure menu - secondary storages- add secondary storage dialog - fix a bug that this dialog failed to pop up when there is zero zone.
__label__corrective "cloudstack 3.0 new UI - create network offering - fix a bug that servicecapabilitylist was still passed to API when corresponding service is not selected.  (API returns error: ""Capabilities for LB service can be specifed only when LB service is enabled for network offering."")"
__label__features HTML formatter produces empty report if no features run. Closes #191
__label__features Added Content Protection and Scaling Features
__label__corrective CLOUDSTACK-109: cloudstack UI - (1) account page: fix a bug that system-generated default admin account wrongly had enalbe/disable/lock/remove option. (2) user page - fix a bug that system-generated default admin account user wrongly had enable/disable/remove option.
__label__features Simplified setup and a bit more in the demo feature.
__label__nonfunctional cache module directory to improve CI performance (#5025)
__label__nonfunctional "MAHOUT-749: Implemented multiple reducer approach from Jira patch  plus a scalability enhancement to avoid accumulating merged clusterIds if -cl option is not present. The defaults are for the same behavior as before.  All tests run though this needs more testing to see how it really scales"
__label__features make WebServiceRef feature complete
__label__unknown Remove duplicated constants that are now available.
__label__nonfunctional Improve readability and documentation
__label__nonfunctional improved performance for decode int[]/float[]/float[][] fieldType.
__label__features "RPMs: Add timeout to shutdown with KILL signal

If the thread pools of an elasticsearch node cannot be shutdown
immediately  a wait of 10 seconds is added. This clashes with the
RPM scripts  as by default the init functions wait for 3 seconds
for a service to shutdown before a KILL signal is sent  resulting
in an unclean shutdown - not from an elasticsearch point of view 
but from init system point of view  as some lock files are left
around.

In order to prevent this the init script as well as the systemd
configuration now feature the same timeout than the debian package 
which is 20 seconds.

The await statement  which causes the 10 second delay can be found in
InternalNode.close()"
__label__nonfunctional HBASE-6109 Improve RIT performances during assignment on large clusters (N Keywal)
__label__nonfunctional added concurrent CCPbH implementation w/ ~ 8% performance improvement in stress testing and significantly cleaner dead client and host removal semantics
__label__nonfunctional Create DB views to improve ListHostsCmd performance.
__label__features SECOAUTH-68: use @MVC features in sparklr2
__label__unknown Removed a duplicate method
__label__unknown bug 7018: fixed an issue where dialog boxes were not correctly being cleaned up when you navigated in the UI.  Essentially they were being duplicated.
__label__corrective "cloudstack 3.0 UI - VPC - add LB rule - fix a JS error ""args.context.networks is undefined"" when configure stickiness."
__label__nonfunctional Improve skip scan filter performance for the IN case
__label__features "Add version to prebuilt analyzers

This patch takes the version of the created index into account when a
prebuilt analyzer is created.
So  if an index was created with 0.90.4  then the prebuilt analyzers
will be the same than on the 0.90.4 release.

One reason for this feature is the possibility to change pre built
analyzers like the standard one.

The patch tries to reuse analyzers as mutch as possible. So even if
version X.Y.Z and X.Y.A use the same lucene analyzers  the same instance
is reused in order to prevent overcreation of lucene analyzer instances.

Closes #3790"
__label__nonfunctional improved serialize performance
__label__nonfunctional Issue #2901 pool performance was improved up to 255 000 ins/s in benchmark.
__label__nonfunctional Notes re possible performance improvement via system property.
__label__corrective "[FIXED HUDSON-3983] The root cause of the problem is that the ""test e-mail"" feature wasn't using the SMTP auth values as currently entered in the form  but it was picking up values from what Hudson is currently configured with. This is fixed in 1.325."
__label__nonfunctional YARN-1751. Improve MiniYarnCluster for log aggregation testing. Contributed by Ming Ma
__label__nonfunctional SONAR-6959 Performance improvements
__label__nonfunctional Improve readability and completeness of PrintModelProcessor output
__label__unknown Allow login modules with duplicate code within same security domain
__label__features implement subscription forward to feature.
__label__nonfunctional Improved performance of Dijkstra and shortest path algorithms
__label__features "o added @StepDefinitions annotation  to register all the steps for a feature"
__label__corrective CLOUDSTACK-6511: fixed for bvt and component test failures
__label__corrective bug 10352: fixed the issue.  I mistakenly threw an exception when I was not suppose to
__label__nonfunctional HDFS-11353. Improve the unit tests relevant to DataNode volume failure testing. Contributed by Yiqun Lin.
__label__nonfunctional added liquibase.serviceLocator.loglevel system property.  Performance improvement on reading from jars
__label__unknown Removed duplicate code from FileHandle
__label__nonfunctional Improved performance on fetch plan processing issue #4442
__label__corrective [UI] bug fix: the host uuid is wrong if it is dedicated to a domain
__label__features Updated New Features section
__label__corrective update volumes.path to fix stop/start vm error after
__label__corrective [ALLUXIO-1856] Fix failing unit tests
__label__nonfunctional Improved performance on cloning of OMVRBTreeRID objects during query: all the items were copied!
__label__corrective bug 13461: deployVM wizard - select ISO step - fix a bug that hypervisor div didn't get removed if ISO in another tab is selected (select ISO step has 3 tabs now).
__label__nonfunctional "better support for basic security in templates  other integration testing improvements"
__label__nonfunctional BroadleafCommerce/QA#2946 - Refactor to reduce duplication & enhance readability
__label__unknown dead-3797: remove duplicate packages from base.sh already in postinstall.sh
__label__features add search timeout feature.
__label__corrective [FIXED HUDSON-8106] fixed an abstract error.
__label__unknown HBASE-7625 Remove duplicated logFSTree() from TestRestoreFlushSnapshotFromClient (Matteo Bertozzi)
__label__nonfunctional integration testing work and other improvements
__label__nonfunctional JBRULES-2642 Getting tests working for new updated parser.\n improved test readability
__label__corrective [UI] bug fix: fix update Networks in sub-domain issue by adding listAll=true in listNetworks
__label__features "Enable strict duplicate checks for all XContent types (#22225)

With this commit we enable the Jackson feature 'STRICT_DUPLICATE_DETECTION'
by default for all XContent types (not only JSON).

We have also changed the name of the system property to disable this feature
from `es.json.strict_duplicate_detection` to the now more appropriate name
`es.xcontent.strict_duplicate_detection`.

Relates elastic/elasticsearch#19614
Relates elastic/elasticsearch#22073"
__label__nonfunctional [ALLUXIO-1839] Improve readability.
__label__nonfunctional introduced the Graph class to improve the OO-ness of the model classes. This should also improve testability a bit.
__label__features "What's new and migrating are prominently featured

Before this commit those were burried in the Appendix where few would
guess to look. Previously that information was at the top  so it makes
sense to point to the Github wiki from the index HTML page.

Also a general update of the index page. Since we have recently revised
the overview  we can simply point to it and keep it shorter.

The section listing now includes more details per section."
__label__corrective tools/apidoc: Fix the bug when build apidoc under windows cygwin environment
__label__features Update explicit feature path (but keep it commented out)
__label__nonfunctional improved test performances for sq #3 (use MetaDataHandler for MySQL)
__label__nonfunctional "SQL min: fixed bugs introduced by last Adolfo's commit. Improved performances avoiding to have a temporary array in memory  but rather used the iterator"
__label__corrective "new UI - Add Host button displays on host page now. fix a bug (""podObj is not found"") that appears when clicking Add Host button on host page without visiting pod page first."
__label__features project-based security option should only show up when the feature is in use.
__label__nonfunctional improved performance for android
__label__corrective "CLOUDSTACK-3759 [Automation] Failed to attach volume to VM  while vm are in stopped state Fix the null pointer."
__label__features "Add virtual column types  holder serde  and safety features. (#3823)"
__label__nonfunctional SONAR-3104 Improve the usability of the project 'History' page
__label__unknown Refactored and improved hideSoftKeyboard()
__label__nonfunctional allow ability to specify tableName in indexExists precondition in case implementations can make performance improvements
__label__nonfunctional HADOOP-6394. Add a helper class to simplify FileContext related tests and improve code reusability. Contributed by Jitendra Nath Pandey.
__label__nonfunctional HIVE-3388 Improve Performance of UDF PERCENTILE_APPROX() (Rongrong Zhong via Siying Dong)
__label__features "executeOnKeys(keys entryprocessor) introduced on IMap. With this feature you can run entry processor on a set of keys"
__label__corrective IP Address - load balancer page - fix a bug that algorithm dropdown didn't show the right value in edit mode.
__label__corrective CLOUDSTACK-6342: UI - Load Balancing page - LB rules - VM + IP Address - fix a bug that vmidipmap was not sent to API.
__label__corrective more cross platform support and bug fix
__label__unknown Merged duplicated code to set window icons in Lwjgl3Application and Lwjgl3Window.
__label__corrective "bug 10222: fixed issue with associate ip introduced more than one nic.  The problem is that associate ip automatically creates a nic but doesn't have sufficient information to properly creates so it uses what it knows for sure is the naming pattern to do it.  However  we changed the naming pattern and it broke.  I fixed it by passing all of the information in the ipaddressTO object."
__label__corrective [SMALLFIX] Fix a wrong whitespace change.
__label__features update create build introduce functionality behavior modify modification
__label__features Our first cucumber-features scenario is passing.
__label__corrective [FIXED HUDSON-2230] Fixed IllegalMonitorStateException. In 1.249.
__label__corrective bug 9638: fixed bunch of DB upgrade bugs
__label__nonfunctional Merge pull request #6613 from serkan-ozal/enhancement/master/osgi-testing
__label__nonfunctional BroadleafCommerce/QA#2082 - Further refactoring to clean up logic and enhance readability.
__label__unknown prevent duplicate module entries : still failing for a correct module tree
__label__corrective CLOUDSTACK-9208: Assertion Error in VM_POWER_STATE handler- Fixed
__label__corrective [JENKINS-32765] Fix failing tests
__label__unknown HBASE-18660 Remove duplicate code from the checkAndPut method in HTable (Yun Zhao)
__label__nonfunctional [ISPN-97] - Improve configuration processing and maintenance
__label__nonfunctional buffering to improve performance.
__label__nonfunctional "IN PROGRESS - issue TRUNK-2874: Improved error message when you try to install in testing mode  and the Release Testing Support module is not installed"
__label__unknown moving duplicate code to separate method. step 2
__label__corrective CLOUDSTACK-6600: fix a bug in IAM cache in constructing cache key.
__label__features carve out EC2Api/EC2AsyncApi for new features
__label__unknown secondary storage - fix a bug that newly created secondary storage has duplicate copy.
__label__corrective picked up stapler 1.66 for a bug fix to issue #1443.
__label__corrective new UI - host page - fix a bug that add host dialog and add primary storage dialog don't pop up.
__label__corrective [FIXED JENKINS-9062] Fixed a bug in persisting user configuration that causes NPE in some plugins
__label__corrective "gles 2.0 is working  need to fix up getting the position of a direct buffer in iosgles20.cpp  otherwise vertex arrays won't work. This is still a bit to easy  something must be wrong"
__label__nonfunctional Minor: slightly improved performance of common methods
__label__corrective "Javascript: bug fixes  clean-ups  tests"
__label__corrective bug 10375: fixed a problem with build name
__label__nonfunctional read all maven project in one time instead of repeating project read : definitely improve performance for project with a lot of modules
__label__features Ensure glue and feature path if system properties don't set them.
__label__nonfunctional "[iphone] now decoders need to be injected into ZXingWidgetController to enhance performance when only a few readers are needed. One exc bad access bug solved. A few minor bugs remain in ScanTest. 1st status bar does not reappear when success of scan. this one should be easy to fix. 2nd ScanTest does not display the results when scan success for the first time  but only second time. This second bug is strange"
__label__corrective "new UI - Add Host button displays on Primary Storage page now. fix a bug (""podObj is not found"") that appears when clicking Add Host button on Primary Storage page without visiting pod page first."
__label__unknown bug 11361: removing duplicate entries from message.properties
__label__corrective bug 7276: fix syntax error in html code. (merge from 2.2.beta1 branch to master branch)
__label__corrective bug 12859: cloudstack 3.0 new UI - systemVM page - migrate action - fix a bug that passed an empty virtualMachineId to API.
__label__nonfunctional Improve MathUtils code performance when getting all statistics.
__label__corrective bug 10416: fixed the bug in agentLoadBalancerPlanner
__label__features Disabled unfinished link-upgrade-feature to avoid annoyance for CVS users.
__label__features "add checks for: NetworkType  NetworkConfiguration  IpScope  NetworkFeatures  SyslogServerSettings  RouterInfo  NetworkService  IpRange(s)  IpAddress(es)"
__label__corrective "IP Address page - fix a bug ""networkObj is undefined"" when login as user-role."
__label__nonfunctional AS7-4547 Removed the setting of -XX:+TieredCompilation from the standalone.sh file to improve throughput on performance benchmarks.
__label__corrective implemented a fix for the data-loss problem.
__label__nonfunctional Store: small performance improvement on deserialization
__label__corrective GWT: Fixed SuperJumper compile error
__label__corrective "whilst testing my enh  found that this call was using the wrong method name. Checking in the fix for the same."
__label__nonfunctional Fixed bug on ObjectDatabase method discovering and optimized it for performance
__label__nonfunctional Hazelcast Client performance enhancements:
__label__nonfunctional Issue #2901 pool performance was improved up to 255 000 ins/s in benchmark.
__label__corrective [SMALLFIX] Fix failed setTtl test
__label__unknown "Remove duplicate prop type  move mixin declaration to proper place."
__label__corrective bug 7573: Zone page - Add Pod Dialog - fix a bug that duplicate newly pod node appears when zone node is close after add pod action succeeds.
__label__corrective [JavaPlayFramework] Add parameters for beanValidation in the application.conf + fix bugs (#6794)
__label__corrective bug 10341: propagate fix for concurrentoperationexception from 2.2.8
__label__corrective new UI - fix a bug that action list get duplicate actions
__label__features HBASE-5228. [REST] Rip out transform feature
__label__corrective CLOUDSTACK-6626: UI - fix a bug that g_userid was not declared.
__label__nonfunctional Adds smart serialization of operation to optimize performance/reduce size
__label__features Change the features cards.
__label__nonfunctional Improve the performance of BeanManagerImpl.isProxyRequired
__label__corrective CLOUDSTACK-4199 Fixed redundant router fail over
__label__nonfunctional "SONAR-5490 Improve readability and payload of results in the page ""Rules"""
__label__corrective "bug 7608: fix a bug ""$editFields is undefined"" when visiting a non-editable page first."
__label__corrective new UI - domain page - restore listResourceLimits section since bug 6697 is fixed.
__label__features MAHOUT-1378: Running Random Forest with Ignored features fails when loading feature descriptor from JSON file
__label__nonfunctional #1633 Trying to improve performance
__label__corrective Rename scripts and fix a null point bug in InodeRawTable.java
__label__corrective bug 10759: fixed the bug in SqlGenerator - attributes weren't set right if GENERIC.DAO.REMOVED attribute was present in the list (happened for disk and service offerings)
__label__nonfunctional [DROOLS-1026] improve equals/hashCode performances for all rete nodes
__label__features map entry processor (executeOnKey feature)
__label__corrective integrating remoting jar with fix to the missing title.png problem
__label__corrective "not sure if this is it but this might fix #513 ""Immediate retry after failed svn checkout"""
__label__unknown "Remove duplicated Class-Path entry  could fix bug 531505"
__label__nonfunctional HADOOP-6166. Further improve the performance of the pure-Java CRC32
__label__nonfunctional "naming conventions work  events improvements  integration testing work"
__label__features adding notes about experimental features
__label__nonfunctional Fixed issue where we were getting the time of the wrong dir in path watch stacker runnable / Performance improvements checking if directory has an __init__ inside it.
__label__corrective "new UI - IP Address page - fix a bug that JS error ""$midmenuItem1 is null or not an object ""  ""jsonObj is null or not an object"" when switching between tabs on an empty page."
__label__corrective CLOUDSTACK-3020: Fix assert error
__label__corrective "* Fixed error when using stdin as ""-"" is parsed by args4j which does not understand it;"
__label__unknown "dead-9252: Remove duplicates getNfsVersion  refactor"
__label__nonfunctional Clarify the cases where we hand-roll in the optimized subset of a save() and how config files are maintained
__label__corrective "apache jira CLOUDSTACK-86: cloudstack UI - Instances page - NICs tab - fix a bug that got networkname from a wrong position in array of args.context.instances[0].nic. To correct and simplify it  use API response of ""listVirtualMachines&details=nics&id=N"" instead of API response of ""listVirtualMachines&id=N"" in $.map()."
__label__nonfunctional HBASE-12740 Improve performance of TestHBaseFsck
__label__corrective bug 7960: the npe should be fixed with my previous fix. adding better logging and some exception handling
__label__features Add back reuse bitmap feature.
__label__corrective bug 7271: Fixed an issue where async query commands continue to execute even after leaving the current page context.   This results in some weird UI behavior such as duplication or even items being added to the wrong pages.
__label__corrective Queue.clearLeftItems to fix AbstractProjectTest.testGetBuildAfterGC test failure after 84a2593.
__label__nonfunctional "HIVE-16912 Improve table validator's performance against Oracle (Naveen Gangam  reviewed by Aihua Xu)"
__label__nonfunctional HIVE-13293: Cache RDD to improve parallel order by performance for HoS (Rui reviewed by Xuefu)
__label__corrective [HUDSON-5391] Fixed the infamous Turkish bug.
__label__corrective "fixed issue849 using the fix suggested by treyy333  when calling setSize() and flip() together  the offsets were being used wrong  now they are divided by widthRatio/heightRatio before calling AtlasRegion.flip() inside AtlasSprite.flip() and they are multiplied again after the call."
__label__unknown WFLY-5698 Remove duplicate keys from clustering LocalDescriptions.properties; remove extraneous double spaces
__label__corrective [FIXED JENKINS-10081] fixed the double escaping problem.
__label__nonfunctional Improved testing/javadoc/argument-checking for the ClientService
__label__features "[mybatis] multi-db feature 2nd part readded  still in draft"
__label__corrective CS-15452: Fix wrong repsonse ID for s2s vpn
__label__nonfunctional update IncrementalIndex to support unsorted facts map that can be used in groupBy merging to improve performance
__label__corrective "bug 11070: cloudStack - delete domain/IPAddress/SecurityGroup/snapshot/volume - fix a bug that an API error showed after account was deleted (""listxxxxxxx&id=N"")"
__label__features Address Feature#105:Implement support for PLAYER_ANIMATION hook/event.
__label__corrective CLOUDSTACK: 4635 - Fixed test case issues due to wrong indentation
__label__corrective CLOUDSTACK-8516: Fixed syntax errors and pep8 issues in testpath_storage_migration.py
__label__corrective [SMALLFIX] Fix a falling unit test MasterClientAuthenticationIntegrationTest which is expecting a wrong exception type
__label__features "Reorganized menu:
- Added Search menu containing all search and scan features incl web search
- Moved some items such as PDF/PS sync. into 'Legacy tools...' below Tools
- Reorganized items within Tools menu
- Updated a number of help files to reflect interface changes"
__label__corrective [TACHYON-1257] Fix bug FileSystemMaster causing FileSystemMasterIntegrationTest flaky
__label__features Add progress bar feature and samples.
__label__corrective bug 10352: fixed the issue.  I mistakenly threw an exception when I was not suppose to
__label__nonfunctional Minor testing improvements
__label__features carve out EC2Api/EC2AsyncApi for new features
__label__unknown Remove test cases duplicated code.
__label__corrective Fix exception listNetworks with pagesize=0
__label__unknown Remove duplicate field in constructor
__label__features Refined new marking feature so old-style markings are unmarked as gracefully as possible.
__label__nonfunctional HIVE-2370. Improve RCFileCat performance significantly (Tim Armstrong via Ning Zhang)
__label__corrective kvm: Fix a NullPointerException which occurs when storage pool creation fails
__label__features Rewrite of menu handling and inflation to use the native Menu instance via a wrapper when on post-3.0. This allows us to remain forwards compatibile with any new features introduced to the menu XML schema while still supporting whatever we want on older platforms via the custom inflater.
__label__features Heartbeat for Java client feature explanation
__label__nonfunctional more testability improvements.
__label__corrective Forgot to commit this crucial change. That means the fix for this bug is actually in 1.205  (issue #1482)
__label__nonfunctional Improve testability of Dao
__label__unknown Add the 'extractDuplicates' parameter enabling the duplicates detection and extraction
__label__nonfunctional CORE-2528 Oracle: improve unique constraint snapshot query performance
__label__features renamed features to highlight their focus
__label__unknown dead-3004: remove duplicate ssvm-check.sh
__label__nonfunctional Dealing with large files: performance improvements in the outline tree content provider.
__label__features Change order and wording of action item buttons in the feature demo to match the tab section.
__label__nonfunctional CORE-2371 Improve performance
__label__corrective CLOUDSTACK-7425: Fixed 'Failed to create network offering due to invalid service Lb'
__label__nonfunctional improved basic number parse performance.
__label__unknown Moved duplicated code to RunNotifier.testAborted()
__label__corrective "new UI - instance page - fix a bug that JS error ""jsonObj is null or not an object"" when switching between tabs on an empty page."
__label__nonfunctional Cleanup code and Improve readability of TachyonConf.java
__label__nonfunctional Reduce the wait time to improve performance
__label__features removed hostgroup feature - explanation: http://www.lennartkoopmann.net/post/11612984083/hostgroups-in-graylog2-will-die
__label__unknown Remove the old duplicate savepassword.sh
__label__features Feature Request 839: Add links to jabref in about section
__label__corrective bug 10737: Fix java.nio.BufferOverflowException in decompression
__label__corrective 1. add more log for rename. 2. fix a remote read port bug.
__label__corrective CLOUDSTACK-2865: fix error in prepareStop
__label__nonfunctional ISPN-1725 Improve performance of GroupManagerImpl#getMetadata
__label__features Make it possible to clobber feature paths and glue with -Dcucumber.options
__label__features "Finish feature to search on trace headline

Also change terminology from trace description to headline. Also make
searching case-insensitive for both trace headline and trace user ID."
__label__features "Deprecate the `_default_` mapping. (#25652)

Now that indices cannot have types anymore  this feature does not buy anything
anymore.

Closes #25500"
__label__nonfunctional ISPN-1015 - Optimize HotRod client to match Memcached performance
__label__features Squashed dirty Spring features
__label__corrective bug 10232: CloudStack UI - Instance page - fix a bug that VMName was not decoded when encode.api.response is set to true.
__label__corrective 1) More fixes for the problems found by findBugs
__label__corrective new UI - Instance tab - fix a bug that only 1st action is taken
__label__corrective [UI] bug fix: Delete added ACL lists is not available for Domain Admin and normal users
__label__corrective cli: Fix attribute error and fix helpdoc
__label__nonfunctional HBASE-1236  Improve readability of table descriptions in the UI
__label__corrective [SECURITY-167] fix failing unit test.
__label__features "Enable validation of Optional values

To validate values contained in an `Optional` type  we need to use a new
feature in Hibernate Validator 5.1  so this introduces a dependency
version bump to 5.1.1.

This makes use of an *experimental* feature in Hibernate Validator  so
I'm not 100% sure we'll want to make use of it yet.

To validate the contents of an `Optional`  you need to include an
`@UnwrapValidatedValue` annotation on the property being validated:

```java
@Length(min = 32  max = 32)
@UnwrapValidatedValue
private Optional<String> md5 = Optional.absent();
```

Absent values are considered `null` when validated  so their behaviour
depends on your chosen constraints' handling of `null` values.

We have to register this inside `Bootstrap`  and I noticed that we don't
(currently) expose a way for users to register more validation behaviour
through `Bootstrap`  so we should probably look in to that."
__label__nonfunctional Improve readability of RoutesFilter
__label__corrective "new UI - zone page - fix a bug that happened when deleting zone: ""$leftmenuItem1 is not defined"""
__label__nonfunctional HTTP: Improved performance by using a larger buffer
__label__nonfunctional Improved performance on query against not-unique indexes
__label__nonfunctional "CLJ-1618 - Support IReduceInit in set  improve performance"
__label__features add request controller subsystem to web feature pack standalone config
__label__nonfunctional Merge pull request #10258 from pveentjer/v3.9/performance/optimize-selector-by-default
__label__nonfunctional CORE-2355 Improve updateSQL performance
__label__corrective [TACHYON-622] Add a class PlainSaslServer that implements the SaslServer interface -- Fixed the unit test failure and code style
__label__nonfunctional DataOutput2: small performance improvement
__label__corrective "Make recurseModel method tail-recursive  fix stack overflow error"
__label__corrective "CLOUDSTACK-7610 CLOUDSTACK-7611 CLOUDSTACK-7612: Fixed following bugs in AlertsSyslogAppender 1. Added sync alert. 2. Changed unrecognised alerts are send as unknown instead of null. 3. Added unit tests to cover some more scenarios."
__label__corrective "new UI - update port forwarding rule - fix a bug ""items is null""."
__label__corrective [ALLUXIO-1747] Fix bug in validateConf for master side storage alias
__label__corrective [UI] bug fix: vpn configuration does not show/update ipsec pre-shared key
__label__nonfunctional gh-51 Improved Random Number Generation Performance and add Exponential distribution support (sears)
__label__corrective Adding a potential fix for http://www.nabble.com/Master-slave-problem-tt14710987.html
__label__nonfunctional logging performance improvement and some string contact improvements
__label__nonfunctional minor refactor and performance improvement
__label__nonfunctional improve scrolling performance by registering events only once instead of once per entry
__label__corrective Build failure fixes after rebase.
__label__corrective java1.5 compatibility fix in handling of EOFException
__label__unknown HBASE-7821 Remove Duplicated code in CompactSelection
__label__nonfunctional HDFS-10376. Enhance setOwner testing. (John Zhuge via Yongjun Zhang)
__label__features Add FilterPath implementation that uses Jackson 2.6 streaming filtering feature
__label__features "Support Dropwizard applications without logback (#1900)

* Support Dropwizard applications without logback

This is a prototype for splitting the tight integration between Dropwizard and Logback.
This feature was requested several times (See #1637). The idea is too provide users the
ability to exclude Logback from Dropwizard and replace it with an external logging
solution  if they really want to. The main work of this PR is too initialize the Logback
infrastructure lazily  so the user can swap it to an external logging mechanism in the
config file.

* Mention in the docs how do exclude Logback

For people who use Spark which forces log4j2.

* Add #1900 to the release notes"
__label__corrective "CLOUDSTACK-6624: UI > create network offering > cloudStack does NOT support specifyIpRanges for isolated network - fix a bug that wrongly sends ""specifyIpRanges=true"" to createNetworkOffering API."
__label__features Return exit code 0 when no features are found
__label__corrective Tachyon-fuse: flush() bug fix
__label__corrective [ALLUXIO-2197] Fixed Checkstyle errors
__label__unknown Remove duplicated hexadecimal conversion code
__label__corrective Added single quotes -- fixes bug where generated client throws an 'Uncaught Reference Error'.
__label__corrective "[FIXED HUDSON-2221] Fixed in 1.250. This is actually unrelated to the veto  but your manually invoking this made the bug more explicit."
__label__nonfunctional Improve handling of MultimediaManager to make it a bit easier to make a 'basic' build
__label__corrective cloudstack 3.0 UI - instance page - attach ISO - fix a localization error.
__label__nonfunctional CORE-2985 MSSQL Snapshot performance improvements
__label__features "Adds ""MHT"" to the list of known extensions. Implementes feature #778"
__label__corrective "bug 9272: fixed the race condition bug when we tried to remove vm from SG after it was expunged (expunge interval was really small  60 sec)."
__label__nonfunctional Improved Map testing for boxed primitives
__label__corrective "Fixed the problem with offerings and templates.  These two items due to a previous patch all the way back in 2.1.x versions uses the removed column incorrectly.  No one fixed since then.  Hence  there's a bunch of findbyidincludingremoved calls in the cloudstack code around these two items."
__label__corrective [FIXED JENKINS-9637] Fixed the 404 when clicking the testResult on the Project Page when there is only an aggregated test result for a freestyle job. The name of the link is still wrong.
__label__unknown VPC: createLB rule - removed duplicated check for ip services when createLB rule
__label__nonfunctional Minor performance improvements
__label__corrective Cisco VNMC ASA1000v - UI - Infrastructure menu - physical network - network service providers - Cisco VNMC - fix a bug that detailView loads forever.
__label__corrective "problem 2698 fixed  specify null variable in DirectedAcyclicGraphNode.java precondition check"
__label__unknown fix duplicate dependency declaration
__label__nonfunctional HBASE-4054 Usability improvement to HTablePool
__label__nonfunctional Improved testing for clients connection setup
__label__nonfunctional "jdk target now 1.7  support for multiple marshallers during live testing  improved switching between mime types"
__label__nonfunctional improved sql parser performance.
__label__corrective bug 9495: Fix DomR logging error on boot
__label__corrective CLOUDSTACK-7078 CLONE - [VMWARE]System VM's are failed to start with Nexus enabled Zone Since introducing pool of session contexts we no more have a dedicated context for each VMware hypervisor host. Hence vsm credentials stored in session context cannot be retrieved always correctly. Fix is to register the vsm credentials after fetching context and the context gets recycled after use.
__label__features Add initial version of save actions feature
__label__features "Add options for indices.get feature

As described here https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-get-index.html?q=get%20index#_filtering_index_information"
__label__corrective [haskell-http-client] bug fixes; path & newtype generation issues (#6638)
__label__corrective [C#] Fixing a mono compilation error
__label__unknown "- reducing duplicate code  moving StreamsController#show to MessagesController#index using nested resources"
__label__features "Add functionality for labels + features in same SeqRecReader for SequenceRecordReaderDataSetIterator


Former-commit-id: 08f4d8c81010ab20e607ef76c7352d3a42b4e186"
__label__unknown refactored to eliminate duplication.
__label__nonfunctional Merge pull request #2216 from ahmetmircik/maintenance/evictionImprovement2
__label__features Various new features in event bus bridge to help mitigate against DoS attacks
__label__corrective bug 10629: fixed regression bug in listVms - security group name and display text weren't returned
__label__corrective bug 11079: fixed a bug with autoboxing
__label__unknown "JCLOUDS-31. remove malformed  duplicate  or unnecessary headers"
__label__corrective New SVNKit that fixes the HTTP Keep-Alive problem.
__label__nonfunctional Merge pull request #11184 from pveentjer/v3.9/fix/HttpCommunicator-further-ssl-testing-improvements
__label__corrective "Fix bug ALLUXIO-2328  fix javadoc on Format.java"
__label__nonfunctional Add RegisterSet.updateIfGreater to factorize code and improve performance
__label__features "Add support for customizing the rule file in ICU tokenizer

Lucene allows to create a ICUTokenizer with a special config argument
enabling the customization of the rule based iterator by providing
custom rules files.

This commit enable this feature. Users could provide a list of RBBI rule
files to ICU tokenizer.

closes #13146"
__label__features update create build introduce functionality behavior modify modification
__label__nonfunctional removed load check from recordstore.reset() and improved testing
__label__nonfunctional OPLA: improved performance with variable management (avoiding copy for most of the cases)
__label__corrective [TACHYON-947] Fix failed security integration test after merging master with PR #1464
__label__nonfunctional improve message counting performance
__label__corrective "Fixed although api calls are failing  event tab shows them as successful"
__label__corrective using the latest version of the bridge method injector that I think has fixed some bugs
__label__nonfunctional HADOOP-9805. Refactor RawLocalFileSystem#rename for improved testability. Contributed by Jean-Pierre Matsumoto.
__label__nonfunctional "Added performance metric for ConcurrentLongPriorityQueue  not much of a speed improvement"
__label__corrective a better fix for kernel upgrade disk space problems
__label__features "#272 LogStash????????? New Feature   polish"
__label__corrective bug 12994: fix IndexOutOfBoundsException problem in VMDK upload
__label__corrective bug 9888: CloudStack UI - Support multiple secondary stroage for each zone - fix a bug that clicking middle menu didn't populate right content to right panel.
__label__features Use the proper color to match the blue featured in all the Theme.Holo 9-patch PNGs from Honeycomb.
__label__unknown HBASE-17638 Remove duplicated initialization of CacheConfig in HRegionServer
__label__features Add filter auto refresh feature.
__label__features "Switch cert and peer validation to false by default

If any either of these two options are enabled  a HTTPs enabled Dropwizard
app will most likely fail to start with cryptic error messages. Since
Jetty has these options disabled by default  we should follow their lead
and disable these options as well.

Future work includes adding in additional certificate features as
Certificate Revocation List (CRL)   CRL Distribution Points Protocol
(CRLDP)  On-Line Certificate Status Protocol (OCSP)"
__label__features "Un-deprecate the ability to sort terms aggregation by ascending count.

The deprecation has been added in 2.4.3 but firstly it was wrongly applied to sorting by descending count and secondly
 the feature is still in 5.x and master so the discussion towards removing it is still ongoing.

Relates #17614"
__label__corrective new UI - corresponding UI change after bug 6955 is fixed.
__label__features additional implementation of forward to feature.
__label__nonfunctional HADOOP-10967. Improve DefaultCryptoExtension#generateEncryptedKey performance. (hitliuyi via tucu)
__label__features "Mappings: Reencode transformed result with same xcontent

When I originally wrote the transform feature I didn't think that the
XContentType of the reencoded source mattered.  It actually matters because
payloads for the completion suggester are stored and returned exactly
as encoded by this XContentType.

This revision changes the transform feature from always reencoding with smile
to always reencoding with the provided XContentType to support the completion
suggester.

Closes #8959"
__label__nonfunctional increase transfer penalty to where it improves performance
__label__nonfunctional "making the add method public to improve testability  but as a side effect  this makes this class mutable."
__label__corrective api: Fix NullPointerException for listProjects in ProjectJoinDaoImpl
__label__nonfunctional SQL: improved performance when BETWEEN is used. Thanks to Fabrizio Fortino for the tip
__label__nonfunctional WELD-614 performance improvements
__label__nonfunctional [BZ-982586] optimize compilation performance by parallelizing generated classes wiring and caching AlphaNodes hashing
__label__unknown fix extractDuplicates & added resource transformers from maven-shade-plugin
__label__nonfunctional improved parser performance.
__label__nonfunctional Improvements to Lucene Directory performance tests
__label__features Add styling to current features and add nicknames and priorities to pages
__label__nonfunctional HBASE-10344 Improve write performance by ignoring sync to hdfs when an asyncer's writes have been synced by other asyncer
__label__features "Just apply this feature for IE for now  but allow override"
__label__nonfunctional Cache lookup method to improve observer performance
__label__corrective [ALLUXIO-1909] Fix failing tests
__label__nonfunctional HIVE-1464 improve test query performance (Joydeep Sen Sarma via Ning Zhang)
__label__features add EXPERIMENTAL index-time field boosting feature.
__label__unknown Remove duplicated fields in hierarchy + update todo
__label__unknown hide horizontal line until we have a title to display
__label__nonfunctional SONAR-3537 Improve performances of the treemap filter
__label__corrective Fix failing integration tests
__label__corrective new UI - domain page - fix a bug that is caused by API refactor.
__label__nonfunctional Partial search query performance was improved.
__label__nonfunctional "further testing improvements  fixes  for DataInput source"
__label__perfective #101403760 Make experiment page use React anatomogram - Refactor `Anatomogram` to its own React component ; refactor `internal-atlas-index.js` to mirror the structure of `index.js` ; simplify the logic to build the heatmap
__label__perfective #131 Package Structure Refactoring
__label__perfective #143 Package Structure Refactoring
__label__perfective #2 Refactored structure of Argument
__label__perfective #204 refactored DB structure to deal with private and public autocompletion info
__label__perfective #26 refactoring package structure for requests and results
__label__perfective #3 Improved structure of tests
__label__perfective #8 updated the package structure and improved the usage of constants
__label__perfective "#935 - Refactor cache settings for structured content.   StructuredContent items should be cached in a DTO structure and not utilize standard hibernate query cache.   This is because the BLOB fields that are sometimes returned need to be parsed to correct image and other urls.    We want to cache the parsed result not the DB version.     Also  caching at the hibernate layer caused issues that were addressed as part of BroadleafCommerce/QA#367"
__label__perfective "#98 added accepting infrastructure for ZIP jobs  including validation of ZIP structure and extraction of properties"
__label__perfective #POULPE-6 1) Structure of component classes was improved 2) Merge branch
__label__perfective * Improved the whole structure and prepare for first release
__label__perfective "* Introducing basic Service/Data Transfer Object(DTO)/Data Access Object (DAO) shell classes for Loans.  More refactoring and unit tests are still needed  but this lays out some of the basic structure that we want to move towards."
__label__perfective "* refactored implementation and design of Sets and Relations. A RelationType is now a subclass of SetType and IRelation is an extended ISet. This makes it possible to factor out common code  and to make the client of the API oblivious to whether something is a relation. Also  I could now implement (type-safely) an implicit normalization of all sets of tuples to relations. This means that at run-time the implementation guarantees there are no sets of tuples  only relations. All and all another it also results in a reduction of code."
__label__perfective * Refactoring structure in to modules (mostly to speed up incremental builds)
__label__perfective "* reverted earlier design change that allow to use regular expressions to directly match source locations. Although handy  this introduces complications with function overloading that I would not want to write documentation about..."
__label__perfective * webapp structure refactoring
__label__perfective ** Refactored workspace material structure to support materials embedded
__label__perfective - DocearEvent structure refactored
__label__perfective - Introduced the Thunk structure for the intermediate representation.
__label__perfective - refactored and simplified library design a bit
__label__perfective - refactored dir structure to default maven layout
__label__perfective - Refactored directory structure to forfill standard maven conventions.
__label__perfective - Refactored image format inheritance structure in net.pms.formats
__label__perfective - Refactored overall project structure to separate platform from
__label__perfective - Refactored package structure to untangle inter packages references
__label__perfective - Refactored structure for property files - all MVC config now in karboom-mvc.xml
__label__perfective - Refactored Tasks design (still missing some functionality)
__label__perfective - Refactored to own package structure to avoid conflicting with released j2ssh builds.
__label__perfective - some structure improvements
__label__perfective 1) Refactored SIRI structure to more closely resemble existing
__label__perfective 1. Refactored some part of the code to give it a better structure & give it more modularity.
__label__perfective 1. Structure refactoring.
__label__perfective 139 design refactor
__label__perfective "A bunch of work to improve fault handling and SOAP version independence.  Still working on this a little  need to review tests a bit more  and at some point we really need to settle on a firmer design for version-independent fault handling."
__label__perfective A lot of refactoring the structure and code.
__label__perfective account repo design simplifications and password encoding improvements
__label__perfective add aspectj support and refactor core project structure so that Fitchy doesn't construct Context anymore. Add ContextBuilder.class for this.
__label__perfective "add clean  publish-local and javadoc to build. cleanup directory structure ."
__label__perfective add Converter support for structure and table parameters
__label__perfective Add folder structure cleanup
__label__perfective "add more action for socketservver  refactor messages to have concrete structure for the actions"
__label__perfective add operator factory + update tree structure + refactor
__label__perfective added a data structure for Offset values; + some code refactoring
__label__perfective added a simple batch to extract items + structure for webapp
__label__perfective Added an event structure and optimize some patterns
__label__perfective added AngleUtilTest to test AngleUtils (I believe we had this one before probably deleted in some of the project structure refactor or something like that)
__label__perfective "added design for oauth2 flows  replaced scopelist with claimlist as preparation for claim requests  idToken is added to request when in openid scope  openid requests with responeType = token are rejected  further oauth2 refactorings"
__label__perfective added first cut of layout and build process for new website with an improved structure using Jekyll
__label__perfective added folder structure of extracted sdk
__label__perfective Added fragments to calc screen and improved design about calc screen
__label__perfective Added full file structure merged with @HmmmQuestionMark's latest commit.
__label__perfective Added functionality to send files as e-mail attachments to  SendHtmlMailFunction. Moved mail functions to structr-ui and refactored package structure of built-in functions.
__label__perfective Added Hill Climbing local search optimization algorithm. Refactored structure of test packages to match core packages.
__label__perfective Added initial design for Duel and refactored existing controllers
__label__perfective "Added listContents full record and search results pages  for collections where hierarchy is not important.  Refactored searchResults.jsp into resultsPage.jsp to make the result section of the page more reusable.  Created a separate collectionBrowse starting page.  Displaying facet list on structure browse page"
__label__perfective Added more doco to the design notes detailing the refactors I've already started.
__label__perfective "Added some documentation to the code  mostly especially to CovariateCounterWalker but various comments added throughout. Also changed the HashMap data structure to accept an estimated initial capacity. This had a very modest improvement to the speed."
__label__perfective Added tests for usage job. Some refactoring to package structure for core jobs. (v1 TK-11257)
__label__perfective Added Trie data structure to store the landmarks and extract them
__label__perfective Added type and structure converters. Updated implementation of component
__label__perfective adding characteristics and factor values extraction to exp design limpopo parser
__label__perfective adding run extraction to exp design limpopo parser
__label__perfective adjust project structure and introduce access control
__label__perfective adjusted to meet component/container structure conventions and simplify code
__label__perfective "After design chat with Mimi  move ticket admin ui and code to a seperate (unused) widget and simplify ticket"
__label__perfective Aggregate structure browse converted and working.  Front page js converted to module.
__label__perfective AirportEnactment design refactory
__label__perfective "Ajax callback structure implemented and used for publishing items.  Indexing on publication status change  although its still a full reindex.  Added method for exclusive triple setting to managementclient.  Rearranged and restructured utils out to the common module"
__label__perfective "All of the old docs  converted into a flat structure and formatted"
__label__perfective "alter structure of database  improved view of registration  alter gui for creating a procedure"
__label__perfective "app structure improved  feature 59  done together with Martin"
__label__perfective applied enhanced design for query detail view
__label__perfective ARQ-2041 Refactored project structure to have an impl module to allow for ftests.
__label__perfective Article structure cleanup
__label__perfective Attempt to improve an inefficiency of the design - when the client comes back with the URI they want we shouldn't have to go through all resources again
__label__perfective BASE-19 refactoring directory structure (hoping Travis and Jenkins will like this)
__label__perfective Begin refactoring design for response-handling; add response processor contract (issue #9)
__label__perfective "big refactor  make reasonable log. make structure clear."
__label__perfective Big refactoring of package structure for plugins
__label__perfective big refactoring of URIS module to make its design conventions more uniform and less hacky
__label__perfective "BOBO-29 IDF. some queries don't have meaning IDF and do not support extractTerms method and cause UnsupportedOperationException. This is a bad design in lucene to throw UnsupportedOperationException by default. We catch the exception in creating the weight for search. When exception happens  the extractTerms is not supported  we set weight to null and leave it to the subreaders to create weight for search."
__label__perfective BroadleafCommerce/Menu#12 - Refactor the Category Site Map Generator to handle a category structure with no single top level nav
__label__perfective BroadleafCommerce/QA#2554 - Refactor to make use of the refactored bean structure for EntityManagers & TransactionManagers
__label__perfective CacheHash now creates all subdirs with new structure ORIGINAL|BRIEF_DOC|FULL_DOC/00/00/. Service Controller and DigitalObjectCacheImpl must still be refactored to take the new changes into account.
__label__perfective Can open structure! But code needs cleanup and probably design changes.
__label__perfective change package structure and several improved
__label__perfective Change structure to improve overall view
__label__perfective change the structure and refactor the translate method
__label__perfective change the structure of java classes; refactored the names of those classes
__label__perfective "Change to the http server code  to simplify the structure of the interaction with a web server and to make the information requests more intuitive."
__label__perfective changed folder structure further to simplify build
__label__perfective "Changed structure of process() back to its original no-parameter form and introduced a nice  logical return value in onFormSubmitted to determined whether to call delegateSubmit().  This is a better way to break this functionality up."
__label__perfective changed structure of the project to improve testing
__label__perfective Changed test package structure to match source and organized generators used by test classes
__label__perfective "Changed the data structure that it consumes less space than before (an performance improvement with caches have to be implemented  this implementation is very slow)"
__label__perfective Changed the return value of getUAFamily to a document to improve the structure of the Enonic page XML. Added temporary test timers to JS being sent to the client from the interceptor extension.
__label__perfective Changed ZipArchiveEntry to use more optimized data structure for
__label__perfective changes project structure and introduced apache buildr as buildtool
__label__perfective Class structure for converting StackMob classes to Java classes.
__label__perfective Clean and improvement Selenium for design folder
__label__perfective Clean up an itest a bit by mocking up the expected data structure rather than extracting it via the pipeline
__label__perfective Clean up experiment design page and CSS; add minor improvements to experiments table page
__label__perfective "Cleaned up references to old name structure from previous refactoring  got the app to loadup on glassfish in ubuntu."
__label__perfective Cleaned up the package structure and some other minor improvements.
__label__perfective cleaned up the redundant pom data and a bit of structure cleanup
__label__perfective Client logging structure is improved.
__label__perfective Code cleanup only.  No design change.
__label__perfective "Code formatting applied  package structure reorganized and some major refactorings."
__label__perfective code quality improvement. Particularly work on visibility modifiers and design for extension.
__label__perfective Code refactoring - class structure simplification.
__label__perfective Code structure improvements.
__label__perfective Complete project structure refactoring
__label__perfective Complete structure refactored and deleted unnecessary domain features
__label__perfective "Complete support for new OSM changeset-user data structure during loading. This is in preparation for two features  one for import performance enhancements  and another for applying OSM deltas."
__label__perfective content rating API design improved
__label__perfective content structure converters added
__label__perfective Continue refactor / start new design integration
__label__perfective continue refactoring of package structure and organized imports
__label__perfective Continued refactoring base package functions structure in preparation for more complete support of generics
__label__perfective Continued working with the codegen core parts. Improved the overall code structure including the generation of expressions. Also some work concerning statements has been made.
__label__perfective converting of structure improved
__label__perfective CORELIB-SOLR Extended MongoDB functionality and Refactored Corelib-SOLR structure - TODO Unit Tests and complete Proxy EDM Fields
__label__perfective CR-8052 / AME-8222 common improvements related to new design of PE / AME-8179 / renaming
__label__perfective Create bigbluebutton structure to begin refactoring server.
__label__perfective "Created a result object and metadata object structure for representing items in search results  refactoring publish button it be its own child class of AjaxCallbackButton"
__label__perfective Created IRepository in order to improve the Repository design further.
__label__perfective "Creating new main trunk that represents the reworked  Maven-based project directory structure (derived from branches/iccbl/maven-multimodule). We cannot maintain the existing trunk and merge in the maven-multimodule branch due to how it was created.  The svn project directory was created anew  with only its ""core"" subdirectory (module) having being branched from the main trunk; using the 2-URL merge method for merging it back to the trunk would lose the revision history of nearly all the files."
__label__perfective "CSPACE-323 changed directory structure of authentication service  refactored CoolectionSpaceClient to accommodate needs of AuthenticationServiceTest. added testng tests for authentication. authentication tests are enabled only if -Dcspace.server.secure=true property is used."
__label__perfective Data structure refactoring
__label__perfective DATACMNS-1143 - Improve design of AbstractAggregateRoot.
__label__perfective DB structure refactoring
__label__perfective deduction design refactored
__label__perfective "Delete old cruft  rearrange directory structure to better build the Chrome"
__label__perfective deleted old structures in trunk in order to copy there modularized structure from the branch. The merge command failed miserably.
__label__perfective "DNA-468 Simplified the design of the Lucene search indexes  which improves the performance signifantly (the TCK unit tests run approximately 10% or more faster). The performance improvement should be even higher when there's a lot of content and the queries have more criteria."
__label__perfective DNA-62 Sequence Java class files to extract the class structure with annotations
__label__perfective DOC-1125 improve structure of PLF 3.5 user guide
__label__perfective DOC-1149 Improve structure of Dev guide
__label__perfective domain structure enhancement
__label__perfective "file structure improved  no feature affected"
__label__perfective file structure refactor
__label__perfective Finished first overview design with temp converter
__label__perfective finished refactoring iteration on experiment design parsing/writing. Collapsed a class hierarchy that had become unrequired.
__label__perfective First Design refactoring to prepare 4.2
__label__perfective first push on the massive refactoring of Gremlin into Gremlin-Groovy and Gremlin-Scala. It is still noisy but the structure is there.
__label__perfective flattened directory structure and introduced common interface to invoke both tools
__label__perfective "Flipping the names of main interfaces  refactoring of tests  cloning the packages structure in the tests"
__label__perfective Folder structure cleanup
__label__perfective folder structure cleanups. later versions of Eclipse would not import
__label__perfective Folder structure refactor
__label__perfective folder structure refactoring
__label__perfective folder structure refactoring for example
__label__perfective Folder structure refactoring.
__label__perfective Form design cleanup
__label__perfective full labelling in structure extracting
__label__perfective Further refactoring of the steps code to used the module structure specified in the project guidelines
__label__perfective further structure cleanup and reorg. added shutdown hooks.
__label__perfective FXOLAT-193 OLAT-6427 prevent default title and description of eportfolio title and structure elements to be inline translated as this is not possible. Normal translation mode must be used for those keys.
__label__perfective General structure of refactored org.amanzi.neo.loader.ui plugin
__label__perfective geometric structure extractor test added
__label__perfective get GUI_DESIGNER_FORM_ARRAY from tree structure provider; Send to Favorites works with forms once again; cleanup
__label__perfective Going to move a couple things out of core to reduce dependencies in Tcat/MMC quickly. IDE is forcing me to check the directory structure in to refactor though.
__label__perfective Graph data structure modification + TSP improvement
__label__perfective GS-10428 Refactoring - use only one data structure to store removed space objects
__label__perfective HBASE-17732 Coprocessor Design Improvements
__label__perfective HBASE-18884 (addendum) Add more javadoc comment. Coprocessor Design Improvements follow up of HBASE-17732.
__label__perfective HBASE-18884 Coprocessor Design Improvements follow up of HBASE-17732
__label__perfective HBASE-18884 Coprocessor Design Improvements follow up of HBASE-17732; MINOR AMENDMENT adding README to design-doc dir
__label__perfective hbase-7241.  refGuide.  Perf/Schema design cleanup.
__label__perfective Helper class to adjust visibilities in structure refactorings
__label__perfective "HIVE-12934. Refactor llap module structure to allow for a usable client. (Siddharth Seth  reviewed by Sergey Shelukhin)"
__label__perfective HSEARCH-1499 Optimize structure for collection of coordinates in DistanceCollector
__label__perfective HTML Structure view improvements (WEB-353)
__label__perfective Huge improvement on the structure of the QUnit page parser tests.
__label__perfective "I am doing a massive refactoring  to make the structure a bit more understandable. Need to commit to continue this."
__label__perfective IDEA-83191 Refactor > Copy does not copy directory structure when performed over hierarchy under source root
__label__perfective "If the port in the servent structure is negative  convert to unsigned int"
__label__perfective Implemented digester design improvement suggested by James Carman. Added empty constructor and setDigester method for Rule and changed digester to call setDigester in addRule.
__label__perfective improve design of graph interfaces. extract common code from dijkstra
__label__perfective Improved code design of what I have so far. Extended the README and converted it to the markdown format.
__label__perfective Improved general code structure especially for CodeGenContextMap + code cleanup all around the plugin
__label__perfective Improved message handling. Minor text modifications and design improvements.
__label__perfective "Improved some pre-conditions also improved the design of the page viewProcess from ""way too sucky"" to ""almost way too sucky""."
__label__perfective "Improved the ""only show annotated peaks"" feature. Improved the way the PDB-Protein alignment is displayed. Minor GUI updates to the Protein Structure tab. Updated jsparklines to 0.5.14 and utilities to 3.1.23. Moved project to version 007.5.2."
__label__perfective "In AutoValueProcessor  restructure the code generation for hashCode() to be simpler and to be consistent with a similar structure that will need to be introduced for equals(Object) to allow special treatment for Float and Double. The generated code is fractionally less efficient for double and for nullable properties but I doubt if the difference would even be measurable."
__label__perfective "Index structure and indexing approach altered such that this now uses one step for each unique predication (as oppose to one step for each predication). This makes it easier to use log(global predication frequency) as a weighting metric  which has improved performance in our experiments to date."
__label__perfective "Initial commit  basic structure introduced."
__label__perfective "Initial design for refactoring the entity/event stores into a ""QfdStore"""
__label__perfective Initial refactor of the directory structure to a maven format
__label__perfective Initial refactoring of core package structure to clarify design and reduce design tangles
__label__perfective Initial refactoring to new design for app
__label__perfective Integrated PublishMethod for port jobs (upsert and replace methods supported) // Made corresponding  UI changes to PortJobTab //  Updated structure in preparation for merge with master
__label__perfective Interim commit to introduce some classes and structure to support the account service
__label__perfective Introduced package structure and general cleanup
__label__perfective IO - some serious refactoring to streamline design of Cursors and RandomAccesses
__label__perfective ISPN-1131 - refactored InvocationContext structure because of the following reason
__label__perfective ISPN-2689 New pom structure to have lucene-v3 and lucene-v4 merged into a single unit with the same original name
__label__perfective "Issue #2029  new exceptions design is introduced."
__label__perfective "Issue #2029  second part of new exceptions design is introduced."
__label__perfective "Issue #32 - Refactored the converters to be able to report back on their type and  optionally  extra information such as the date format structure for a Date. This check has been removed from BeanProperty where it obviously does not belong"
__label__perfective "issue 1240 - BTER currency pairs through meta data  refactored JSON structure as well."
__label__perfective java class dir structure cleanup
__label__perfective java packages structure cleanup
__label__perfective "Jira #1202/#1256 - More memory cleanup  cleaned up and consolidated structure opening code.  Frames now come up empty before busy dialog.  I think that's a better look - the user knows an app is coming up.  Also made for better code consolidation."
__label__perfective JPA package structure refactoring
__label__perfective JPA package structure refactoring and provider class renaming
__label__perfective KPME-2347 - spring modularity structure -- probably still some cleanup to do
__label__perfective KSENROLL-2513 Services Merge as hand modified patch file (new project structure after remodularization)
__label__perfective Large refactoring to clean up old code and starting to get a better structure in place.
__label__perfective little refactoring + applying new design to the matrix classes(same as for the vector classes before)
__label__perfective LOG4J2-1272 (no-GC) Improve LoggerConfig's data structure for AppenderControl objects to avoid allocating temporary objects during traversal.
__label__perfective LOG4J2-1297 various content and structure improvements
__label__perfective LOG4J2-1318 refactor LoggerContext implementations to use new LoggerRegistry data structure to avoid allocating temp objects. (No functional changes.)
__label__perfective logical structure extraction refactored
__label__perfective logical structure extractor added
__label__perfective logical structure extractor test restored
__label__perfective "made proper use of generics  improved internal structure and added"
__label__perfective made Sample an immutable data structure and its positive features are now an array of int. It improves performance
__label__perfective "Major (1) cleanup  (2) database structure correction and extension and (3) performance improvement."
__label__perfective "Major improvements of the Protein Structure tab  both function and GUI. Added peptide start and end indexes to the overview and protein structure peptide tables. Moved project to version 007.5."
__label__perfective Major project structure refactoring and removal of irrelevant classes.
__label__perfective Major project structure refactoring.
__label__perfective major refactoring after a spike to back out some bad design for multiple replacements. the replacer context took on too much and so did token replacer. unfortunately the unit tests became largely obsolete and need rewriting.
__label__perfective major refactoring to pull away from svn based maven structure to more
__label__perfective Major refactoring. Basic structure done
__label__perfective "major rehaul of code. introduced strategy design pattern  make this more"
__label__perfective Major structure refactoring.
__label__perfective "Make finding of paths to multiple leaf projects more efficient by doing only one traversal  improve error handling on version parsing  and improve versatility of the structure printer along with a new deptree-style relationship printer that includes artifact/scope information in the printed tree."
__label__perfective making inline download links to work on experiment design page
__label__perfective "mapreduce-spring integration  improved structure and tests"
__label__perfective methods to convert between ProofProcess tree structure and a Scala Graph
__label__perfective Michaels refactoring to better structure controller and manager api
__label__perfective "minor changes to Property structure and additions to Utils  refactoring of code in CompositeUtil and enhancements to 'wire' phase logic (in progress)"
__label__perfective minor design improvement in the display close() hierarchy. there is much more to do.
__label__perfective minor design improvements
__label__perfective Minor design improvements.
__label__perfective minor doc structure improvements
__label__perfective Minor improvements. Structure changes. TODO update. Improved the
__label__perfective "Minor modifications  design and some code review too with cleanup"
__label__perfective Minor project names and project structure refactoring
__label__perfective Minor refactor of Article archetype to reflect new common directory structure for JSP and static assets
__label__perfective "minor refactor removing the dead cruft and moving classes into an easier to follow package structure with builders  processors and rules separated"
__label__perfective minor refactoring of unit tests; adopt test structure to src structure
__label__perfective Minor refactoring to get the structure of project versus namespace better.
__label__perfective minor refactoring to make monad structure more obvious
__label__perfective Minor refactorings at the structure handlers and handling methods
__label__perfective Minor unit test package structure refactoring and wrote unit tests for
__label__perfective missing files from structure refactoring
__label__perfective MODE-266 Sequence Java class files to extract the class structure with annotations
__label__perfective "MODE-391 Introduced a new ReferenceValue specialization of DynamicOperand that works similarly to PropertyValue  except that the property name is optional (as is the selector name  if there is only one selector). Updated the query planner  optimizer  and processor  as well as the JCR-SQL2 parser.  I updated the Lucene indexing design to add a new field for tracking the reference values on all a node's reference properties (the individual reference properties are tracked just as regular properties)  and then updated the LuceneSearchEngine to create an appropriate query for a constraint that uses a ReferenceValue dynamic operand."
__label__perfective Modifed pom.xml and added an assembly descriptor (maven-assembly uses it to describe how to organize a package). The current structure of the distribution package mimics that of the Hadoop distribution. orb-tracker.sh still needs to be modified to work with the new distribution structure. A wiki page on this functionality of Maven will be written soon.
__label__perfective more cleanup on partition lookup tree structure ...
__label__perfective more code structure refactoring
__label__perfective more icons and design improvements
__label__perfective More refactorings to clean up the code structure and make it easier to understand/use the API.
__label__perfective Moved all of the files to a new package structure to facilitate further refactoring.
__label__perfective Moved binary search operations to TextUtil. Optimized structure handling in MarkupEventProcessor.
__label__perfective "moved converter to common  note package structure is still the same;"
__label__perfective "Moved the show parent link to outside of the main structure browse view panel  added an icon.  Restyled path below folder name in result list.  Sort icons converted to a sprite."
__label__perfective Much improved XML Structure toString
__label__perfective MULE-6578 - Simplify MessageSource creation - Applying new design to http transport
__label__perfective naming improvements since design review
__label__perfective Nav structure cleanup for website.
__label__perfective navigation structure refactoring
__label__perfective new basis structure Builder refactoring
__label__perfective new class structure introduced
__label__perfective New design and improved load
__label__perfective New Icons and folder structure introduced
__label__perfective New NumericType structure introduced
__label__perfective New optimized structure of the getChildGroupsRecursiveResultFiltered
__label__perfective new seed screen design improved
__label__perfective new structure - separate modules for each converter
__label__perfective NewActionActivity design refactoring
__label__perfective Non-sprint task - Refactored maven structure for api example projects - Part 1
__label__perfective NOS-554 Refactor the current FastLocalCacheProvider with new design and partyline
__label__perfective OAK-4648 - Improve documentation about structure of TAR files
__label__perfective Object design cleanup
__label__perfective OFC-1379 - Improve sampling design import tool performance
__label__perfective Opaque data structure MethodInvocation introduced to make classes more
__label__perfective open dialog simplification. data import improvement. structure improvement. calculation improvement. GUI development.
__label__perfective "OPENAM-4644 OPENAM-4614 CR-4762 Complete refactoring of the logger  in order to correct a log rotation issue. The design is different also add some test units."
__label__perfective Package structure cleanup
__label__perfective Package structure improved.
__label__perfective Package structure introduced
__label__perfective package structure refactored
__label__perfective package structure refactored so one could think it is an addon
__label__perfective Package structure refactoring
__label__perfective Package Structure Refactoring & Update Artifact Id
__label__perfective "Package structure refactoring  CDI Events PoC"
__label__perfective Package structure refactoring.
__label__perfective packages rearranged to support module structure better
__label__perfective packages structure refactoring
__label__perfective Packages structure refactoring + core infrastructure classes separation
__label__perfective packge structure refactor
__label__perfective Page design improved. Login page created.
__label__perfective Partial in-memory data structure refactoring.
__label__perfective Plan/ResourceAllocation data structure enhancements required to support recurring reservations in ReservationSystem.
__label__perfective PLXUTILS-103 refactored DirectoryScanner to allow custom directory structure traversal
__label__perfective preparation for storing unfinished work when creating the new dig. obj. (tree structure of objects); refactoring (IsSerializable -> Serializable)
__label__perfective preparations for the improved project structure (branches should be global)
__label__perfective Presets - use flate table structure to improve value retrieval performance
__label__perfective Product structure enhancements
__label__perfective project structure cleanup
__label__perfective Project Structure dialog. Some forms refactored.
__label__perfective Project structure is partially refactored (not completed)
__label__perfective Project structure management ( project wizard improvements  )
__label__perfective Project structure management III ( improvements  )
__label__perfective project structure refactor with maven build files
__label__perfective Project structure refactored.
__label__perfective Project structure refactoring
__label__perfective Project structure refactoring. Created separate converters directory for date-time
__label__perfective Project structure refactorings.
__label__perfective project structure settings extracted
__label__perfective Project structure was refactored
__label__perfective Projects structure refactoring
__label__perfective protect against SOE with incorrect action group structure (RUBY-6519); cleanup
__label__perfective Provided a refactored folder structure for faces part (with templates
__label__perfective "put in all commands there are  started canarymod implementation  added structure generation  enhanced cwalls and cceiling/cfloor"
__label__perfective put in first batch of devoxx 2010 data for spring/groovyandgrails related sessions; improved design of join row mapper and removed timezone hardcoding
__label__perfective Rather than blindly remove hydrogens we now only remove hydrogens we can accurately represent as implicit. Previously with molecular hydrogen an empty structure was returned - molecular hydrogen is now preserved. This makes more sense as we can then convert to/from explicit hydrogen without losing atoms - an empty structure definitely doesn’t represent molecular hydrogen and so ‘add explicit hydrogens’ would not put back in the correct number of atoms.
__label__perfective README structure improved
__label__perfective readSection - extract arbitrary structure member data
__label__perfective Redesigned the structure of the core package. Introduced an indermediate level of abstraction via OTOnlineResource<T extends OTOnlineResource>. Method loadFromRemote() implemented in Task and Algorithm. Corresponding tests were updated.
__label__perfective refactor of RDF/XML parser to simplify its structure - ongoing
__label__perfective "refactor package structure a bit  some validation changes  remove some unused classes. this is just the first step in refactoring the CE ui."
__label__perfective "Refactored all project  improved the design and finish main function"
__label__perfective refactored DynamicEntityDaoImpl for better structure and some efficiency improvements
__label__perfective Refactored overall code structure + improved Journal batch implementation.
__label__perfective Refactored package structure (if I can call it that). Some more refactoring here and there.
__label__perfective Refactored package structure to improve coupling.
__label__perfective refactored to better structure the model extraction and reduce
__label__perfective Refactoring and Sight development. Integration of the Octree structure in visualization package. Refactoring and improvements of the Octree. It is now suitable for very large size in space.
__label__perfective "Refactoring of analyzer  created structure to resolve Cases + improvement of GUI"
__label__perfective "Refactoring of poms structure (split dependencies  cleanup...)"
__label__perfective "Refactoring of some of the base level class discovery code. The moves things to a more logical location  improves the reliability of the implementation and simplifies the code structure a bit."
__label__perfective refactoring of TsvReaders code structure and cleanup
__label__perfective Refactoring the design of MaryInterface in preparation for extracting an actual interface. More to come.
__label__perfective refactoring to introduce product structure objects
__label__perfective refactoring(structure) Refactor the structure of the app
__label__perfective "Refactoring  2D structure cleanup & colormap cleanup"
__label__perfective "Refactoring  cleanup  removed TCPC  MultiColTable (extends JPanel)  etc  revised class structure further."
__label__perfective Refs #100707 Convert from ccnr_handle * to void * in SyncActionData structure corresponding to SyncBase change
__label__perfective Refs #100707 Convert from ccnr_handle * to void * in SyncBase structure for sync library usage.
__label__perfective Refs #100785 Improve pointlessly abbreviated structure field names
__label__perfective refs #15 - user identification design concept introduced
__label__perfective Regenerate and refactor package structure of Gratex services
__label__perfective Remove <module>. Structure of the project should be refactored to have the possibility to generate a WAR or a BUNDLE using a profile
__label__perfective "Remove geronimombean dependencies from clustering module by commenting them out  since the design needs some refactoring to work with gbeans."
__label__perfective Remove optimize after each experiment design update
__label__perfective removed - structure refactored to simplify
__label__perfective "removed groupid from pom.xml  refactored package structure accordingly"
__label__perfective "removed sketches of previous parser versions  and started building on top of the CharacterMatcher interface to create an improved design for PullParser2"
__label__perfective Removed Spring injection for MongoDB - turned out to be shit. Refactored class names to better reflect the new structure with Function Library and DAO classes added. Cleaned up various parts of the code.
__label__perfective "Renamed ""Blocks"" into ""Chains"" in the Protein Structure tab  and added code for extracting the amino acid sequence from the different chains  although the code is not yet used. Updated utilities to 3.1.14."
__label__perfective "renamed PlayerInformationComponent to PlayerComponents and extracted data to external structure named PlayerData (which is game mode dependent)  added bomb count to the button"
__label__perfective "Reorganise project files  directory structure and refactor core tests"
__label__perfective Reorganize package structure and introduce maven.
__label__perfective "resolving Isabelle proof structure into a graph  then converting it to ProofElem;"
__label__perfective "Revert ""changed structure of the project to improve testing"""
__label__perfective "Revert ""Plan/ResourceAllocation data structure enhancements required to support recurring reservations in ReservationSystem."""
__label__perfective revert the structure refactor commit
__label__perfective Reviewed CppRestrictionHelper and refactored code structure of CppTypeHelper.
__label__perfective "rework polling for folder tree structure changes  restrict folder context menu for user's root folder  code quality improvements"
__label__perfective Reworked transaction package structure and refactored to extract generic compensating transaction functionality.
__label__perfective RF# Improved product structure tree
__label__perfective "right data arriving on gene page  needs refactoring for easier data structure for table"
__label__perfective "saved the urn design config before merge the trial  because of"
__label__perfective SC#QCADOOCLS-5409 - Introduced functionality to generate factory structure on production line details view
__label__perfective Search page design and functionality improved.
__label__perfective security.md file has design doc merged in; is linked to from the index
__label__perfective Service structure refactoring
__label__perfective Simple improvements to overall design of osgimonitor.manage api and impl
__label__perfective simplified cache usage (no waterfall) and refactored structure and nomenclature
__label__perfective Simplified the design of Refactorings class.
__label__perfective "Small API change that affects a ton of classes. Introduced a RhsFunctionContext interface that is passed to RHS functions rather than just the SymbolFactory. Thought about doing this initially  but wasn't sure it was necessary. Well  it's necessary to implement deep-copy (SoarTech crutch) or any RHS function that creates structure rather than just returning a value. Will implement deep-copy next..."
__label__perfective Small design and coding improvements.
__label__perfective Small Java project structure improvements.
__label__perfective Some design improvement. See ticket #106
__label__perfective some design improvements
__label__perfective Some design improvements on the MapTTLStaturationTest
__label__perfective Some design refactoring and code cleanup.
__label__perfective Some refactoring of the packet structure and especially moved getUniqueName down to the InboundPullAdapter interface and therfore delted it everywhere where it was not needed since the Quartzscheduler was the only component really needing and using it
__label__perfective Some refactoring on the structure of the widget formmodel.
__label__perfective "Some renaming  cleanup  and structure changes."
__label__perfective some slight design improvements
__label__perfective source structure cleanup
__label__perfective STANBOL-227 Refactored package structure to org.apache.stanbol.commons.jsonld
__label__perfective "Started moving to the type system. Design is really ugly  going to refactor it"
__label__perfective Started refactoring base package functions structure in preparation for more complete support of generics
__label__perfective Starting to improve the structure of the tutorial modules.
__label__perfective "statsproviders update - added resourceStatsProvider  changed whole structure (based on Jennifers comments); needs to be tested and merged into 1.1.4-ea afterwards"
__label__perfective "Stopped using Design mode in netbeans  removed Single Application Framework  converted to jFrame "
__label__perfective SVM-based logical structure extractor test and model files added
__label__perfective "switch to testNG  improve error handling  change package structure and group id"
__label__perfective SYNCBIB-204 improved project structure (WIP)
__label__perfective Tags structure refactored
__label__perfective "Take advantage of the new library resource directory structure to simplify POM and add an ""onlyLibs"" profile."
__label__perfective "Temporary refactorization of project structure due to keep compatibility for ""spring/ftl"" with ""struts/jsp""."
__label__perfective Test design layout improvements
__label__perfective test project structure refactoring
__label__perfective "The libs have been removed from the repository to avoid increasing its size (a README file has been added with instructions on how to obtain the necessary JDT libs). JDX now uses a smarter structure to store source code (i.e.  it is no more duplicated inside types and methods - instead  they recover their source code from the compilation unit's source code). This makes the DependencyReport much more lightweight. Type equal's method now checks for their parent compilation unit. Only a single source directory is now alloed (simplifies model). Method have a new attribute that holds its javadoc. Other smaller changes here and there (but no changes to the dependency extraction itself)"
__label__perfective "The radio-TV ingester is now as complete as it can be at the current time. There are some outstanding issues due to lack of information or design decisions. Also  the code could use some cleaning and refactoring  however that is not important right now."
__label__perfective "this class actually serves a purpose  which is to introduce a tree structure induced by the getChildren() method."
__label__perfective This is a (hopefully) no-functional-changes refactor of the existing JS AST code to enable the creation of a JsModVisitor and implement JS AST mods.  The design has been copied almost verbatim from the new Java AST JVisitor design.
__label__perfective This is a project structure cleanup and update.
__label__perfective This new classes represent the improved data structure used in the synchcall package.
__label__perfective This patch improves data structure of GraphJobMessage.
__label__perfective Ticket 3153 - Introduced array design accession synonyms - to represent duplicate AE array design accessions corresponding to the same array design; this will allow for loading into Atlas experiments using those synonym array design acccessions
__label__perfective Ticket 3153 - Introduced array design accession synonyms - to represent duplicate AE array design accessions corresponding to the same array design; this will allow for loading into Atlas experiments using those synonym array design acccessions - remaining changes
__label__perfective tool work flow refactored up to and including capture to METS structure map.
__label__perfective tr(Structure) Refactor connector structure (#3)
__label__perfective "tuple/cell classes made more accurate for design model. code uses guava predicates and filtering for cell extraction. dbreader/writer design more abstract and flexible  but more required from concrete classes. DbTransformer and CellTransformer approach will be better more flexible."
__label__perfective "Tweaked wording/spacing of localized strings according to ""Update 0.6 spec"" thread on Design list. Added inline style for correct font face and size."
__label__perfective "Unifying of data source design by Antonio and me  extraction of non-velocity data sources into own projects  BUT test runner currently broken"
__label__perfective Update context factory to accept refactored design (breaks build)
__label__perfective Update directory structure in preparation for big merge with jerboa
__label__perfective "update feature #3145  Improve code and improve design thanks to Aurore Allibe HTML model"
__label__perfective Update request executors to conform to the refactored design (breaks build) (issue #8)
__label__perfective Update validators to conform with refactored design (fails test-suite)
__label__perfective Updated design of backup view & code enhancement.
__label__perfective Updated federator-deb configuration according to optimized shaded JAR structure #294
__label__perfective Updated iwsn-gateway-deb configuration according to optimized shaded JAR structure #294
__label__perfective Updated iwsn-portal-deb configuration according to optimized shaded JAR structure #294
__label__perfective Updated package structure in core part and made IDE part adopt to core refactoring in the previous commits
__label__perfective Updated project structure to be inline with Maven standards
__label__perfective Updated Quadtree data structure with performance improvements submitted by Graham Seed.  Removed sqrt distance calculation from the get method.  Also updated code to use newer for loops for Java 5.
__label__perfective "Updated the person using observer pattern for wall updates. This allows the Person entitiy to subscribe for updates from other Persons and removes the need dynamic generation of the wall. This design should should improve the efficiency of ""wall"" operation."
__label__perfective Updated TODO. Design improvement.
__label__perfective Updates to the Biojava structure writer based on refactoring to MMTF-java
__label__perfective Updates to the mmtf structure decoder due to upstream refactoring in the mmtf-java project.
__label__perfective Upgrade to Achilles 2.0.3. Simplify lines design using clustered entities.
__label__perfective user interface improvements for structure alignment display
__label__perfective Using concurrent data structure for improved concurrency
__label__perfective various improvements to the structure alignment algorithms.
__label__perfective Various layout and design improvements
__label__perfective vcms refactoring - preparing structure corresponding to new git repo
__label__perfective webapp design and css refactoring.
__label__perfective webapp modal dialog alerts refactoring and document creation design changes.
__label__perfective "With help of Arnold Lankamp  improved design of sets and relations once more  such that the implementation of sets do not have to know about the implementation of relations anymore. The equivalence between sets of tuples and relations is now implemented in all implementation of the IValueFactory."
__label__perfective World objects design + cleanup
__label__perfective XLCLOUD-615 Design CRUD API for Applications merge
__label__perfective YARN-2768 Improved Yarn Registry service record structure (stevel)
__label__perfective YARN-5328. Plan/ResourceAllocation data structure enhancements required to support recurring reservations in ReservationSystem.
__label__perfective ~ Refactoring to imply the design that the tailed reader's source could be anything other than file's
