You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by ak...@apache.org on 2018/04/09 13:59:39 UTC

ignite git commit: IGNITE-8155 Web Console: Fixed number pattern warning in browser console.

Repository: ignite
Updated Branches:
  refs/heads/master 5b8d43dd7 -> 5d8f5709e


IGNITE-8155 Web Console: Fixed number pattern warning in browser console.


Project: http://git-wip-us.apache.org/repos/asf/ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/5d8f5709
Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/5d8f5709
Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/5d8f5709

Branch: refs/heads/master
Commit: 5d8f5709ef059a394302f33e0edf41ab9b46d9a3
Parents: 5b8d43d
Author: Ilya Borisov <kl...@gmail.com>
Authored: Mon Apr 9 20:59:32 2018 +0700
Committer: Alexey Kuznetsov <ak...@apache.org>
Committed: Mon Apr 9 20:59:32 2018 +0700

----------------------------------------------------------------------
 .../app/modules/states/configuration/clusters/communication.pug    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/5d8f5709/modules/web-console/frontend/app/modules/states/configuration/clusters/communication.pug
----------------------------------------------------------------------
diff --git a/modules/web-console/frontend/app/modules/states/configuration/clusters/communication.pug b/modules/web-console/frontend/app/modules/states/configuration/clusters/communication.pug
index bd8971a..8b43521 100644
--- a/modules/web-console/frontend/app/modules/states/configuration/clusters/communication.pug
+++ b/modules/web-console/frontend/app/modules/states/configuration/clusters/communication.pug
@@ -94,6 +94,7 @@ panel-collapsible(ng-form=form on-open=`ui.loadPanel('${form}')`)
                     tip: 'Message queue limit for incoming and outgoing messages'
                 })
             .pc-form-grid-col-30
+                //- allowInvalid: true prevents from infinite digest loop when old value was 0 and becomes less than allowed minimum
                 +sane-ignite-form-field-number({
                     label: 'Unacknowledged messages:',
                     model: `${communication}.unacknowledgedMessagesBufferSize`,
@@ -111,7 +112,6 @@ panel-collapsible(ng-form=form on-open=`ui.loadPanel('${form}')`)
                         <li>At least message queue limit * {{ ::$ctrl.Clusters.unacknowledgedMessagesBufferSize.validRatio }}</li>
                     </ul>`
                 })(
-                    //- allowInvalid: true prevents from infinite digest loop when old value was 0 and becomes less than allowed minimum
                     ng-model-options=`{
                         allowInvalid: true
                     }`