重設配額政策部署錯誤疑難排解

查看 Apigee Edge 說明文件。
前往 Apigee X說明文件
資訊

InvalidCount

錯誤訊息

透過 Edge UI 或 Edge Management API 部署 API Proxy 會失敗,並顯示以下錯誤訊息:

Error Saving Revision revision_number
Invalid count value interval for identifier identifier_name in policy_name.

錯誤訊息示例

Error Saving Revision 1
Invalid count value 10.0 for identifier identifierName in Reset_Quota_Demo.

螢幕截圖範例

原因

如果在重設配額政策的 <Allow> 元素中指定的計數值 並非整數,API Proxy 的部署作業就會失敗。

舉例來說,如果在 <Allow> 元素中指定的配額間隔為 10.0, 那麼 API Proxy 的部署作業就會失敗

診斷

  1. 找出發生錯誤和無效的重設配額政策 允許計數。你可以在錯誤訊息中找到這項資訊。例如: 下列錯誤中,政策名稱為 Reset_Quota_Demo 且允許無效 數量為 10.0

    Error Saving Revision 1
    Invalid count value 10.0 for identifier identifierName in Reset_Quota_Demo.
    
  2. 確認與失敗政策中指定的允許數量值相符 並顯示錯誤訊息中的值 (上述步驟 1)。舉例來說, 下列政策會將允許計數的值指定為 10.0,且與 錯誤訊息:

    <ResetQuota async="false" continueOnError="false" enabled="true" name="Reset_Quota_Demo">
        <DisplayName>Reset_Quota_Demo</DisplayName>
        <Properties/>
        <Quota>
            <Identifier name="identifierName" ref="request.header.identifier">
                <Allow>10.0</Allow>
            </Identifier>
        </Quota>
    </ResetQuota>
    

    在上述的「重設配額政策」範例中,允許計數的值為 10.0,不是整數。因此,API Proxy 部署作業失敗 錯誤訊息:

    Invalid count value 10.0 for identifier identifierName in Reset_Quota_Demo.
    

解析度

確認重設配額政策的 <Allow> 元素中指定的允許計數值為整數。如要修正上述 ResetQuota 政策範例,您可以將 元素的值修改為 10

<ResetQuota async="false" continueOnError="false" enabled="true" name="Reset_Quota_Demo">
    <DisplayName>Reset_Quota_Demo</DisplayName>
    <Properties/>
    <Quota>
        <Identifier name="identifierName" ref="request.header.identifier">
            <Allow>10</Allow>
        </Identifier>
    </Quota>
</ResetQuota>