Button clicked twice does not appear to function

I have a SAIL form that displays CDT data which ultimate came from a web service.  There is a button on the interface to refresh the data.  Clicking this button invokes an expression rule which calls an integration to retrieve the latest data to return to the interface.  The data in the external system changes based on actions taken by users that also use the SAIL form.  Users know when they need to click the refresh button to see the newest data.

When the form is opened (it opens from a workflow task), the data is displayed.  When the refresh button is clicked, the data is updated and the new data is displayed.  So far, so good.

However, when the button is clicked a second time while the task remains open, the data is not refreshed and the interface shows the old data.  When clicked a third time, same result (no refresh).  Fourth, same result.  If I close the task, re-open it, and click the button, the data once again is refreshed.... but only once.  Further clicks do not refresh the data.

Any thoughts on why the button will only refresh the data once and subsequent clicks do nothing?

Here's kinda what the SAIL looks like for the button.

    a!buttonArrayLayout(
      buttons: {
        a!buttonWidget(
          label: "Resync Data",
          submit: false,
          saveInto: {
            a!save(
              target: local!refreshResult,
              value: rule!PE_RefreshData(
                identifier: ri!dataIdentifier,
                firstArray: ri!array1
                secondArray: ri!array2
              )
            ),
            a!save(
              target: ri!array1
              value: local!refreshResult.dataArray1
            ),
            a!save(
              target: ri!array2,
              value: local!refreshResult.dataArray2
            )
          }
        )
     }
  )

  Discussion posts and replies are publicly visible